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

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DTouchExplorer.java1066 private int computeClickLocation(Point outLocation) { argument
1070 outLocation.x = (int) lastExploreEvent.getX(lastExplorePointerIndex);
1071 outLocation.y = (int) lastExploreEvent.getY(lastExplorePointerIndex);
1074 if (mAms.getAccessibilityFocusClickPointInScreen(outLocation)) {
1081 if (mAms.getAccessibilityFocusClickPointInScreen(outLocation)) {
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java5637 public void getLastTouchPoint(Point outLocation) { argument
5638 outLocation.x = (int) mLastTouchPoint.x;
5639 outLocation.y = (int) mLastTouchPoint.y;
H A DView.java19241 * @param outLocation an array of two integers in which to hold the coordinates
19243 public void getLocationOnScreen(@Size(2) int[] outLocation) { argument
19244 getLocationInWindow(outLocation);
19248 outLocation[0] += info.mWindowLeft;
19249 outLocation[1] += info.mWindowTop;
19258 * @param outLocation an array of two integers in which to hold the coordinates
19260 public void getLocationInWindow(@Size(2) int[] outLocation) { argument
19261 if (outLocation == null || outLocation.length < 2) {
19262 throw new IllegalArgumentException("outLocation mus
[all...]

Completed in 172 milliseconds