Searched defs:outBounds (Results 1 - 6 of 6) 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/base/core/jni/android/graphics/
H A DTextLayoutCache.cpp358 Vector<jfloat>* const outAdvances, jfloat* outTotalAdvance, SkRect* outBounds,
454 outAdvances, outTotalAdvance, outBounds, outGlyphs, outPos);
478 outAdvances, outTotalAdvance, outBounds, outGlyphs, outPos);
675 Vector<jfloat>* const outAdvances, jfloat* outTotalAdvance, SkRect* outBounds,
762 outBounds->join(xpos + metrics.fLeft, ypos + metrics.fTop,
356 computeValues(const SkPaint* paint, const UChar* chars, size_t start, size_t count, size_t contextCount, int dirFlags, Vector<jfloat>* const outAdvances, jfloat* outTotalAdvance, SkRect* outBounds, Vector<jchar>* const outGlyphs, Vector<jfloat>* const outPos) argument
673 computeRunValues(const SkPaint* paint, const UChar* contextChars, size_t start, size_t count, size_t contextCount, bool isRTL, Vector<jfloat>* const outAdvances, jfloat* outTotalAdvance, SkRect* outBounds, Vector<jchar>* const outGlyphs, Vector<jfloat>* const outPos) argument
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java61 public void getBoundsInParent(Object info, Rect outBounds); argument
63 public void getBoundsInScreen(Object info, Rect outBounds); argument
151 public void getBoundsInParent(Object info, Rect outBounds) { argument
156 public void getBoundsInScreen(Object info, Rect outBounds) { argument
463 public void getBoundsInParent(Object info, Rect outBounds) { argument
464 AccessibilityNodeInfoCompatIcs.getBoundsInParent(info, outBounds);
468 public void getBoundsInScreen(Object info, Rect outBounds) { argument
469 AccessibilityNodeInfoCompatIcs.getBoundsInScreen(info, outBounds);
1435 * @param outBounds The output node bounds.
1437 public void getBoundsInParent(Rect outBounds) { argument
1461 getBoundsInScreen(Rect outBounds) argument
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java991 * @param outBounds The output node bounds.
993 public void getBoundsInParent(Rect outBounds) { argument
994 outBounds.set(mBoundsInParent.left, mBoundsInParent.top,
1018 * @param outBounds The output node bounds.
1020 public void getBoundsInScreen(Rect outBounds) { argument
1021 outBounds.set(mBoundsInScreen.left, mBoundsInScreen.top,
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java688 * @param outBounds The output to which to write the focus bounds.
692 boolean getAccessibilityFocusBoundsInActiveWindow(Rect outBounds) { argument
712 focus.getBoundsInScreen(outBounds);
716 outBounds.offset((int) -spec.offsetX, (int) -spec.offsetY);
717 outBounds.scale(1 / spec.scale);
723 outBounds.intersect(windowBounds);
726 outBounds.intersect(0, 0, mTempPoint.x, mTempPoint.y);
737 * @param outBounds The output to which to write the bounds.
739 boolean getActiveWindowBounds(Rect outBounds) { argument
749 mWindowManagerService.getWindowFrame(token, outBounds);
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java3105 public void getWindowFrame(IBinder token, Rect outBounds) { argument
3113 outBounds.set(windowState.mFrame);
3115 outBounds.setEmpty();

Completed in 195 milliseconds