OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:hostviewlocation
(Results
1 - 2
of
2
) sorted by null
/frameworks/support/transition/ics/android/support/transition/
ViewOverlay.java
217
int[]
hostViewLocation
= new int[2];
219
mHostView.getLocationOnScreen(
hostViewLocation
);
220
ViewCompat.offsetLeftAndRight(child, parentLocation[0] -
hostViewLocation
[0]);
221
ViewCompat.offsetTopAndBottom(child, parentLocation[1] -
hostViewLocation
[1]);
266
int[]
hostViewLocation
= new int[2];
269
mRequestingView.getLocationOnScreen(
hostViewLocation
);
270
canvas.translate(
hostViewLocation
[0] - contentViewLocation[0],
271
hostViewLocation
[1] - contentViewLocation[1]);
297
int[]
hostViewLocation
= new int[2];
300
mRequestingView.getLocationOnScreen(
hostViewLocation
);
[
all
...]
/frameworks/base/core/java/android/view/
ViewOverlay.java
189
int[]
hostViewLocation
= new int[2];
191
mHostView.getLocationOnScreen(
hostViewLocation
);
192
child.offsetLeftAndRight(parentLocation[0] -
hostViewLocation
[0]);
193
child.offsetTopAndBottom(parentLocation[1] -
hostViewLocation
[1]);
Completed in 173 milliseconds