/frameworks/base/graphics/java/android/graphics/ |
D | YuvImage.java | 123 public boolean compressToJpeg(Rect rectangle, int quality, OutputStream stream) { in compressToJpeg() argument 125 if (!wholeImage.contains(rectangle)) { in compressToJpeg() 138 adjustRectangle(rectangle); in compressToJpeg() 139 int[] offsets = calculateOffsets(rectangle.left, rectangle.top); in compressToJpeg() 141 return nativeCompressToJpeg(mData, mFormat, rectangle.width(), in compressToJpeg() 142 rectangle.height(), offsets, mStrides, quality, stream, in compressToJpeg()
|
/frameworks/base/docs/html/guide/developing/tools/ |
D | hierarchy-viewer.jd | 42 also indicates the bounds of the element with a red rectangle. 72 …the normal bounds, the padding and the margin (as needed). The purple or green rectangle indicates 73 the normal bounds of the element (the height and width). The inner white or black rectangle indicat… 74 the content bounds, when padding is present. A black or white rectangle outside the normal purple/… 75 rectangle indicates any present margins. 76 (There are two colors for each rectangle, in order to provide the best contrast
|
/frameworks/base/core/java/android/view/ |
D | ViewParent.java | 209 public boolean requestChildRectangleOnScreen(View child, Rect rectangle, in requestChildRectangleOnScreen() argument
|
D | ViewRoot.java | 1560 boolean scrollToRectOrFocus(Rect rectangle, boolean immediate) { in scrollToRectOrFocus() argument 1594 rectangle = null; in scrollToRectOrFocus() 1597 + " rectangle=" + rectangle + " ci=" + ci in scrollToRectOrFocus() 1600 && rectangle == null) { in scrollToRectOrFocus() 1619 if (rectangle == null) { in scrollToRectOrFocus() 1632 mTempRect.set(rectangle); in scrollToRectOrFocus() 2941 public boolean requestChildRectangleOnScreen(View child, Rect rectangle, in requestChildRectangleOnScreen() argument 2943 return scrollToRectOrFocus(rectangle, immediate); in requestChildRectangleOnScreen()
|
D | View.java | 2581 public boolean requestRectangleOnScreen(Rect rectangle) { in requestRectangleOnScreen() argument 2582 return requestRectangleOnScreen(rectangle, false); in requestRectangleOnScreen() 2600 public boolean requestRectangleOnScreen(Rect rectangle, boolean immediate) { in requestRectangleOnScreen() argument 2606 rectangle, immediate); in requestRectangleOnScreen() 2610 rectangle.offset(child.getLeft(), child.getTop()); in requestRectangleOnScreen() 2611 rectangle.offset(-child.getScrollX(), -child.getScrollY()); in requestRectangleOnScreen()
|
D | ViewGroup.java | 486 public boolean requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) { in requestChildRectangleOnScreen() argument
|
/frameworks/base/docs/html/guide/tutorials/notepad/ |
D | notepad-extra-credit.jd | 57 <p>Hit the Resume button to let execution continue (yellow rectangle with a
|
/frameworks/base/docs/html/resources/tutorials/notepad/ |
D | notepad-extra-credit.jd | 57 <p>Hit the Resume button to let execution continue (yellow rectangle with a
|
/frameworks/base/core/java/android/widget/ |
D | HorizontalScrollView.java | 1280 public boolean requestChildRectangleOnScreen(View child, Rect rectangle, in requestChildRectangleOnScreen() argument 1283 rectangle.offset(child.getLeft() - child.getScrollX(), in requestChildRectangleOnScreen() 1286 return scrollToChildRect(rectangle, immediate); in requestChildRectangleOnScreen()
|
D | ScrollView.java | 1279 public boolean requestChildRectangleOnScreen(View child, Rect rectangle, in requestChildRectangleOnScreen() argument 1282 rectangle.offset(child.getLeft() - child.getScrollX(), in requestChildRectangleOnScreen() 1285 return scrollToChildRect(rectangle, immediate); in requestChildRectangleOnScreen()
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | declaring-layout.jd | 229 The geometry of a view is that of a rectangle. A view has a location, 238 coordinate of the rectangle representing the view. The latter returns the 239 top, or Y, coordinate of the rectangle representing the view. These methods 249 rectangle representing the view. For instance, calling {@link android.view.View#getRight()}
|
/frameworks/base/core/java/android/webkit/ |
D | WebTextView.java | 941 public boolean requestRectangleOnScreen(Rect rectangle) { in requestRectangleOnScreen() argument 945 return super.requestRectangleOnScreen(rectangle); in requestRectangleOnScreen()
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | drawable-resource.jd | 1437 android:shape=["rectangle" | "oval" | "line" | "ring"] > 1491 <tr><td>{@code "rectangle"}</td> 1492 <td>A rectangle that fills the containing View. This is the default shape.</td></tr> 1530 <dd>Creates rounded corners for the shape. Applies only when the shape is a rectangle. 1673 android:shape="rectangle">
|
/frameworks/base/docs/html/guide/developing/ |
D | debug-tasks.jd | 129 <dd>Flashes a momentary pink rectangle on any screen sections that are being
|
/frameworks/base/docs/html/sdk/ |
D | android-2.3.3.jd | 224 decode a rectangle region from an image. The API is particularly useful when an
|
D | OLD_RELEASENOTES.jd | 117 …drawables don't draw. Fading in the scroll/list view appears as a white rectangle. Generally do no…
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | 2d-graphics.jd | 290 rectangle in the bottom image identifies the region in which the contents of the View are allowed.
|
/frameworks/base/docs/html/guide/practices/ |
D | screens_support.jd | 369 as invalidating the rectangle from (10,10) to (100, 100), the system will
|