Searched refs:outBounds (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/libs/hwui/
H A DRevealClip.h50 void getBounds(Rect* outBounds) const {
51 outBounds->set(mX - mRadius, mY - mRadius,
/frameworks/base/core/java/android/view/
H A DWindowManagerInternal.java162 * @param outBounds The frame to populate.
164 public abstract void getWindowFrame(IBinder token, Rect outBounds); argument
/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.java216 public void getBoundsInParent(Object info, Rect outBounds); argument
218 public void getBoundsInScreen(Object info, Rect outBounds); argument
351 public void getBoundsInParent(Object info, Rect outBounds) { argument
356 public void getBoundsInScreen(Object info, Rect outBounds) { argument
774 public void getBoundsInParent(Object info, Rect outBounds) { argument
775 AccessibilityNodeInfoCompatIcs.getBoundsInParent(info, outBounds);
779 public void getBoundsInScreen(Object info, Rect outBounds) { argument
780 AccessibilityNodeInfoCompatIcs.getBoundsInScreen(info, outBounds);
1960 * @param outBounds The output node bounds.
1962 public void getBoundsInParent(Rect outBounds) { argument
1986 getBoundsInScreen(Rect outBounds) argument
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityWindowInfo.java214 * @param outBounds The out window bounds.
216 public void getBoundsInScreen(Rect outBounds) { argument
217 outBounds.set(mBoundsInScreen);
H A DAccessibilityNodeInfo.java1411 * @param outBounds The output node bounds.
1413 public void getBoundsInParent(Rect outBounds) { argument
1414 outBounds.set(mBoundsInParent.left, mBoundsInParent.top,
1438 * @param outBounds The output node bounds.
1440 public void getBoundsInScreen(Rect outBounds) { argument
1441 outBounds.set(mBoundsInScreen.left, mBoundsInScreen.top,
/frameworks/base/libs/hwui/renderthread/
H A DCanvasContext.cpp235 Rect outBounds; local
236 status |= mCanvas->drawRenderNode(mRootRenderNode.get(), outBounds);
/frameworks/base/services/core/java/com/android/server/wm/
H A DAccessibilityController.java1122 private void computeWindowBoundsInScreen(WindowState windowState, Rect outBounds) { argument
1140 outBounds.set((int) windowFrame.left, (int) windowFrame.top,
H A DWindowManagerService.java11733 public void getWindowFrame(IBinder token, Rect outBounds) { argument
11737 outBounds.set(windowState.mFrame);
11739 outBounds.setEmpty();
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java772 * @param outBounds The output to which to write the bounds.
774 boolean getWindowBounds(int windowId, Rect outBounds) { argument
782 mWindowManagerService.getWindowFrame(token, outBounds);
783 if (!outBounds.isEmpty()) {
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStackSupervisor.java3870 void getBounds(Point outBounds) { argument
3873 mActivityDisplay.getBounds(outBounds);
3875 outBounds.set(0, 0);

Completed in 236 milliseconds