Home
last modified time | relevance | path

Searched refs:transform (Results 1 – 25 of 2225) sorted by relevance

12345678910>>...89

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DBidiTransform.java221 public String transform(CharSequence text, in transform() method in BidiTransform
385 void doTransform(BidiTransform transform) { in doTransform() argument
386transform.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()
401transform.shapeArabic(ArabicShaping.TEXT_DIRECTION_LOGICAL, ArabicShaping.TEXT_DIRECTION_VISUAL_LT… in doTransform()
411 void doTransform(BidiTransform transform) { in doTransform() argument
[all …]
DBytesDictionaryMatcher.java19 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/icu/android_icu4j/src/main/java/android/icu/text/
DBidiTransform.java211 public String transform(CharSequence text, in transform() method in BidiTransform
375 void doTransform(BidiTransform transform) { in doTransform() argument
376transform.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()
391transform.shapeArabic(ArabicShaping.TEXT_DIRECTION_LOGICAL, ArabicShaping.TEXT_DIRECTION_VISUAL_LT… in doTransform()
401 void doTransform(BidiTransform transform) { in doTransform() argument
[all …]
DSourceTargetUtility.java21 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()
DBytesDictionaryMatcher.java20 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/perfetto/docs/images/
Ddataflow.svg1transform: translate(79.984375px,105px) scale(1,1)} 32% {transform: translate(79.984375px,105px) s…
3transform="translate(79.984375,75) scale(1,1)"><rect id="ec4qhmsv5c9j25" width="140" height="30" r…
5 …ont-family="RobotoMono-Regular, &quot;Roboto Mono&quot;" font-size="14" transform="matrix(1 0 0 1 …
7transform="matrix(-1 0 -0 -1 280 80.00000000000003)" fill="rgb(245,245,245)" stroke="none" stroke-…
9transform="matrix(1 0 0 1 340 110)" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1"…
11 …ont-family="RobotoMono-Regular, &quot;Roboto Mono&quot;" font-size="18" transform="matrix(1 0 0 1 …
13 …ont-family="RobotoMono-Regular, &quot;Roboto Mono&quot;" font-size="18" transform="matrix(1 0 0 1 …
15transform="matrix(1 0 0 1 138 75)" fill="rgb(96,125,139)" fill-rule="evenodd" stroke="none" stroke…
/external/fmtlib/doc/bootstrap/mixins/
Dvendor-prefixes.less113 -webkit-transform: scale(@ratio);
114 -ms-transform: scale(@ratio); // IE9 only
115 -o-transform: scale(@ratio);
116 transform: scale(@ratio);
119 -webkit-transform: scale(@ratioX, @ratioY);
120 -ms-transform: scale(@ratioX, @ratioY); // IE9 only
121 -o-transform: scale(@ratioX, @ratioY);
122 transform: scale(@ratioX, @ratioY);
125 -webkit-transform: scaleX(@ratio);
126 -ms-transform: scaleX(@ratio); // IE9 only
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DTransformer.java18 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/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DZip.kt34 public fun <T1, T2, R> Flow<T1>.combine(flow: Flow<T2>, transform: suspend (a: T1, b: T2) -> R): Fl… in <lambda>()
36 emit(transform(a, b)) in <lambda>()
56 public fun <T1, T2, R> combine(flow: Flow<T1>, flow2: Flow<T2>, transform: suspend (a: T1, b: T2) -… in combine()
57 flow.combine(flow2, transform) in combine()
80 @BuilderInference transform: suspend FlowCollector<R>.(a: T1, b: T2) -> Unit in combine()
83 transform(a, b) in combine()
108 @BuilderInference transform: suspend FlowCollector<R>.(a: T1, b: T2) -> Unit in combineTransform()
110 transform( in combineTransform()
125 @BuilderInference crossinline transform: suspend (T1, T2, T3) -> R in combine()
127 transform( in combine()
[all …]
DTransform.kt15 import kotlinx.coroutines.flow.unsafeTransform as transform in <lambda>()
20 …n <T> Flow<T>.filter(crossinline predicate: suspend (T) -> Boolean): Flow<T> = transform { value -> in <lambda>()
21 if (predicate(value)) return@transform emit(value) in <lambda>()
27 …T> Flow<T>.filterNot(crossinline predicate: suspend (T) -> Boolean): Flow<T> = transform { value -> in filterNot()
28 if (!predicate(value)) return@transform emit(value) in filterNot()
40 public fun <T: Any> Flow<T?>.filterNotNull(): Flow<T> = transform<T?, T> { value -> in filterNotNull()
41 if (value != null) return@transform emit(value) in filterNotNull()
47 …ublic inline fun <T, R> Flow<T>.map(crossinline transform: suspend (value: T) -> R): Flow<R> = tra… in map()
48 return@transform emit(transform(value)) in map()
54 … fun <T, R: Any> Flow<T>.mapNotNull(crossinline transform: suspend (value: T) -> R?): Flow<R> = tr… in mapNotNull()
[all …]
DMerge.kt43 public fun <T, R> Flow<T>.flatMapConcat(transform: suspend (value: T) -> Flow<R>): Flow<R> = in <lambda>()
44 map(transform).flattenConcat() in <lambda>()
69 transform: suspend (value: T) -> Flow<R> in <lambda>()
71 map(transform).flattenMerge(concurrency) in <lambda>()
127 public fun <T, R> Flow<T>.transformLatest(@BuilderInference transform: suspend FlowCollector<R>.(va… in transformLatest()
128 ChannelFlowTransformLatest(transform, this) in transformLatest()
153 public inline fun <T, R> Flow<T>.flatMapLatest(@BuilderInference crossinline transform: suspend (va… in transformLatest()
154 transformLatest { emitAll(transform(it)) } in transformLatest()
177 public fun <T, R> Flow<T>.mapLatest(@BuilderInference transform: suspend (value: T) -> R): Flow<R> = in mapLatest()
178 transformLatest { emit(transform(it)) } in mapLatest()
/external/skqp/tests/
DMatrix44Test.cpp567 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/
DSourceTargetUtility.java20 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/fonttools/Lib/fontTools/svgLib/path/
D__init__.py37 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)
59 for path, transform in zip(pb.paths, pb.transforms):
60 if transform:
61 pen = TransformPen(original_pen, transform)
/external/skia/tests/
DMatrix44Test.cpp562 SkMatrix44 transform(SkMatrix44::kIdentity_Constructor); in test_has_perspective() local
564 transform.setDouble(3, 2, -0.1); in test_has_perspective()
565 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective()
567 transform.reset(); in test_has_perspective()
568 REPORTER_ASSERT(reporter, !transform.hasPerspective()); in test_has_perspective()
570 transform.setDouble(3, 0, -1.0); in test_has_perspective()
571 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective()
573 transform.reset(); in test_has_perspective()
574 transform.setDouble(3, 1, -1.0); in test_has_perspective()
575 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective()
[all …]
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_point_sprite.c508 struct psprite_transform_context transform; in tgsi_add_point_sprite() local
514 memset(&transform, 0, sizeof(transform)); in tgsi_add_point_sprite()
515 transform.base.transform_declaration = psprite_decl; in tgsi_add_point_sprite()
516 transform.base.transform_instruction = psprite_inst; in tgsi_add_point_sprite()
517 transform.base.transform_property = psprite_property; in tgsi_add_point_sprite()
518 transform.base.transform_immediate = psprite_immediate; in tgsi_add_point_sprite()
519 transform.base.prolog = psprite_prolog; in tgsi_add_point_sprite()
521 transform.point_size_in = INVALID_INDEX; in tgsi_add_point_sprite()
522 transform.point_size_out = INVALID_INDEX; in tgsi_add_point_sprite()
523 transform.point_size_tmp = INVALID_INDEX; in tgsi_add_point_sprite()
[all …]
Dtgsi_aa_point.c276 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 …]
/external/cldr/tools/java/org/unicode/cldr/draft/
DIterables.java32 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/
DExpression.java23 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/libcxx/test/std/re/re.traits/
Dtransform.pass.cpp36 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/mesa3d/src/gallium/auxiliary/util/
Du_pstipple.c380 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/
Dbignum.txt9 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/mesa3d/src/gallium/drivers/virgl/
Dvirgl_tgsi.c107 struct virgl_transform_context transform; in virgl_tgsi_transform() local
115 memset(&transform, 0, sizeof(transform)); in virgl_tgsi_transform()
116 transform.base.transform_declaration = virgl_tgsi_transform_declaration; in virgl_tgsi_transform()
117 transform.base.transform_property = virgl_tgsi_transform_property; in virgl_tgsi_transform()
118 transform.base.transform_instruction = virgl_tgsi_transform_instruction; in virgl_tgsi_transform()
119 transform.cull_enabled = vscreen->caps.caps.v1.bset.has_cull; in virgl_tgsi_transform()
120 transform.has_precise = vscreen->caps.caps.v2.capability_bits & VIRGL_CAP_TGSI_PRECISE; in virgl_tgsi_transform()
121 transform.fake_fp64 = in virgl_tgsi_transform()
123 tgsi_transform_shader(tokens_in, new_tokens, newLen, &transform.base); in virgl_tgsi_transform()
/external/python/parse_type/parse_type/
Dbuilder.py120 def _normalize_choices(choices, transform): argument
121 assert transform is None or callable(transform)
122 if transform:
123 choices = [transform(value) for value in choices]
129 def make_choice(cls, choices, transform=None, strict=None): argument
142 choices = cls._normalize_choices(choices, transform)
147 if transform:
148 text = transform(text)
158 def make_choice2(cls, choices, transform=None, strict=None): argument
167 choices = cls._normalize_choices(choices, transform)
[all …]
/external/mesa3d/prebuilt-intermediates/nir/
Dnir_opt_algebraic.c55507 static const struct transform nir_opt_algebraic_state3_xforms[] = {
55514 static const struct transform nir_opt_algebraic_state5_xforms[] = {
55518 static const struct transform nir_opt_algebraic_state6_xforms[] = {
55521 static const struct transform nir_opt_algebraic_state7_xforms[] = {
55526 static const struct transform nir_opt_algebraic_state8_xforms[] = {
55529 static const struct transform nir_opt_algebraic_state9_xforms[] = {
55532 static const struct transform nir_opt_algebraic_state10_xforms[] = {
55535 static const struct transform nir_opt_algebraic_state11_xforms[] = {
55539 static const struct transform nir_opt_algebraic_state12_xforms[] = {
55544 static const struct transform nir_opt_algebraic_state13_xforms[] = {
[all …]

12345678910>>...89