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

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DTouchExplorer.java1062 private int computeClickLocation(Point outLocation) { argument
1066 outLocation.x = (int) lastExploreEvent.getX(lastExplorePointerIndex);
1067 outLocation.y = (int) lastExploreEvent.getY(lastExplorePointerIndex);
1070 if (mAms.getAccessibilityFocusClickPointInScreen(outLocation)) {
1077 if (mAms.getAccessibilityFocusClickPointInScreen(outLocation)) {
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java6434 public void getLastTouchPoint(Point outLocation) { argument
6435 outLocation.x = (int) mLastTouchPoint.x;
6436 outLocation.y = (int) mLastTouchPoint.y;
H A DView.java22505 * @param outLocation an array of two integers in which to hold the coordinates
22507 public void getLocationOnScreen(@Size(2) int[] outLocation) { argument
22508 getLocationInWindow(outLocation);
22512 outLocation[0] += info.mWindowLeft;
22513 outLocation[1] += info.mWindowTop;
22522 * @param outLocation an array of two integers in which to hold the coordinates
22524 public void getLocationInWindow(@Size(2) int[] outLocation) { argument
22525 if (outLocation == null || outLocation.length < 2) {
22526 throw new IllegalArgumentException("outLocation mus
[all...]

Completed in 125 milliseconds