Searched defs:rect (Results 101 - 107 of 107) sorted by relevance

12345

/frameworks/av/media/libstagefright/
H A DACodec.cpp4822 OMX_CONFIG_RECTTYPE rect; local
4823 InitOMXParams(&rect);
4824 rect.nPortIndex = portIndex;
4830 &rect, sizeof(rect)) != OK) {
4831 rect.nLeft = 0;
4832 rect.nTop = 0;
4833 rect.nWidth = videoDef->nFrameWidth;
4834 rect.nHeight = videoDef->nFrameHeight;
4837 if (rect
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java5840 // in case the dirty rect extends outside the bounds of this container
5863 * @param rect A rectangle defined in descendant's coordinate space.
5865 public final void offsetDescendantRectToMyCoords(View descendant, Rect rect) { argument
5866 offsetRectBetweenParentAndChild(descendant, rect, true, false);
5873 * @param rect A rectangle defined in descendant's coordinate space.
5875 public final void offsetRectIntoDescendantCoords(View descendant, Rect rect) { argument
5876 offsetRectBetweenParentAndChild(descendant, rect, false, false);
5880 * Helper method that offsets a rect either from parent to descendant or
5883 void offsetRectBetweenParentAndChild(View descendant, Rect rect, argument
5899 rect
[all...]
H A DView.java6643 * @param outRect rect to populate with hotspot bounds
7343 * @param rect The rectangle to be mapped
7347 public void mapRectFromViewToScreenCoords(RectF rect, boolean clipToParent) { argument
7349 getMatrix().mapRect(rect);
7352 rect.offset(mLeft, mTop);
7358 rect.offset(-parentView.mScrollX, -parentView.mScrollY);
7361 rect.left = Math.max(rect.left, 0);
7362 rect.top = Math.max(rect
15552 transformRect(final Rect rect) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java2413 public boolean requestChildRectangleOnScreen(View child, Rect rect, boolean immediate) { argument
2414 return mLayout.requestChildRectangleOnScreen(this, child, rect, immediate);
4484 * @param outBounds A rect that will receive the bounds of the element including its
8733 * @param outBounds A rect that will receive the bounds of the element including its
8923 * to bring the given rect into view, within the padded area of the RecyclerView.</p>
8926 * @param rect The rectangle in the child's coordinates the child
8932 public boolean requestChildRectangleOnScreen(RecyclerView parent, View child, Rect rect, argument
8938 final int childLeft = child.getLeft() + rect.left - child.getScrollX();
8939 final int childTop = child.getTop() + rect.top - child.getScrollY();
8940 final int childRight = childLeft + rect
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2555 public boolean requestChildRectangleOnScreen(View child, Rect rect, boolean immediate) { argument
2556 return mLayout.requestChildRectangleOnScreen(this, child, rect, immediate);
4637 * @param outBounds A rect that will receive the bounds of the element including its
9006 * @param outBounds A rect that will receive the bounds of the element including its
9196 * Returns the scroll amount that brings the given rect in child's coordinate system within
9200 * @param rect The rectangle in the child's coordinates the child
9205 * given rect into RV's padded area.
9208 Rect rect, boolean immediate) {
9214 final int childLeft = child.getLeft() + rect.left - child.getScrollX();
9215 final int childTop = child.getTop() + rect
9207 getChildRectangleOnScreenScrollAmount(RecyclerView parent, View child, Rect rect, boolean immediate) argument
9259 requestChildRectangleOnScreen(RecyclerView parent, View child, Rect rect, boolean immediate) argument
9278 requestChildRectangleOnScreen(RecyclerView parent, View child, Rect rect, boolean immediate, boolean focusedChildVisible) argument
[all...]
/frameworks/native/vulkan/include/vulkan/
H A Dvulkan.h2283 VkRect2D rect; member in struct:VkClearRect
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 8183 milliseconds

12345