/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | BidiTransform.java | 211 public String transform(CharSequence text, in transform() method in BidiTransform 375 void doTransform(BidiTransform transform) { in doTransform() argument 376 … transform.shapeArabic(ArabicShaping.TEXT_DIRECTION_LOGICAL, ArabicShaping.TEXT_DIRECTION_LOGICAL); in doTransform() 377 transform.resolve(Bidi.LTR, Bidi.REORDER_DEFAULT); in doTransform() 378 transform.reorder(); in doTransform() 388 void doTransform(BidiTransform transform) { in doTransform() argument 389 transform.resolve(Bidi.RTL, Bidi.REORDER_DEFAULT); in doTransform() 390 transform.reorder(); in doTransform() 391 …transform.shapeArabic(ArabicShaping.TEXT_DIRECTION_LOGICAL, ArabicShaping.TEXT_DIRECTION_VISUAL_LT… in doTransform() 401 void doTransform(BidiTransform transform) { in doTransform() argument [all …]
|
D | SourceTargetUtility.java | 21 final Transform<String, String> transform; field in SourceTargetUtility 28 public SourceTargetUtility(Transform<String, String> transform) { in SourceTargetUtility() argument 29 this(transform, null); in SourceTargetUtility() 32 public SourceTargetUtility(Transform<String, String> transform, Normalizer2 normalizer) { in SourceTargetUtility() argument 33 this.transform = transform; in SourceTargetUtility() 65 String s = transform.transform(UTF16.valueOf(i)); in SourceTargetUtility() 78 s = transform.transform(d); in SourceTargetUtility() 123 targetSet.addAll(transform.transform(s)); in addSourceTargetSet() 127 String t = transform.transform(s); in addSourceTargetSet()
|
D | BytesDictionaryMatcher.java | 20 private final int transform; field in BytesDictionaryMatcher 22 public BytesDictionaryMatcher(byte[] chars, int transform) { in BytesDictionaryMatcher() argument 24 …Assert.assrt((transform & DictionaryData.TRANSFORM_TYPE_MASK) == DictionaryData.TRANSFORM_TYPE_OFF… in BytesDictionaryMatcher() 28 this.transform = transform; in BytesDictionaryMatcher() 31 private int transform(int c) { in transform() method in BytesDictionaryMatcher 38 int delta = c - (transform & DictionaryData.TRANSFORM_OFFSET_MASK); in transform() 53 Result result = bt.first(transform(c)); in matches() 82 result = bt.next(transform(c)); in matches()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | BidiTransform.java | 221 public String transform(CharSequence text, in transform() method in BidiTransform 385 void doTransform(BidiTransform transform) { in doTransform() argument 386 … transform.shapeArabic(ArabicShaping.TEXT_DIRECTION_LOGICAL, ArabicShaping.TEXT_DIRECTION_LOGICAL); in doTransform() 387 transform.resolve(Bidi.LTR, Bidi.REORDER_DEFAULT); in doTransform() 388 transform.reorder(); in doTransform() 398 void doTransform(BidiTransform transform) { in doTransform() argument 399 transform.resolve(Bidi.RTL, Bidi.REORDER_DEFAULT); in doTransform() 400 transform.reorder(); in doTransform() 401 …transform.shapeArabic(ArabicShaping.TEXT_DIRECTION_LOGICAL, ArabicShaping.TEXT_DIRECTION_VISUAL_LT… in doTransform() 411 void doTransform(BidiTransform transform) { in doTransform() argument [all …]
|
D | BytesDictionaryMatcher.java | 19 private final int transform; field in BytesDictionaryMatcher 21 public BytesDictionaryMatcher(byte[] chars, int transform) { in BytesDictionaryMatcher() argument 23 …Assert.assrt((transform & DictionaryData.TRANSFORM_TYPE_MASK) == DictionaryData.TRANSFORM_TYPE_OFF… in BytesDictionaryMatcher() 27 this.transform = transform; in BytesDictionaryMatcher() 30 private int transform(int c) { in transform() method in BytesDictionaryMatcher 37 int delta = c - (transform & DictionaryData.TRANSFORM_OFFSET_MASK); in transform() 52 Result result = bt.first(transform(c)); in matches() 81 result = bt.next(transform(c)); in matches()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | Transformer.java | 18 private final Transform<S, ? extends V> transform; field in Transformer 21 …public static <S, V> Transformer<S, V> iterator(Transform<S, ? extends V> transform, Iterator<? ex… in iterator() argument 22 return new Transformer<S, V>(transform, iterator); in iterator() 25 …public static <S, V> Transformer<S, V> iterator(Transform<S, ? extends V> transform, Iterable<? ex… in iterator() argument 26 return new Transformer<S, V>(transform, iterable.iterator()); in iterator() 29 … public static <S, V> Transformer<S, V> iterator(Transform<S, ? extends V> transform, S... items) { in iterator() argument 30 return new Transformer<S, V>(transform, Arrays.asList(items).iterator()); in iterator() 33 …public static <S, V> With<V> iterable(Transform<S, ? extends V> transform, Iterator<? extends S> i… in iterable() argument 34 return With.in(new Transformer<S, V>(transform, iterator)); in iterable() 37 …public static <S, V> With<V> iterable(Transform<S, ? extends V> transform, Iterable<? extends S> i… in iterable() argument [all …]
|
/external/skia/tests/ |
D | Matrix44Test.cpp | 567 SkMatrix44 transform(SkMatrix44::kIdentity_Constructor); in test_has_perspective() local 569 transform.setDouble(3, 2, -0.1); in test_has_perspective() 570 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective() 572 transform.reset(); in test_has_perspective() 573 REPORTER_ASSERT(reporter, !transform.hasPerspective()); in test_has_perspective() 575 transform.setDouble(3, 0, -1.0); in test_has_perspective() 576 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective() 578 transform.reset(); in test_has_perspective() 579 transform.setDouble(3, 1, -1.0); in test_has_perspective() 580 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective() [all …]
|
/external/skqp/tests/ |
D | Matrix44Test.cpp | 567 SkMatrix44 transform(SkMatrix44::kIdentity_Constructor); in test_has_perspective() local 569 transform.setDouble(3, 2, -0.1); in test_has_perspective() 570 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective() 572 transform.reset(); in test_has_perspective() 573 REPORTER_ASSERT(reporter, !transform.hasPerspective()); in test_has_perspective() 575 transform.setDouble(3, 0, -1.0); in test_has_perspective() 576 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective() 578 transform.reset(); in test_has_perspective() 579 transform.setDouble(3, 1, -1.0); in test_has_perspective() 580 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective() [all …]
|
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | SourceTargetUtility.java | 20 final Transform<String, String> transform; field in SourceTargetUtility 27 public SourceTargetUtility(Transform<String, String> transform) { in SourceTargetUtility() argument 28 this(transform, null); in SourceTargetUtility() 31 public SourceTargetUtility(Transform<String, String> transform, Normalizer2 normalizer) { in SourceTargetUtility() argument 32 this.transform = transform; in SourceTargetUtility() 64 String s = transform.transform(UTF16.valueOf(i)); in SourceTargetUtility() 77 s = transform.transform(d); in SourceTargetUtility() 122 targetSet.addAll(transform.transform(s)); in addSourceTargetSet() 126 String t = transform.transform(s); in addSourceTargetSet()
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_point_sprite.c | 507 struct psprite_transform_context transform; in tgsi_add_point_sprite() local 513 memset(&transform, 0, sizeof(transform)); in tgsi_add_point_sprite() 514 transform.base.transform_declaration = psprite_decl; in tgsi_add_point_sprite() 515 transform.base.transform_instruction = psprite_inst; in tgsi_add_point_sprite() 516 transform.base.transform_property = psprite_property; in tgsi_add_point_sprite() 517 transform.base.transform_immediate = psprite_immediate; in tgsi_add_point_sprite() 518 transform.base.prolog = psprite_prolog; in tgsi_add_point_sprite() 520 transform.point_size_in = INVALID_INDEX; in tgsi_add_point_sprite() 521 transform.point_size_out = INVALID_INDEX; in tgsi_add_point_sprite() 522 transform.point_size_tmp = INVALID_INDEX; in tgsi_add_point_sprite() [all …]
|
D | tgsi_aa_point.c | 276 struct aa_transform_context transform; in tgsi_add_aa_point() local 287 memset(&transform, 0, sizeof(transform)); in tgsi_add_aa_point() 288 transform.base.transform_declaration = aa_decl; in tgsi_add_aa_point() 289 transform.base.transform_instruction = aa_inst; in tgsi_add_aa_point() 290 transform.base.transform_immediate = aa_immediate; in tgsi_add_aa_point() 291 transform.base.prolog = aa_prolog; in tgsi_add_aa_point() 292 transform.base.epilog = aa_epilog; in tgsi_add_aa_point() 294 transform.tmp = INVALID_INDEX; in tgsi_add_aa_point() 295 transform.color_out = INVALID_INDEX; in tgsi_add_aa_point() 296 transform.color_tmp = INVALID_INDEX; in tgsi_add_aa_point() [all …]
|
D | tgsi_two_side.c | 201 struct two_side_transform_context transform; in tgsi_add_two_side() local 207 memset(&transform, 0, sizeof(transform)); in tgsi_add_two_side() 208 transform.base.transform_declaration = xform_decl; in tgsi_add_two_side() 209 transform.base.transform_instruction = xform_inst; in tgsi_add_two_side() 210 transform.base.prolog = emit_prolog; in tgsi_add_two_side() 211 transform.face_input = INVALID_INDEX; in tgsi_add_two_side() 212 transform.front_color_input[0] = INVALID_INDEX; in tgsi_add_two_side() 213 transform.front_color_input[1] = INVALID_INDEX; in tgsi_add_two_side() 214 transform.front_color_interp[0] = TGSI_INTERPOLATE_COLOR; in tgsi_add_two_side() 215 transform.front_color_interp[1] = TGSI_INTERPOLATE_COLOR; in tgsi_add_two_side() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | Iterables.java | 32 public <S> Iterables<T> and(Transform<S, T> transform, Iterator<S> iteratorsIn) { in and() argument 33 return and(new TransformIterator<S, T>(transform, iteratorsIn)); in and() 36 public <S> Iterables<T> and(Transform<S, T> transform, Iterable<S> iteratorsIn) { in and() argument 37 return and(new TransformIterator<S, T>(transform, iteratorsIn.iterator())); in and() 40 public <S> Iterables<T> and(Transform<S, T> transform, S... iteratorsIn) { in and() argument 41 return and(transform, Arrays.asList(iteratorsIn).iterator()); in and() 99 private Transform<S, T> transform; field in Iterables.TransformIterator 102 public TransformIterator(Transform<S, T> transform, Iterator<S> iterator) { in TransformIterator() argument 104 this.transform = transform; in TransformIterator() 112 return transform.transform(iterator.next()); in next()
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | Expression.java | 23 import javax.xml.transform.ErrorListener; 24 import javax.xml.transform.TransformerException; 92 throws javax.xml.transform.TransformerException in execute() 116 throws javax.xml.transform.TransformerException in execute() 136 throws javax.xml.transform.TransformerException; in execute() 153 throws javax.xml.transform.TransformerException in execute() 169 throws javax.xml.transform.TransformerException in num() 184 throws javax.xml.transform.TransformerException in bool() 199 throws javax.xml.transform.TransformerException in xstr() 223 throws javax.xml.transform.TransformerException in asNode() [all …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_pstipple.c | 380 struct pstip_transform_context transform; in util_pstipple_create_fragment_shader() local 391 memset(&transform, 0, sizeof(transform)); in util_pstipple_create_fragment_shader() 392 transform.wincoordInput = -1; in util_pstipple_create_fragment_shader() 393 transform.wincoordFile = wincoordFile; in util_pstipple_create_fragment_shader() 394 transform.maxInput = -1; in util_pstipple_create_fragment_shader() 395 transform.coordOrigin = TGSI_FS_COORD_ORIGIN_UPPER_LEFT; in util_pstipple_create_fragment_shader() 396 transform.hasFixedUnit = !samplerUnitOut; in util_pstipple_create_fragment_shader() 397 transform.fixedUnit = fixedUnit; in util_pstipple_create_fragment_shader() 398 transform.base.prolog = pstip_transform_prolog; in util_pstipple_create_fragment_shader() 399 transform.base.transform_declaration = pstip_transform_decl; in util_pstipple_create_fragment_shader() [all …]
|
/external/python/cpython3/Modules/_decimal/libmpdec/literature/ |
D | bignum.txt | 9 J. M. Pollard: The fast Fourier transform in a finite field 13 The transform in a finite field can be used for convolution in the same 22 x = fnt(a) # forward transform of a 23 y = fnt(b) # forward transform of b 25 result = inv_fnt(z) # backward transform of z. 28 Extending the maximum transform length (Chinese Remainder Theorem): 31 The maximum transform length is quite limited when using a single 46 Optimized transform functions: 51 std_fnt: "standard" decimation in frequency transform for array lengths 68 difradix2.c -> decimation in frequency transform, used as the [all …]
|
/external/libcxx/test/std/re/re.traits/ |
D | transform.pass.cpp | 36 assert(t.transform(F(a), F(a+1)) > t.transform(F(B), F(B+1))); in main() 38 assert(t.transform(F(a), F(a+1)) < t.transform(F(B), F(B+1))); in main() 45 assert(t.transform(F(a), F(a+1)) > t.transform(F(B), F(B+1))); in main() 47 assert(t.transform(F(a), F(a+1)) < t.transform(F(B), F(B+1))); in main()
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/net/ |
D | IpSecManagerFacade.java | 134 private String getTransformId(IpSecTransform transform) { in getTransformId() argument 135 return "TRANSFORM:" + transform.hashCode(); in getTransformId() 159 IpSecTransform transform = sTransformHashMap.get(id); in ipSecApplyTransportModeTransformFileDescriptor() local 160 if (transform == null) { in ipSecApplyTransportModeTransformFileDescriptor() 165 mIpSecManager.applyTransportModeTransform(fd, direction.intValue(), transform); in ipSecApplyTransportModeTransformFileDescriptor() 211 IpSecTransform transform = sTransformHashMap.get(transformId); in ipSecApplyTransportModeTransformDatagramSocket() local 212 if (transform == null) { in ipSecApplyTransportModeTransformDatagramSocket() 217 mIpSecManager.applyTransportModeTransform(socket, direction.intValue(), transform); in ipSecApplyTransportModeTransformDatagramSocket() 263 IpSecTransform transform = sTransformHashMap.get(transformId); in ipSecApplyTransportModeTransformSocket() local 264 if (transform == null) { in ipSecApplyTransportModeTransformSocket() [all …]
|
/external/fonttools/Lib/fontTools/svgLib/path/ |
D | __init__.py | 37 def __init__(self, filename=None, transform=None): argument 43 self.transform = transform 46 def fromstring(cls, data, transform=None): argument 47 self = cls(transform=transform) 52 if self.transform: 53 pen = TransformPen(pen, self.transform)
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
D | XObject.java | 88 throws javax.xml.transform.TransformerException in execute() 235 public double num() throws javax.xml.transform.TransformerException in num() 251 public double numWithSideEffects() throws javax.xml.transform.TransformerException in numWithSideEffects() 263 public boolean bool() throws javax.xml.transform.TransformerException in bool() 278 public boolean boolWithSideEffects() throws javax.xml.transform.TransformerException in boolWithSideEffects() 409 public DTMIterator iter() throws javax.xml.transform.TransformerException in iter() 436 public NodeIterator nodeset() throws javax.xml.transform.TransformerException in nodeset() 452 public NodeList nodelist() throws javax.xml.transform.TransformerException in nodelist() 470 throws javax.xml.transform.TransformerException in mutableNodeset() 490 throws javax.xml.transform.TransformerException in castToType() [all …]
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/ |
D | dataurl-realdata-doublequotes.css | 2 -webkit-transform: translate3d(0, 0, 0); 3 -moz-transform: translate(0, 0); 35 -webkit-transform: translate3d(0, 0, 0); 40 -moz-transform: translate(0, 0); 48 -webkit-transform: translate3d(0,0,0) scaleY(1); 49 -webkit-transform-origin-y: 0; 51 -moz-transform: translate(0,0) scaleY(1); 52 -moz-transform-origin: 0 0; 79 -webkit-transform: translate3d(0,0,0) scaleX(1); 80 -webkit-transform-origin: 0 0; [all …]
|
D | dataurl-realdata-noquotes.css.min | 1 …transform:translate3d(0,0,0);-moz-transform:translate(0,0)}.yui3-skin-sam .yui3-scrollview-scrollb…
|
D | dataurl-realdata-singlequotes.css.min | 1 …transform:translate3d(0,0,0);-moz-transform:translate(0,0)}.yui3-skin-sam .yui3-scrollview-scrollb…
|
D | dataurl-realdata-singlequotes.css | 2 -webkit-transform: translate3d(0, 0, 0); 3 -moz-transform: translate(0, 0); 35 -webkit-transform: translate3d(0, 0, 0); 40 -moz-transform: translate(0, 0); 48 -webkit-transform: translate3d(0,0,0) scaleY(1); 49 -webkit-transform-origin-y: 0; 51 -moz-transform: translate(0,0) scaleY(1); 52 -moz-transform-origin: 0 0; 79 -webkit-transform: translate3d(0,0,0) scaleX(1); 80 -webkit-transform-origin: 0 0; [all …]
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/out/ |
D | dataurl-realdata-noquotes.out.b | 1 …transform:translate3d(0,0,0);-moz-transform:translate(0,0)}.yui3-skin-sam .yui3-scrollview-scrollb…
|