Searched refs:outLocation (Results 1 – 3 of 3) sorted by relevance
1079 private int computeClickLocation(Point outLocation) { in computeClickLocation() argument1083 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()
21432 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);
6035 public void getLastTouchPoint(Point outLocation) { in getLastTouchPoint() argument6036 outLocation.x = (int) mLastTouchPoint.x; in getLastTouchPoint()6037 outLocation.y = (int) mLastTouchPoint.y; in getLastTouchPoint()