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

/frameworks/base/core/java/android/view/
H A DGravity.java119 * @param outRect Receives the computed frame of the object in its
123 Rect outRect) {
124 apply(gravity, w, h, container, 0, 0, outRect);
145 * @param outRect Receives the computed frame of the object in its
149 int xAdj, int yAdj, Rect outRect) {
152 outRect.left = container.left
154 outRect.right = outRect.left + w;
157 if (outRect.left < container.left) {
158 outRect
122 apply(int gravity, int w, int h, Rect container, Rect outRect) argument
148 apply(int gravity, int w, int h, Rect container, int xAdj, int yAdj, Rect outRect) argument
[all...]
H A DView.java3933 * @param outRect Filled in with the visible display frame. If the view
3936 public void getWindowVisibleDisplayFrame(Rect outRect) { argument
3939 mAttachInfo.mSession.getDisplayFrame(mAttachInfo.mWindow, outRect);
3947 outRect.left += insets.left;
3948 outRect.top += insets.top;
3949 outRect.right -= insets.right;
3950 outRect.bottom -= insets.bottom;
3954 outRect.set(0, 0, d.getWidth(), d.getHeight());
4679 * @param outRect The (scrolled) drawing bounds of the view.
4681 public void getDrawingRect(Rect outRect) { argument
4755 getHitRect(Rect outRect) argument
[all...]
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java364 * @param outRect the output parameter which will contain the result.
367 Rect outRect) {
373 outRect.set(xOffset, 0, xOffset + portraitHeight, portraitWidth);
376 outRect.set(xOffset, 0, xOffset + portraitWidth, portraitHeight);
366 updateCompatibleScreenFrame(DisplayMetrics dm, int orientation, Rect outRect) argument

Completed in 83 milliseconds