Home
last modified time | relevance | path

Searched refs:outLocation (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DTouchExplorer.java1062 private int computeClickLocation(Point outLocation) { in computeClickLocation() argument
1066 outLocation.x = (int) lastExploreEvent.getX(lastExplorePointerIndex); in computeClickLocation()
1067 outLocation.y = (int) lastExploreEvent.getY(lastExplorePointerIndex); in computeClickLocation()
1070 if (mAms.getAccessibilityFocusClickPointInScreen(outLocation)) { in computeClickLocation()
1077 if (mAms.getAccessibilityFocusClickPointInScreen(outLocation)) { in computeClickLocation()
/frameworks/base/core/java/android/view/
DView.java22507 public void getLocationOnScreen(@Size(2) int[] outLocation) { in getLocationOnScreen() argument
22508 getLocationInWindow(outLocation); in getLocationOnScreen()
22512 outLocation[0] += info.mWindowLeft; in getLocationOnScreen()
22513 outLocation[1] += info.mWindowTop; in getLocationOnScreen()
22524 public void getLocationInWindow(@Size(2) int[] outLocation) { in getLocationInWindow() argument
22525 if (outLocation == null || outLocation.length < 2) { in getLocationInWindow()
22529 outLocation[0] = 0; in getLocationInWindow()
22530 outLocation[1] = 0; in getLocationInWindow()
22532 transformFromViewToWindowSpace(outLocation); in getLocationInWindow()
DViewRootImpl.java6434 public void getLastTouchPoint(Point outLocation) {
6435 outLocation.x = (int) mLastTouchPoint.x;
6436 outLocation.y = (int) mLastTouchPoint.y;