/external/ImageMagick/PerlMagick/demo/ |
D | compose-specials.pl | 60 compose=>'over', 69 compose=>'multiply', 78 compose=>'screen', 87 compose=>'hardlight', 100 compose=>'over', 109 compose=>'blend', 119 compose=>'dissolve', 129 compose=>'dissolve', 143 compose=>'displace', 154 compose=>'displace', [all …]
|
D | Makefile | 9 perl compose-specials.pl 17 compose-specials.jpg single-pixels.gif pixel-fx.gif
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
D | NormalizerData.java | 49 return compose.get(((long)first << 32) | second); in getPairwiseComposition() 83 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) { in NormalizerData() argument 86 this.compose = compose; in NormalizerData() 126 private LongHashtable compose; field in NormalizerData
|
D | NormalizerBuilder.java | 56 LongHashtable compose = new LongHashtable(NormalizerData.NOT_COMPOSITE); in build() local 63 buildDecompositionTables(canonicalClass, decompose, compose, in build() 67 setMinimalDecomp(canonicalClass, decompose, compose, in build() 70 return new NormalizerData(canonicalClass, decompose, compose, in build() 116 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) in buildDecompositionTables() argument 214 compose.put(pair, value); in buildDecompositionTables() 242 compose.put(pair, value); in buildDecompositionTables() 260 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) { in setMinimalDecomp() argument 431 compose.put(pair, value); in setMinimalDecomp()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/ |
D | NormalizerData.java | 52 return compose.get(((long)first << 32) | second); in getPairwiseComposition() 86 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) { in NormalizerData() argument 89 this.compose = compose; in NormalizerData() 129 private LongHashtable compose; field in NormalizerData
|
D | NormalizerBuilder.java | 57 LongHashtable compose = new LongHashtable(NormalizerData.NOT_COMPOSITE); in build() local 64 buildDecompositionTables(canonicalClass, decompose, compose, in build() 68 setMinimalDecomp(canonicalClass, decompose, compose, in build() 71 return new NormalizerData(canonicalClass, decompose, compose, in build() 117 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) in buildDecompositionTables() argument 215 compose.put(pair, value); in buildDecompositionTables() 243 compose.put(pair, value); in buildDecompositionTables() 261 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) { in setMinimalDecomp() argument 432 compose.put(pair, value); in setMinimalDecomp()
|
/external/guava/android/guava-tests/test/com/google/common/base/ |
D | FunctionsTest.java | 215 Functions.compose(integerToSpanish, japaneseToInteger); in testComposition() 231 .addEqualityGroup(japaneseToSpanish, Functions.compose(integerToSpanish, japaneseToInteger)) in testComposition() 234 .addEqualityGroup(Functions.compose(japaneseToInteger, integerToSpanish)) in testComposition() 253 Functions.compose(integerToSpanish, japaneseToInteger); in testComposition_includeReserializabled() 258 Functions.compose(integerToSpanish, japaneseToInteger), in testComposition_includeReserializabled() 262 .addEqualityGroup(Functions.compose(japaneseToInteger, integerToSpanish)) in testComposition_includeReserializabled() 273 Functions.compose(numberToSpanish, japaneseToInteger); in testCompositionWildcard() 289 Function<Float, Boolean> c1 = Functions.compose(Functions.compose(h, g), f); in testComposeOfFunctionsIsAssociative() 290 Function<Float, Boolean> c2 = Functions.compose(h, Functions.compose(g, f)); in testComposeOfFunctionsIsAssociative() 308 Predicate<Float> p1 = Predicates.compose(Predicates.compose(h, g), f); in testComposeOfPredicateAndFunctionIsAssociative() [all …]
|
D | SuppliersTest.java | 185 Supplier<Integer> squareSupplier = Suppliers.compose(intValueFunction, fiveSupplier); in testCompose() 209 Supplier<List<Integer>> addSupplier = Suppliers.compose(addElementFunction, listSupplier); in testComposeWithLists() 435 reserialize(Suppliers.compose(Functions.identity(), Suppliers.ofInstance(5))).get()); in testSerialization() 467 Suppliers.compose(Functions.constant(1), Suppliers.ofInstance("foo")), in testCompose_equals() 468 Suppliers.compose(Functions.constant(1), Suppliers.ofInstance("foo"))) in testCompose_equals() 469 .addEqualityGroup(Suppliers.compose(Functions.constant(2), Suppliers.ofInstance("foo"))) in testCompose_equals() 470 .addEqualityGroup(Suppliers.compose(Functions.constant(1), Suppliers.ofInstance("bar"))) in testCompose_equals()
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | FunctionsTest.java | 215 Functions.compose(integerToSpanish, japaneseToInteger); in testComposition() 231 .addEqualityGroup(japaneseToSpanish, Functions.compose(integerToSpanish, japaneseToInteger)) in testComposition() 234 .addEqualityGroup(Functions.compose(japaneseToInteger, integerToSpanish)) in testComposition() 253 Functions.compose(integerToSpanish, japaneseToInteger); in testComposition_includeReserializabled() 258 Functions.compose(integerToSpanish, japaneseToInteger), in testComposition_includeReserializabled() 262 .addEqualityGroup(Functions.compose(japaneseToInteger, integerToSpanish)) in testComposition_includeReserializabled() 273 Functions.compose(numberToSpanish, japaneseToInteger); in testCompositionWildcard() 289 Function<Float, Boolean> c1 = Functions.compose(Functions.compose(h, g), f); in testComposeOfFunctionsIsAssociative() 290 Function<Float, Boolean> c2 = Functions.compose(h, Functions.compose(g, f)); in testComposeOfFunctionsIsAssociative() 308 Predicate<Float> p1 = Predicates.compose(Predicates.compose(h, g), f); in testComposeOfPredicateAndFunctionIsAssociative() [all …]
|
D | SuppliersTest.java | 185 Supplier<Integer> squareSupplier = Suppliers.compose(intValueFunction, fiveSupplier); in testCompose() 209 Supplier<List<Integer>> addSupplier = Suppliers.compose(addElementFunction, listSupplier); in testComposeWithLists() 435 reserialize(Suppliers.compose(Functions.identity(), Suppliers.ofInstance(5))).get()); in testSerialization() 467 Suppliers.compose(Functions.constant(1), Suppliers.ofInstance("foo")), in testCompose_equals() 468 Suppliers.compose(Functions.constant(1), Suppliers.ofInstance("foo"))) in testCompose_equals() 469 .addEqualityGroup(Suppliers.compose(Functions.constant(2), Suppliers.ofInstance("foo"))) in testCompose_equals() 470 .addEqualityGroup(Suppliers.compose(Functions.constant(1), Suppliers.ofInstance("bar"))) in testCompose_equals()
|
/external/libxkbcommon/xkbcommon/ |
D | Makefile.am | 41 xkbcommon/xkbcommon-compose.h \ 47 src/compose/parser.c \ 48 src/compose/parser.h \ 49 src/compose/paths.c \ 50 src/compose/paths.h \ 51 src/compose/state.c \ 52 src/compose/table.c \ 53 src/compose/table.h \ 195 test/compose 256 bench/compose
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | Rule.java | 28 String compose(Matcher prematcher, Matcher postmatcher); in compose() method 38 public String compose(Matcher prematcher, Matcher postmatcher) { in compose() method in Rule.StringItem 56 public String compose(Matcher prematcher, Matcher postmatcher) { in compose() method in Rule.NumberedItem 68 public String compose(Matcher prematcher, Matcher postmatcher) { in compose() method in Rule.CursorItem 117 final String insertion = item.compose(prematcher, postmatcher); in append()
|
/external/pdfium/core/fxcodec/jbig2/ |
D | JBig2_TrdProc.cpp | 215 ComposeData compose = GetComposeData(SI, TI, WI, HI); in DecodeHuffman() local 216 IBI.Get()->ComposeTo(SBREG.get(), compose.x, compose.y, SBCOMBOP); in DecodeHuffman() 217 if (compose.increment) in DecodeHuffman() 218 CURS += compose.increment; in DecodeHuffman() 386 ComposeData compose = GetComposeData(SI, TI, WI, HI); in DecodeArith() local 387 pIBI.Get()->ComposeTo(SBREG.get(), compose.x, compose.y, SBCOMBOP); in DecodeArith() 388 if (compose.increment) in DecodeArith() 389 CURS += compose.increment; in DecodeArith()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/composer/ |
D | ComposerImplTest.java | 32 Node node = yaml.compose(new StringReader(data)); in testGetNode() 36 Node node2 = yaml.compose(new StringReader(data2)); in testGetNode() 44 Node node = yaml.compose(new StringReader(data)); in testComposeBean()
|
/external/ImageMagick/MagickWand/ |
D | composite.c | 62 compose; member 132 composite_options->compose); in CompositeImageList() 147 switch (composite_options->compose) in CompositeImageList() 212 composite_options->compose,MagickTrue,x,y,exception); in CompositeImageList() 235 composite_options->compose,composite_options->clip_to_self, in CompositeImageList() 246 composite_options->compose, in CompositeImageList() 392 composite_options->compose=OverCompositeOp; in GetCompositeOptions() 609 composite_options.compose=BlendCompositeOp; in CompositeImageCommand() 623 composite_options.compose=BlurCompositeOp; in CompositeImageCommand() 732 compose; in CompositeImageCommand() local [all …]
|
/external/grpc-grpc/src/ruby/spec/ |
D | channel_credentials_spec.rb | 61 expect { channel_creds.compose call_creds }.not_to raise_error 71 channel_creds.compose(call_creds1, call_creds2) 79 expect { channel_creds1.compose channel_creds2 }.to raise_error(TypeError)
|
D | call_credentials_spec.rb | 32 expect { creds1.compose creds2 }.not_to raise_error 39 expect { creds1.compose(creds2, creds3) }.not_to raise_error
|
/external/libxkbcommon/xkbcommon/test/data/rules/ |
D | evdev | 1014 compose:ralt = +compose(ralt) 1015 compose:lwin = +compose(lwin) 1016 compose:lwin-altgr = +compose(lwin-altgr) 1017 compose:rwin = +compose(rwin) 1018 compose:rwin-altgr = +compose(rwin-altgr) 1019 compose:menu = +compose(menu) 1020 compose:menu-altgr = +compose(menu-altgr) 1021 compose:lctrl = +compose(lctrl) 1022 compose:lctrl-altgr = +compose(lctrl-altgr) 1023 compose:rctrl = +compose(rctrl) [all …]
|
D | base | 1125 compose:ralt = +compose(ralt) 1126 compose:lwin = +compose(lwin) 1127 compose:lwin-altgr = +compose(lwin-altgr) 1128 compose:rwin = +compose(rwin) 1129 compose:rwin-altgr = +compose(rwin-altgr) 1130 compose:menu = +compose(menu) 1131 compose:menu-altgr = +compose(menu-altgr) 1132 compose:lctrl = +compose(lctrl) 1133 compose:lctrl-altgr = +compose(lctrl-altgr) 1134 compose:rctrl = +compose(rctrl) [all …]
|
/external/libxkbcommon/ |
D | Android.bp | 17 "xkbcommon/src/compose/parser.c", 18 "xkbcommon/src/compose/paths.c", 19 "xkbcommon/src/compose/state.c", 20 "xkbcommon/src/compose/table.c",
|
/external/python/cpython3/Lib/test/ |
D | mailcap.txt | 12 compose=idraw %s 14 application/x-movie; movieplayer %s; compose=moviemaker %s; \ 20 audio/basic; showaudio %s; compose=audiocompose %s; edit=audiocompose %s;\
|
/external/harfbuzz_ng/src/ |
D | hb-unicode.hh | 49 HB_UNICODE_FUNC_IMPLEMENT (compose) \ 74 hb_bool_t compose (hb_codepoint_t a, hb_codepoint_t b, in compose() function 79 return func.compose (this, a, b, ab, user_data.compose); in compose()
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | ElemWhen.java | 90 public void compose(StylesheetRoot sroot) in compose() method in ElemWhen 93 super.compose(sroot); in compose()
|
/external/skia/gm/ |
D | patheffects.cpp | 35 sk_sp<SkPathEffect> compose; in compose_pe() local 37 compose = SkPathEffect::MakeCompose(sk_ref_sp(pe), corner); in compose_pe() 39 compose = corner; in compose_pe() 41 paint->setPathEffect(compose); in compose_pe()
|
/external/skqp/gm/ |
D | patheffects.cpp | 21 sk_sp<SkPathEffect> compose; in compose_pe() local 23 compose = SkPathEffect::MakeCompose(sk_ref_sp(pe), corner); in compose_pe() 25 compose = corner; in compose_pe() 27 paint->setPathEffect(compose); in compose_pe()
|