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

/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java60 public static void getBoundsInParent(Object info, Rect outBounds) { argument
61 ((AccessibilityNodeInfo) info).getBoundsInParent(outBounds);
64 public static void getBoundsInScreen(Object info, Rect outBounds) { argument
65 ((AccessibilityNodeInfo) info).getBoundsInScreen(outBounds);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java48 public void getBoundsInParent(Object info, Rect outBounds); argument
50 public void getBoundsInScreen(Object info, Rect outBounds); argument
112 public void getBoundsInParent(Object info, Rect outBounds) { argument
116 public void getBoundsInScreen(Object info, Rect outBounds) { argument
310 public void getBoundsInParent(Object info, Rect outBounds) { argument
311 AccessibilityNodeInfoCompatIcs.getBoundsInParent(info, outBounds);
315 public void getBoundsInScreen(Object info, Rect outBounds) { argument
316 AccessibilityNodeInfoCompatIcs.getBoundsInScreen(info, outBounds);
750 * @param outBounds The output node bounds.
752 public void getBoundsInParent(Rect outBounds) { argument
776 getBoundsInScreen(Rect outBounds) argument
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java325 * @param outBounds The output node bounds.
327 public void getBoundsInParent(Rect outBounds) { argument
328 outBounds.set(mBoundsInParent.left, mBoundsInParent.top,
352 * @param outBounds The output node bounds.
354 public void getBoundsInScreen(Rect outBounds) { argument
355 outBounds.set(mBoundsInScreen.left, mBoundsInScreen.top,

Completed in 30 milliseconds