Home
last modified time | relevance | path

Searched full:transform (Results 1 – 25 of 9988) sorted by relevance

12345678910>>...400

/external/brotli/csharp/org/brotli/dec/
DTransform.cs9 internal sealed class Transform class
17 internal Transform(string prefix, int type, string suffix) in Transform() method in Org.Brotli.Dec.Transform
34Transform[] Transforms = new Org.Brotli.Dec.Transform[] { new Org.Brotli.Dec.Transform(string.Empt…
35Transform(" ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(strin…
36 … "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, " the "…
37Transform("s ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(stri…
38Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, " and "), new Org.Brotli.Dec.Tr…
39 …ng.Empty), new Org.Brotli.Dec.Transform(", ", Org.Brotli.Dec.WordTransformType.Identity, " "), new…
40Transform(" ", Org.Brotli.Dec.WordTransformType.UppercaseFirst, " "), new Org.Brotli.Dec.Transform
41Transform("e ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(stri…
[all …]
/external/harfbuzz_ng/test/api/results/
Dhand-10.26 start transform 1 0 0.2 1 0 0
8 start transform 1 0 -0.2 1 0 0
10 start transform 1 0 0.2 1 0 0
11 start transform 1 0 0 0.977 0 0
20 end transform
21 end transform
23 end transform
26 start transform 1 0 -0.2 1 0 0
28 start transform 1 0 0.2 1 0 0
36 end transform
[all …]
Dhand-106 start transform 1 0 0 1 0 0
8 start transform 1 0 -0 1 0 0
10 start transform 1 0 0 1 0 0
11 start transform 1 0 0 0.977 0 0
20 end transform
21 end transform
23 end transform
26 start transform 1 0 -0 1 0 0
28 start transform 1 0 0 1 0 0
36 end transform
[all …]
Dtest-1236 start transform 1 0 0 1 0 0
8 start transform 1 0 -0 1 0 0
10 start transform 1 0 0 1 0 0
12 end transform
14 end transform
17 start transform 1 0 0 1 333 667
18 start transform 0.5 0 0 0.5 0 0
19 start transform 1 0 0 1 -333 -667
20 start transform 1 0 -0 1 0 0
22 start transform 1 0 0 1 0 0
[all …]
Dtestvf-1236 start transform 1 0 0 1 0 0
8 start transform 1 0 -0 1 0 0
10 start transform 1 0 0 1 0 0
12 end transform
14 end transform
17 start transform 1 0 0 1 333 667
18 start transform 0.5 0 0 0.5 0 0
19 start transform 1 0 0 1 -333 -667
20 start transform 1 0 -0 1 0 0
22 start transform 1 0 0 1 0 0
[all …]
/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/pigweed/pw_snapshot/images/
Dgeneric_crash_flow.svg1transform="translate(0 -118.25)" lucid:page-tab-id="0_0"><path d="M148 180c17.67 0 32 17.9 32 40s-…
/external/pigweed/seed/0119-pw-sensor/
Dhigh-level-view.svg1transform="translate(-137.83333333333334 -199.5)" lucid:page-tab-id="QS0QVPe9s7im"><path d="M0 0h1…
/external/fonttools/Tests/misc/
Dtransform_test.py1 from fontTools.misc.transform import (
2 Transform,
14 t = Transform()
15 assert repr(t) == "<Transform [1 0 0 1 0 0]>"
16 assert t.scale(2) == Transform(2, 0, 0, 2, 0, 0)
17 assert t.scale(2.5, 5.5) == Transform(2.5, 0, 0, 5.5, 0, 0)
21 assert Transform(12) == Transform(12, 0, 0, 1, 0, 0)
22 assert Transform(dx=12) == Transform(1, 0, 0, 1, 12, 0)
23 assert Transform(yx=12) == Transform(1, 0, 12, 1, 0, 0)
26 t = Transform(2, 0, 0, 3, 0, 0)
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DZip.kt17 * Returns a [Flow] whose values are generated with [transform] function by combining in <lambda>()
29 * This function is a shorthand for `flow.combineTransform(flow2) { a, b -> emit(transform(a, b)) } in <lambda>()
32 public fun <T1, T2, R> Flow<T1>.combine(flow: Flow<T2>, transform: suspend (a: T1, b: T2) -> R): Fl… in <lambda>()
33 …combineInternal(arrayOf(this@combine, flow), nullArrayFactory(), { emit(transform(it[0] as T1, it[… in <lambda>()
37 * Returns a [Flow] whose values are generated with [transform] function by combining
49 * This function is a shorthand for `combineTransform(flow, flow2) { a, b -> emit(transform(a, b)) }
51 public fun <T1, T2, R> combine(flow: Flow<T1>, flow2: Flow<T2>, transform: suspend (a: T1, b: T2) -… in combine()
52 flow.combine(flow2, transform) in combine()
55 …* Returns a [Flow] whose values are generated by [transform] function that process the most recent… in combine()
57 * The receiver of the [transform] is [FlowCollector] and thus `transform` is a in combine()
[all …]
/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/sl4a/Common/src/com/googlecode/android_scripting/facade/net/
DIpSecManagerFacade.java88 Log.e("IpSec: Cannot create Transport mode transform" + e.toString()); in createTransportModeTransform()
134 private String getTransformId(IpSecTransform transform) { in getTransformId() argument
135 return "TRANSFORM:" + transform.hashCode(); in getTransformId()
152 * Apply transport mode transform to FileDescriptor
154 * @param direction : In or Out direction to apply transform to
155 * @param id : Hash key of the transform
156 * @return True if transform is applied successfully
158 @Rpc(description = "Apply transport mode transform to FileDescriptor", returns = "True/False")
168 IpSecTransform transform = sTransformHashMap.get(id); in ipSecApplyTransportModeTransformFileDescriptor() local
169 if (transform == null) { in ipSecApplyTransportModeTransformFileDescriptor()
[all …]
/external/fonttools/Lib/fontTools/misc/
Dtransform.py3 The Transform class implements various transformation matrix operations,
6 Transform instances are effectively immutable: all methods that operate on the
8 interesting side effect that Transform instances are hashable, ie. they can be
13 Transform
16 Transform instance set to the identity transformation
27 >>> t = Transform(2, 0, 0, 3, 0, 0)
60 __all__ = ["Transform", "Identity", "Offset", "Scale", "DecomposedTransform"]
78 class Transform(NamedTuple): class
79 """2x2 transformation matrix plus offset, a.k.a. Affine transform.
80 Transform instances are immutable: all transforming methods, eg.
[all …]
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DTransformer.java3 import com.ibm.icu.text.Transform;
16 private final Transform<S, ? extends V> transform; field in Transformer
20 Transform<S, ? extends V> transform, Iterator<? extends S> iterator) { in iterator() argument
21 return new Transformer<>(transform, iterator); in iterator()
25 Transform<S, ? extends V> transform, Iterable<? extends S> iterable) { in iterator() argument
26 return new Transformer<>(transform, iterable.iterator()); in iterator()
30 Transform<S, ? extends V> transform, S... items) { in iterator() argument
31 return new Transformer<>(transform, Arrays.asList(items).iterator()); in iterator()
35 Transform<S, ? extends V> transform, Iterator<? extends S> iterator) { in iterable() argument
36 return With.in(new Transformer<S, V>(transform, iterator)); in iterable()
[all …]
/external/skia/src/gpu/graphite/geom/
DTransform_graphite.h17 // Transform encapsulates an SkM44 matrix, its inverse, and other properties dependent on the
19 class Transform {
21 // Type classifies the transform into coarse categories so that certain optimizations or
27 // pre-and-post transform coordinates can be exactly represented as rects.
33 // The matrix transform may have skew or rotation, so a mapped rect does not fill space,
45 explicit Transform(const SkM44& m);
46 Transform(const Transform& t) = default;
48 static constexpr Transform Identity() { in Identity()
49 return Transform(SkM44(), SkM44(), Type::kIdentity, 1.f, 1.f); in Identity()
51 static constexpr Transform Invalid() { in Invalid()
[all …]
/external/skia/site/docs/dev/design/conical/
Dlemma4.svg18 <g transform="matrix(0.8021505862642581, 0, 0, 0.8021505862642581, 0, 0)">
22 </g> <!-- transform -->
23 <g transform="matrix(0.8021505862642581, 0, 0, 0.8021505862642581, 0, 0)">
27 </g> <!-- transform -->
28 <g transform="matrix(0.8021505862642581, 0, 0, 0.8021505862642581, 0, 0)">
32 </g> <!-- transform -->
33 <g transform="matrix(0.8021505862642581, 0, 0, 0.8021505862642581, 0, 0)">
37 </g> <!-- transform -->
38 <g transform="matrix(0.8021505862642581, 0, 0, 0.8021505862642581, 0, 0)">
42 </g> <!-- transform -->
[all …]
Dlemma1.svg18 <g transform="matrix(1.273305143951097, 0, 0, 1.273305143951097, 0, 0)">
22 </g> <!-- transform -->
23 <g transform="matrix(1.273305143951097, 0, 0, 1.273305143951097, 0, 0)">
27 </g> <!-- transform -->
28 <g transform="matrix(1.273305143951097, 0, 0, 1.273305143951097, 0, 0)">
32 </g> <!-- transform -->
33 <g transform="matrix(1.273305143951097, 0, 0, 1.273305143951097, 0, 0)">
37 </g> <!-- transform -->
38 <g transform="matrix(1.273305143951097, 0, 0, 1.273305143951097, 0, 0)">
42 </g> <!-- transform -->
[all …]
Dcorollary2.3.3.svg18 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
22 </g> <!-- transform -->
23 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
27 </g> <!-- transform -->
28 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
32 </g> <!-- transform -->
33 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
37 </g> <!-- transform -->
38 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
42 </g> <!-- transform -->
[all …]
Dlemma3.2.svg18 <g transform="matrix(0.8823656448906823, 0, 0, 0.8823656448906823, 0, 0)">
22 </g> <!-- transform -->
23 <g transform="matrix(0.8823656448906823, 0, 0, 0.8823656448906823, 0, 0)">
27 </g> <!-- transform -->
28 <g transform="matrix(0.8823656448906823, 0, 0, 0.8823656448906823, 0, 0)">
32 </g> <!-- transform -->
33 <g transform="matrix(0.8823656448906823, 0, 0, 0.8823656448906823, 0, 0)">
37 </g> <!-- transform -->
38 <g transform="matrix(0.8823656448906823, 0, 0, 0.8823656448906823, 0, 0)">
42 </g> <!-- transform -->
[all …]
Dlemma3.1.svg18 <g transform="matrix(0.8823656448906831, 0, 0, 0.8823656448906831, 0, 0)">
22 </g> <!-- transform -->
23 <g transform="matrix(0.8823656448906831, 0, 0, 0.8823656448906831, 0, 0)">
27 </g> <!-- transform -->
28 <g transform="matrix(0.8823656448906831, 0, 0, 0.8823656448906831, 0, 0)">
32 </g> <!-- transform -->
33 <g transform="matrix(0.8823656448906831, 0, 0, 0.8823656448906831, 0, 0)">
37 </g> <!-- transform -->
38 <g transform="matrix(0.8823656448906831, 0, 0, 0.8823656448906831, 0, 0)">
42 </g> <!-- transform -->
[all …]
Dcorollary2.3.2.svg18 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
22 </g> <!-- transform -->
23 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
27 </g> <!-- transform -->
28 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
32 </g> <!-- transform -->
33 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
37 </g> <!-- transform -->
38 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
42 </g> <!-- transform -->
[all …]
Dcorollary2.2.1.svg18 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
22 </g> <!-- transform -->
23 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
27 </g> <!-- transform -->
28 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
32 </g> <!-- transform -->
33 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
37 </g> <!-- transform -->
38 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
42 </g> <!-- transform -->
[all …]
Dcorollary2.3.1.svg18 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
22 </g> <!-- transform -->
23 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
27 </g> <!-- transform -->
28 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
32 </g> <!-- transform -->
33 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
37 </g> <!-- transform -->
38 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
42 </g> <!-- transform -->
[all …]
Dcorollary2.2.2.svg18 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
22 </g> <!-- transform -->
23 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
27 </g> <!-- transform -->
28 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
32 </g> <!-- transform -->
33 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
37 </g> <!-- transform -->
38 <g transform="matrix(1.2733051439510972, 0, 0, 1.2733051439510972, 0, 0)">
42 </g> <!-- transform -->
[all …]
/external/eigen/Eigen/src/Geometry/
DTransform.h19 template<typename Transform>
24 Dim = Transform::Dim,
25 HDim = Transform::HDim,
26 Mode = Transform::Mode,
67 struct traits<Transform<_Scalar,_Dim,_Mode,_Options> >
88 * \class Transform
108 * this class you have to think a Transform object as its internal
123 * However, unlike a plain matrix, the Transform class provides many features
125 * with any other transformations (Transform,Translation,RotationBase,DiagonalMatrix)
126 * and can be directly used to transform implicit homogeneous vectors. All these
[all …]

12345678910>>...400