OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mLocationOnScreen
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Dialer/src/com/android/dialer/list/
DragDropController.java
20
private final int[]
mLocationOnScreen
= new int[2];
44
v.getLocationOnScreen(
mLocationOnScreen
);
45
screenX = x +
mLocationOnScreen
[0];
46
screenY = y +
mLocationOnScreen
[1];
61
v.getLocationOnScreen(
mLocationOnScreen
);
62
final int screenX = x +
mLocationOnScreen
[0];
63
final int screenY = y +
mLocationOnScreen
[1];
PhoneFavoriteListView.java
66
final int[]
mLocationOnScreen
= new int[2];
241
tileView.getLocationOnScreen(
mLocationOnScreen
);
242
mDragShadowLeft =
mLocationOnScreen
[0];
243
mDragShadowTop =
mLocationOnScreen
[1];
253
mDragShadowParent.getLocationOnScreen(
mLocationOnScreen
);
254
mDragShadowLeft -=
mLocationOnScreen
[0];
255
mDragShadowTop -=
mLocationOnScreen
[1];
268
mDragShadowParent.getLocationOnScreen(
mLocationOnScreen
);
269
mDragShadowLeft = x - mTouchOffsetToChildLeft -
mLocationOnScreen
[0];
270
mDragShadowTop = y - mTouchOffsetToChildTop -
mLocationOnScreen
[1]
[
all
...]
Completed in 72 milliseconds