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

/frameworks/base/core/java/android/widget/
H A DPopupWindow.java109 private int[] mDrawingLocation = new int[2]; field in class:PopupWindow
1111 anchor.getLocationInWindow(mDrawingLocation);
1112 p.x = mDrawingLocation[0] + xoff;
1113 p.y = mDrawingLocation[1] + anchorHeight + yoff;
1141 anchor.getLocationInWindow(mDrawingLocation);
1142 p.x = mDrawingLocation[0] + xoff;
1143 p.y = mDrawingLocation[1] + anchor.getHeight() + yoff;
1152 p.y = root.getHeight() - mDrawingLocation[1] + yoff;
1154 p.y = mDrawingLocation[1] + anchor.getHeight() + yoff;
1235 final int[] anchorPos = mDrawingLocation;
[all...]

Completed in 79 milliseconds