Home
last modified time | relevance | path

Searched refs:transformToApply (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/view/
DViewGroup_Delegate.java112 Transformation transformToApply = null; in transformCanvas() local
119 transformToApply = transformType != Transformation.TYPE_IDENTITY ? t : null; in transformCanvas()
132 if (transformToApply != null || alpha < 1 || !childHasIdentityMatrix) { in transformCanvas()
133 if (transformToApply != null || !childHasIdentityMatrix) { in transformCanvas()
137 if (transformToApply != null) { in transformCanvas()
142 canvas.concat(transformToApply.getMatrix()); in transformCanvas()
/frameworks/base/core/java/android/view/
DView.java18780 Transformation transformToApply = null;
18790 transformToApply = parent.getChildTransformation();
18803 transformToApply = transformType != Transformation.TYPE_IDENTITY ? t : null;
18869 if (!drawingWithRenderNode || transformToApply != null) {
18890 if (transformToApply != null
18894 if (transformToApply != null || !childHasIdentityMatrix) {
18903 if (transformToApply != null) {
18906 renderNode.setAnimationMatrix(transformToApply.getMatrix());
18911 canvas.concat(transformToApply.getMatrix());
18917 float transformAlpha = transformToApply.getAlpha();