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.java1079 private int computeClickLocation(Point outLocation) { in computeClickLocation() argument
1083 outLocation.x = (int) lastExploreEvent.getX(lastExplorePointerIndex); in computeClickLocation()
1084 outLocation.y = (int) lastExploreEvent.getY(lastExplorePointerIndex); in computeClickLocation()
1087 if (mAms.getAccessibilityFocusClickPointInScreen(outLocation)) { in computeClickLocation()
1094 if (mAms.getAccessibilityFocusClickPointInScreen(outLocation)) { in computeClickLocation()
/frameworks/base/core/java/android/view/
DView.java21432 public void getLocationOnScreen(@Size(2) int[] outLocation) {
21433 getLocationInWindow(outLocation);
21437 outLocation[0] += info.mWindowLeft;
21438 outLocation[1] += info.mWindowTop;
21449 public void getLocationInWindow(@Size(2) int[] outLocation) {
21450 if (outLocation == null || outLocation.length < 2) {
21454 outLocation[0] = 0;
21455 outLocation[1] = 0;
21457 transformFromViewToWindowSpace(outLocation);
DViewRootImpl.java6035 public void getLastTouchPoint(Point outLocation) { in getLastTouchPoint() argument
6036 outLocation.x = (int) mLastTouchPoint.x; in getLastTouchPoint()
6037 outLocation.y = (int) mLastTouchPoint.y; in getLastTouchPoint()