Home
last modified time | relevance | path

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

/development/tools/winscope/src/
Dmatrix_utils.js28 function is_proto_2(transform) { argument
39 var propertyNames = Object.getOwnPropertyNames(transform);
43 function is_simple_transform(transform) { argument
44 transform = transform || {};
45 if (is_proto_2(transform)) {
48 return is_type_flag_clear(transform, ROT_INVALID_VAL|SCALE_VAL);
57 function format_transform_type(transform) { argument
58 if (is_proto_2(transform)) {
62 if (is_type_flag_clear(transform, SCALE_VAL | ROTATE_VAL | TRANSLATE_VAL)) {
67 if (is_type_flag_set(transform, SCALE_VAL)) {
[all …]
Dtransform_ime.js1 import {nanos_to_string, transform} from './transform.js'
4 return transform({
15 return transform({
28 return transform({
40 return transform({
51 return transform({
64 return transform({
76 return transform({
87 return transform({
100 return transform({
Dtransform_sys_ui.js17 import { transform, nanos_to_string, get_visible_chip } from './transform.js'
20 return transform({
29 return transform({
40 return transform({
53 return transform({
Dtransform_launcher.js17 import { transform, nanos_to_string, get_visible_chip } from './transform.js'
20 return transform({
29 return transform({
42 return transform({
Dtransform_wl.js17 import {transform, nanos_to_string, get_visible_chip} from './transform.js'
34 return transform({
53 return transform({
70 return transform({
83 return transform({
96 var r = transform({
Dtransform_sf.js18 import {transform, nanos_to_string, get_visible_chip} from './transform.js';
66 result.transform = layer.transform;
67 result.transform.tx = tx;
68 result.transform.ty = ty;
103 const transformedLayer = transform({
131 transform: {dsdx: 1, dtdx: 0, dsdy: 0, dtdy: 1},
190 return transform({
212 return transform({
228 const r = transform({
Dsf_visibility.js76 function is_transform_invalid(transform) { argument
77 return !transform || (transform.dsdx * transform.dtdy ===
78 transform.dtdx * transform.dsdy); // determinant of transform
179 if (is_transform_invalid(layer.transform)) {
213 if (!is_simple_rotation(outerLayer.transform) ||
214 !is_simple_rotation(innerLayer.transform)) {
225 const transformMatrix = layer.transform;
Ddecode.js270 transform: WindowManagerTrace.fromProto, property
281 transform: transformLayersTrace, property
292 transform: transform_wayland_trace, property
303 transform: (decoded) => transformLayers(true /* includesCompositionState*/, decoded),
314 transform: WindowManagerDump.fromProto, property
325 transform: transform_wl_outputstate, property
345 transform: transform_transaction_trace, property
356 transform: transformProtolog, property
367 transform: transform_sysui_trace, property
378 transform: transform_launcher_trace, property
[all …]
Dtransform.js25 function transform({ function
45 function handleChildren(arg, transform) { argument
55 return transform ? childs.map(transformFunc) : childs;
170 transform(transformOptions = { method in ObjectTransformer
386 export {transform, ObjectTransformer, nanos_to_string, get_visible_chip};
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
DGLShape.java72 public void animateTransform(M4 transform) { in animateTransform() argument
73 mAnimateTransform = transform; in animateTransform()
76 transform = mTransform.multiply(transform); in animateTransform()
81 mWorld.transformVertex(vertex, transform); in animateTransform()
DGLVertex.java73 public void update(IntBuffer vertexBuffer, M4 transform) { in update() argument
77 if (transform == null) { in update()
83 transform.multiply(this, temp); in update()
DGLWorld.java67 public void transformVertex(GLVertex vertex, M4 transform) { in transformVertex() argument
68 vertex.update(mVertexBuffer, transform); in transformVertex()
/development/tools/winscope/spec/
DObjectTransformerSpec.js63 .transform();
85 .transform();
119 .transform();
145 .transform();
180 .transform();
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
DUrlImageBinder.java40 final String url = mTransformation.transform(cursor, columnIndex); in bind()
DAdapters.java362 public abstract String transform(Cursor cursor, int columnIndex); in transform() method in Adapters.CursorTransformation
1004 public String transform(Cursor cursor, int columnIndex) { in transform() method in Adapters.IdentityTransformation
1057 public String transform(Cursor cursor, int columnIndex) { in transform() method in Adapters.ExpressionTransformation
1133 public String transform(Cursor cursor, int columnIndex) { in transform() method in Adapters.MapTransformation
1162 final String text = mTransformation.transform(cursor, columnIndex); in bind()
1197 final String text = mTransformation.transform(cursor, columnIndex); in bind()
1215 mTransformation.transform(cursor, columnIndex))); in bind()
/development/tools/winscope/
Dyarn.lock349 "@babel/plugin-transform-parameters" "^7.13.0"
468 "@babel/plugin-transform-arrow-functions@^7.13.0":
470 …resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-…
475 "@babel/plugin-transform-async-to-generator@^7.13.0":
477 …resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transfo…
484 "@babel/plugin-transform-block-scoped-functions@^7.12.13":
486 …solved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-trans…
491 "@babel/plugin-transform-block-scoping@^7.12.13":
493 …resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-bl…
498 "@babel/plugin-transform-classes@^7.13.0":
[all …]
/development/vndk/tools/header-checker/src/utils/
Dstring_utils.cpp95 std::transform(value.begin(), value.end(), value.begin(), std::tolower); in ParseBool()
/development/samples/browseable/HdrViewfinder/src/rs/
Dhdr_merge.rscript59 // Convert YUV to RGB, JFIF transform with fixed-point math
/development/samples/ApiDemos/src/com/example/android/apis/animation/
DPathAnimations.java228 sTraversalPath.transform(scale, mPath); in onLayout()