Searched defs:mTempLoc (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/transition/
H A DExplode.java46 private int[] mTempLoc = new int[2]; field in class:Explode
59 view.getLocationOnScreen(mTempLoc);
60 int left = mTempLoc[0];
61 int top = mTempLoc[1];
88 calculateOut(sceneRoot, bounds, mTempLoc);
89 float startX = endX + mTempLoc[0];
90 float startY = endY + mTempLoc[1];
117 calculateOut(sceneRoot, bounds, mTempLoc);
118 endX += mTempLoc[0];
119 endY += mTempLoc[
[all...]
/frameworks/support/transition/src/android/support/transition/
H A DExplode.java47 private int[] mTempLoc = new int[2]; field in class:Explode
60 view.getLocationOnScreen(mTempLoc);
61 int left = mTempLoc[0];
62 int top = mTempLoc[1];
89 calculateOut(sceneRoot, bounds, mTempLoc);
90 float startX = endX + mTempLoc[0];
91 float startY = endY + mTempLoc[1];
118 calculateOut(sceneRoot, bounds, mTempLoc);
119 endX += mTempLoc[0];
120 endY += mTempLoc[
[all...]

Completed in 222 milliseconds