Searched refs:right (Results 151 - 175 of 328) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/widget/
H A DFrameLayout.java165 mForegroundPaddingRight = padding.right;
248 mForegroundPaddingRight = padding.right;
387 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
391 final int parentRight = right - left - getPaddingRightWithForeground();
H A DCompoundButton.java272 int right = isLayoutRtl() ? getWidth() : drawableWidth;
274 buttonDrawable.setBounds(left, top, right, bottom);
H A DScrollBarDrawable.java114 if (canvas.quickReject(r.left, r.top, r.right, r.bottom, Canvas.EdgeType.AA)) {
168 bounds.right, bounds.top + offset + length);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuView.java367 childLayoutParams.right = (int) (itemLeft + itemWidth);
388 // Last child on each row should extend to very right edge
390 childLayoutParams.right = menuWidth;
439 child.layout(childLayoutParams.left, childLayoutParams.top, childLayoutParams.right,
744 * Layout parameters specific to IconMenuView (stores the left, top, right, bottom from the
749 int left, top, right, bottom; field in class:IconMenuView.LayoutParams
H A DIconMenuItemView.java238 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
239 super.onLayout(changed, left, top, right, bottom);
301 * Shortcut has changed and we're showing it right now, need to
/frameworks/base/libs/hwui/
H A DMatrix.h81 void loadOrtho(float left, float right, float bottom, float top, float near, float far);
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp811 GLfloat left, GLfloat right,
816 if (cmpf(left,right) ||
825 const GLfloat r_width = reciprocalf(right - left);
830 const GLfloat A = mul2f((right + left) * r_width);
853 GLfloat left, GLfloat right,
858 if (cmpf(left,right) ||
865 const GLfloat r_width = reciprocalf(right - left);
871 const GLfloat tx = -(right + left) * r_width;
995 GLfloat left, GLfloat right,
1000 frustumf(left, right, botto
810 frustumf( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar, ogles_context_t* c) argument
852 orthof( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar, ogles_context_t* c) argument
994 glFrustumf( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) argument
1003 glFrustumx( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) argument
1015 glOrthof( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) argument
1024 glOrthox( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) argument
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcRects.cpp37 * [left, top, right, bottom]
45 * sourceCrop: [left, top, right, bottom]
70 * specified as follows, with the right and bottom coordinates being
73 * [left, top, right, bottom]
396 rect.sourceDim = HwcTestDim(rect.displayFrame.right
402 rect.sourceCrop.right = rect.sourceDim.width();
491 || ((uint32_t) rect.sourceCrop.right > rect.sourceDim.width())
498 || (rect.displayFrame.right > width)
558 testPrintE(" [left, top, right, bottom]");
567 testPrintE(" sourceCrop: [left, top, right, botto
[all...]
H A DhwcStress.cpp443 layer->sourceCrop.right = layer->sourceCrop.left
449 layer->displayFrame.right = layer->displayFrame.left
462 int sourceWidth = layer->sourceCrop.right
468 layer->displayFrame.right = layer->displayFrame.left
/frameworks/rs/scriptc/
H A Drs_graphics.rsh390 * Any of left, right, top, bottom could be NULL
393 rsgMeasureText(const char *, int *left, int *right, int *top, int *bottom);
398 rsgMeasureText(rs_allocation, int *left, int *right, int *top, int *bottom);
H A Drs_matrix.rsh236 * @param right
243 rsMatrixLoadOrtho(rs_matrix4x4 *m, float left, float right, float bottom, float top, float near, float far);
250 * @param right
257 rsMatrixLoadFrustum(rs_matrix4x4 *m, float left, float right, float bottom, float top, float near, float far);
/frameworks/support/renderscript/v8/rs_support/scriptc/
H A Drs_graphics.rsh390 * Any of left, right, top, bottom could be NULL
393 rsgMeasureText(const char *, int *left, int *right, int *top, int *bottom);
398 rsgMeasureText(rs_allocation, int *left, int *right, int *top, int *bottom);
H A Drs_matrix.rsh236 * @param right
243 rsMatrixLoadOrtho(rs_matrix4x4 *m, float left, float right, float bottom, float top, float near, float far);
250 * @param right
257 rsMatrixLoadFrustum(rs_matrix4x4 *m, float left, float right, float bottom, float top, float near, float far);
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiObject.java217 return getInteractionController().swipe(rect.right - SWIPE_MARGIN_LIMIT,
238 rect.centerY(), rect.right - SWIPE_MARGIN_LIMIT, rect.centerY(), steps);
360 * Long clicks bottom and right corner of the UI element
371 return getInteractionController().longTap(rect.right - 5, rect.bottom - 5);
375 * Clicks the bottom and right corner of the UI element
386 return getInteractionController().click(rect.right - 5, rect.bottom - 5);
/frameworks/base/opengl/java/android/opengl/
H A DGLES11Ext.java347 // C function void glFrustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
351 int right,
578 // C function void glOrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
582 int right,
946 // C function void glFrustumfOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
950 float right,
957 // C function void glOrthofOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
961 float right,
349 glFrustumxOES( int left, int right, int bottom, int top, int zNear, int zFar ) argument
580 glOrthoxOES( int left, int right, int bottom, int top, int zNear, int zFar ) argument
948 glFrustumfOES( float left, float right, float bottom, float top, float zNear, float zFar ) argument
959 glOrthofOES( float left, float right, float bottom, float top, float zNear, float zFar ) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DNotificationLinearLayout.java88 child.getRight() - padding.right, childBottom + glowHeight);
/frameworks/base/core/java/android/text/
H A DTextUtils.java1105 int right = len;
1109 right = len - mt.breakText(len, false, avail);
1113 right = len - mt.breakText(len, false, avail / 2);
1114 avail -= mt.measure(right, len);
1115 left = mt.breakText(right, true, avail);
1119 callback.ellipsized(left, right);
1125 int remaining = len - (right - left);
1130 for (int i = left; i < right; i++) {
1150 sb.append(buf, right, len - right);
[all...]
/frameworks/av/include/media/
H A DAudioTrack.h282 * left and right volumes. Levels must be >= 0.0 and <= 1.0.
284 status_t setVolume(float left, float right);
285 void getVolume(float* left, float* right) const;
/frameworks/base/core/java/android/gesture/
H A DGestureStroke.java68 bx.right = p.x;
89 boundingBox = new RectF(bbx.left, bbx.top, bbx.right, bbx.bottom);
/frameworks/base/core/java/android/text/method/
H A DLinkMovementMethod.java83 protected boolean right(TextView widget, Spannable buffer) { method in class:LinkMovementMethod
88 return super.right(widget, buffer);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java785 mBoundsInParent.right, mBoundsInParent.bottom);
802 mBoundsInParent.set(bounds.left, bounds.top, bounds.right, bounds.bottom);
812 mBoundsInScreen.right, mBoundsInScreen.bottom);
829 mBoundsInScreen.set(bounds.left, bounds.top, bounds.right, bounds.bottom);
1595 parcel.writeInt(mBoundsInParent.right);
1600 parcel.writeInt(mBoundsInScreen.right);
1671 mBoundsInParent.right = parcel.readInt();
1676 mBoundsInScreen.right = parcel.readInt();
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DProfiledWebView.java217 int right = getWebViewClassic().tileProfilingGetInt(frame, tile, "right");
226 data.frames[frame][tile] = data.new TileData(left, top, right, bottom,
/frameworks/native/libs/ui/
H A DGraphicBuffer.cpp166 if (rect.left < 0 || rect.right > this->width ||
169 rect.left, rect.top, rect.right, rect.bottom,
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES10.spec40 void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
41 void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
73 void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
74 void glOrthox ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
/frameworks/rs/
H A DrsFont.h56 int32_t right; member in struct:android::renderscript::Font::Rect
60 right = r;

Completed in 240 milliseconds

1234567891011>>