OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:contentviewlocation
(Results
1 - 1
of
1
) sorted by null
/frameworks/support/transition/ics/android/support/transition/
ViewOverlay.java
265
int[]
contentViewLocation
= new int[2];
268
mHostView.getLocationOnScreen(
contentViewLocation
);
270
canvas.translate(hostViewLocation[0] -
contentViewLocation
[0],
271
hostViewLocation[1] -
contentViewLocation
[1]);
296
int[]
contentViewLocation
= new int[2];
299
mHostView.getLocationOnScreen(
contentViewLocation
);
301
offset[0] = hostViewLocation[0] -
contentViewLocation
[0];
302
offset[1] = hostViewLocation[1] -
contentViewLocation
[1];
Completed in 44 milliseconds