Home
last modified time | relevance | path

Searched refs:compose (Results 1 – 25 of 131) sorted by relevance

123456

/external/guava/guava-tests/test/com/google/common/base/
DFunctionsTest.java218 Functions.compose(integerToSpanish, japaneseToInteger); in testComposition()
236 Functions.compose(integerToSpanish, japaneseToInteger)) in testComposition()
240 Functions.compose(japaneseToInteger, integerToSpanish)) in testComposition()
261 Functions.compose(integerToSpanish, japaneseToInteger); in testComposition_includeReserializabled()
266 Functions.compose(integerToSpanish, japaneseToInteger), in testComposition_includeReserializabled()
271 Functions.compose(japaneseToInteger, integerToSpanish)) in testComposition_includeReserializabled()
283 Functions.compose(numberToSpanish, japaneseToInteger); in testCompositionWildcard()
300 Function<Float, Boolean> c1 = Functions.compose(Functions.compose(h, g), f); in testComposeOfFunctionsIsAssociative()
301 Function<Float, Boolean> c2 = Functions.compose(h, Functions.compose(g, f)); in testComposeOfFunctionsIsAssociative()
320 Predicate<Float> p1 = Predicates.compose(Predicates.compose(h, g), f); in testComposeOfPredicateAndFunctionIsAssociative()
[all …]
/external/chromium_org/third_party/skia/gm/
Dtestimagefilters.cpp56 SkImageFilter* compose = SkComposeImageFilter::Create(outer, inner); in make6() local
57 SkAutoUnref aur2(compose); in make6()
65 return SkMergeImageFilter::Create(compose, blue); in make6()
73 SkImageFilter* compose = SkComposeImageFilter::Create(outer, inner); in make7() local
74 SkAutoUnref aur2(compose); in make7()
82 return SkMergeImageFilter::Create(compose, blue); in make7()
Dpatheffects.cpp21 SkPathEffect* compose; in compose_pe() local
23 compose = SkComposePathEffect::Create(pe, corner); in compose_pe()
26 compose = corner; in compose_pe()
28 paint->setPathEffect(compose)->unref(); in compose_pe()
/external/skia/gm/
Dtestimagefilters.cpp56 SkImageFilter* compose = SkComposeImageFilter::Create(outer, inner); in make6() local
57 SkAutoUnref aur2(compose); in make6()
65 return SkMergeImageFilter::Create(compose, blue); in make6()
73 SkImageFilter* compose = SkComposeImageFilter::Create(outer, inner); in make7() local
74 SkAutoUnref aur2(compose); in make7()
82 return SkMergeImageFilter::Create(compose, blue); in make7()
Dpatheffects.cpp21 SkPathEffect* compose; in compose_pe() local
23 compose = SkComposePathEffect::Create(pe, corner); in compose_pe()
26 compose = corner; in compose_pe()
28 paint->setPathEffect(compose)->unref(); in compose_pe()
/external/chromium_org/v8/test/promises-aplus/lib/
Dassert.js30 function compose(message1, message2) { function
35 var e = Error(compose('FAIL', message) +
43 throw Error(compose('FAIL', + message) + ': value = ' + value);
/external/harfbuzz_ng/src/
Dhb-unicode-private.hh50 HB_UNICODE_FUNC_IMPLEMENT (compose) \
77 inline hb_bool_t compose (hb_codepoint_t a, hb_codepoint_t b, in compose() function
82 return func.compose (this, a, b, ab, user_data.compose); in compose()
Dhb-ot-shape-normalize.cc100 return c->unicode->compose (a, b, ab); in compose_unicode()
299 plan->shaper->compose ? plan->shaper->compose : compose_unicode in _hb_ot_shape_normalize()
384 c.compose (&c, in _hb_ot_shape_normalize()
/external/chromium_org/third_party/harfbuzz-ng/src/
Dhb-unicode-private.hh50 HB_UNICODE_FUNC_IMPLEMENT (compose) \
77 inline hb_bool_t compose (hb_codepoint_t a, hb_codepoint_t b, in compose() function
82 return func.compose (this, a, b, ab, user_data.compose); in compose()
Dhb-ot-shape-normalize.cc100 return c->unicode->compose (a, b, ab); in compose_unicode()
301 plan->shaper->compose ? plan->shaper->compose : compose_unicode in _hb_ot_shape_normalize()
386 c.compose (&c, in _hb_ot_shape_normalize()
/external/chromium_org/third_party/gtk+/
DREADME.chromium10 gtk/gtkimcontextsimpleseqs.h is generated by gtk/compose-parse.py.
11 gtk/compose-parse.py is modified in some parts to generate
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemWhen.java90 public void compose(StylesheetRoot sroot) in compose() method in ElemWhen
93 super.compose(sroot); in compose()
DElemParam.java91 public void compose(StylesheetRoot sroot) throws TransformerException in compose() method in ElemParam
93 super.compose(sroot); in compose()
DKeyDeclaration.java177 public void compose(StylesheetRoot sroot) in compose() method in KeyDeclaration
180 super.compose(sroot); in compose()
DElemIf.java84 public void compose(StylesheetRoot sroot) throws TransformerException in compose() method in ElemIf
87 super.compose(sroot); in compose()
DElemCallTemplate.java113 public void compose(StylesheetRoot sroot) throws TransformerException in compose() method in ElemCallTemplate
115 super.compose(sroot); in compose()
123 ewp.compose(sroot); in compose()
DElemSort.java332 public void compose(StylesheetRoot sroot) in compose() method in ElemSort
335 super.compose(sroot); in compose()
DElemExsltFunction.java124 public void compose(StylesheetRoot sroot) throws TransformerException in compose() method in ElemExsltFunction
126 super.compose(sroot); in compose()
DElemPI.java83 public void compose(StylesheetRoot sroot) throws TransformerException in compose() method in ElemPI
85 super.compose(sroot); in compose()
DElemTemplate.java345 public void compose(StylesheetRoot sroot) throws TransformerException in compose() method in ElemTemplate
347 super.compose(sroot); in compose()
DElemValueOf.java175 public void compose(StylesheetRoot sroot) throws TransformerException in compose() method in ElemValueOf
178 super.compose(sroot); in compose()
DElemWithParam.java149 public void compose(StylesheetRoot sroot) throws TransformerException in compose() method in ElemWithParam
160 super.compose(sroot); in compose()
/external/chromium_org/third_party/skia/samplecode/
DSamplePathUtils.cpp70 SkAutoTUnref<SkComposePathEffect> compose(SkComposePathEffect::Create(dash, corner)); in onDrawContent() local
75 outlinePaint.setPathEffect(compose); in onDrawContent()
/external/skia/samplecode/
DSamplePathUtils.cpp70 SkAutoTUnref<SkComposePathEffect> compose(SkComposePathEffect::Create(dash, corner)); in onDrawContent() local
75 outlinePaint.setPathEffect(compose); in onDrawContent()
/external/pixman/pixman/
Dpixman-general.c117 pixman_combine_32_func_t compose; in general_composite_rect() local
188 compose = _pixman_implementation_lookup_combiner ( in general_composite_rect()
199 compose (imp->toplevel, op, d, s, m, width); in general_composite_rect()

123456