Home
last modified time | relevance | path

Searched refs:transform (Results 1 – 12 of 12) 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_wm.js17 import {transform, nanos_to_string, get_visible_chip} from './transform.js'
42 return transform({
57 return transform({
68 return transform({
79 return transform({
90 return transform({
101 return transform({
112 return transform({
123 return transform({
139 return transform({
[all …]
Dtransform_sf.js17 import {transform, nanos_to_string, get_visible_chip} from './transform.js'
104 result.transform = layer.transform;
105 result.transform.tx = tx;
106 result.transform.ty = ty;
181 return transform({
201 transform: {dsdx:1, dtdx:0, dsdy:0, dtdy:1},
250 return transform({
271 return transform({
284 var r = transform({
Dtransform.js17 function transform({obj, kind, name, children, timestamp, rect, bounds, highlight, rects_transform,… function
21 function handle_children(arg, transform) { argument
30 return transform ? childs.map(transformFunc) : childs;
158 export {transform, transform_json, 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/
Dyarn.lock433 babel-plugin-transform-async-to-generator@^6.22.0:
435 …solved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-tran…
441 babel-plugin-transform-es2015-arrow-functions@^6.22.0:
443 …lved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-tr…
447 babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
449 … "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin…
453 babel-plugin-transform-es2015-block-scoping@^6.23.0:
455 …olved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-tra…
463 babel-plugin-transform-es2015-classes@^6.23.0:
465 …resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transf…
[all …]
/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/vndk/tools/header-checker/src/utils/
Dstring_utils.cpp93 std::transform(value.begin(), value.end(), value.begin(), std::tolower); in ParseBool()
/development/samples/ApiDemos/src/com/example/android/apis/animation/
DPathAnimations.java228 sTraversalPath.transform(scale, mPath); in onLayout()