Searched refs:thisVG (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
D | ViewGroup_Delegate.java | 46 /*package*/ static boolean drawChild(ViewGroup thisVG, Canvas canvas, View child, in drawChild() argument 48 if (child.getZ() > thisVG.getZ()) { in drawChild() 56 int restoreTo = transformCanvas(thisVG, canvas, child); in drawChild() 57 drawShadow(thisVG, canvas, child, outline); in drawChild() 61 return thisVG.drawChild_Original(canvas, child, drawingTime); in drawChild() 108 private static int transformCanvas(ViewGroup thisVG, Canvas canvas, View child) { in transformCanvas() argument 111 int flags = thisVG.mGroupFlags; in transformCanvas() 115 final Transformation t = thisVG.getChildTransformation(); in transformCanvas() 116 final boolean hasTransform = thisVG.getChildStaticTransformation(child, t); in transformCanvas()
|