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

/frameworks/base/core/java/android/transition/
H A DChangeBounds.java162 int[] tempLocation = new int[2]; field in class:ChangeBounds
240 values.view.getLocationInWindow(tempLocation);
241 values.values.put(PROPNAME_WINDOW_X, tempLocation[0]);
242 values.values.put(PROPNAME_WINDOW_Y, tempLocation[1]);
436 sceneRoot.getLocationInWindow(tempLocation);
437 int startX = (Integer) startValues.values.get(PROPNAME_WINDOW_X) - tempLocation[0];
438 int startY = (Integer) startValues.values.get(PROPNAME_WINDOW_Y) - tempLocation[1];
439 int endX = (Integer) endValues.values.get(PROPNAME_WINDOW_X) - tempLocation[0];
440 int endY = (Integer) endValues.values.get(PROPNAME_WINDOW_Y) - tempLocation[1];

Completed in 251 milliseconds