Searched refs:left (Results 201 - 225 of 362) sorted by relevance

1234567891011>>

/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.h54 int32_t left; member in struct:android::renderscript::Font::Rect
59 left = l;
/frameworks/support/renderscript/v8/rs_support/
H A DrsRuntime.h131 void rsrMatrixLoadOrtho(rs_matrix4x4 *m, float left, float right,
133 void rsrMatrixLoadFrustum(rs_matrix4x4 *m, float left, float right,
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiScrollable.java301 * the right to left. Caution is required on devices configured with right to left languages
332 // scroll horizontally: swipe right -> left
333 // TODO: Assuming device is not in right to left language
336 upX = rect.left + swipeAreaAdjust;
364 * the left to right. Caution is required on devices configured with right to left languages
397 // scroll horizontally: swipe left -> right
398 // TODO: Assuming device is not in right to left language
399 downX = rect.left
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGLFrame.java283 setNativeViewport(rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top);
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java60 * @param lhs The float array that holds the left-hand-side matrix.
83 * @param lhsMat The float array that holds the left-hand-side matrix.
255 * @param left
263 float left, float right, float bottom, float top,
265 if (left == right) {
266 throw new IllegalArgumentException("left == right");
275 final float r_width = 1.0f / (right - left);
281 final float tx = -(right + left) * r_width;
308 * @param left
316 float left, floa
262 orthoM(float[] m, int mOffset, float left, float right, float bottom, float top, float near, float far) argument
315 frustumM(float[] m, int offset, float left, float right, float bottom, float top, float near, float far) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java381 rect.left = (int) (pos[0] * appScale + 0.5f);
461 rect.left = (int) (pos[0] * appScale + 0.5f);
593 // been disabled from the outset, but was left open by accident.
614 rect.left = (int) (pos[0] * appScale + 0.5f);
1356 public ViewPaddingAction(int viewId, int left, int top, int right, int bottom) { argument
1358 this.left = left;
1366 left = parcel.readInt();
1375 dest.writeInt(left);
1386 target.setPadding(left, to
1393 int left, top, right, bottom; field in class:RemoteViews.ViewPaddingAction
1780 setTextViewCompoundDrawables(int viewId, int left, int top, int right, int bottom) argument
2037 setViewPadding(int viewId, int left, int top, int right, int bottom) argument
[all...]
H A DTextView.java1524 * Returns the left padding of the view, plus space for the left
1646 * Returns the total left padding of the view, including the left
1696 * Sets the Drawables (if any) to appear to the left of, above,
1706 public void setCompoundDrawables(Drawable left, Drawable top, argument
1710 final boolean drawables = left != null || top != null
1740 if (dr.mDrawableLeft != left && dr.mDrawableLeft != null) {
1743 dr.mDrawableLeft = left;
1765 if (left !
1827 setCompoundDrawablesWithIntrinsicBounds(int left, int top, int right, int bottom) argument
1846 setCompoundDrawablesWithIntrinsicBounds(Drawable left, Drawable top, Drawable right, Drawable bottom) argument
2111 setPadding(int left, int top, int right, int bottom) argument
6319 onLayout(boolean changed, int left, int top, int right, int bottom) argument
[all...]
H A DListView.java674 View child = makeAndAddView(pos, nextTop, true, mListPadding.left, selected);
708 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected);
755 mListPadding.left, true);
816 sel = makeAndAddView(selectedPosition, selectedTop, true, mListPadding.left, true);
964 mListPadding.left, false);
970 mListPadding.left, true);
1025 sel = makeAndAddView(selectedPosition, newSel.getTop(), true, mListPadding.left,
1030 sel = makeAndAddView(selectedPosition, oldSel.getTop(), false, mListPadding.left,
1060 sel = makeAndAddView(selectedPosition, oldTop, true, mListPadding.left, true);
1145 widthSize = mListPadding.left
[all...]
H A DProgressBar.java996 invalidate(dirty.left + scrollX, dirty.top + scrollY,
1018 int left = 0;
1033 left = (w - width) / 2;
1034 right = left + width;
1044 int tempLeft = left;
1045 left = w - right;
1048 mIndeterminateDrawable.setBounds(left, top, right, bottom);
H A DAbsSeekBar.java48 * On key presses (right or left), the amount to increment/decrement the
308 final int left = isLayoutRtl() ? available - thumbPos : thumbPos;
309 thumb.setBounds(left, topBound, left + thumbWidth, bottomBound);
/frameworks/base/core/java/android/text/
H A DStaticLayout.java293 // intentionally left empty
779 int left = 0, right = len;
793 for (left = 0; left < right; left++) {
794 float w = widths[left + lineStart - widthStart];
803 ellipsisStart = left;
804 ellipsisCount = right - left;
H A DTextUtils.java1104 int left = 0;
1111 left = mt.breakText(len, true, avail);
1115 left = mt.breakText(right, true, avail);
1119 callback.ellipsized(left, right);
1125 int remaining = len - (right - left);
1128 buf[left++] = ellipsis.charAt(0);
1130 for (int i = left; i < right; i++) {
1148 sb.append(buf, 0, left);
1155 ssb.append(text, 0, left);
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp431 (x1 > mClip->right || y1 < mClip->top || x2 < mClip->left || y4 > mClip->bottom)) {
438 mBounds->left = fmin(mBounds->left, x1);
457 mBounds->left = fmin(mBounds->left, fmin(x1, fmin(x2, fmin(x3, x4))));
508 uint32_t paddedWidth = (uint32_t) (bounds.right - bounds.left) + 2 * radius;
516 int penX = radius - bounds.left;
688 // Stepping left and right away from the pixel
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java2877 // No left edge for double-tap zoom alignment
2883 int left = NO_LEFTEDGE;
2897 left = rect.left;
2901 return left;
2942 // pin the short document to the top/left of the screen
3039 return new Rect(contentToViewX(x.left), contentToViewY(x.top),
3052 This liberal calculation calls floor() for the top/left, and ceil() for
3081 viewInvalidate(r.left, r.top, r.right, r.bottom);
3136 mScrollOffset.set(mVisibleRect.left, mVisibleRec
5571 setFrame(int left, int top, int right, int bottom) argument
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DNativeWindowRenderer.cpp587 int left, top, right, bottom; local
588 if (meta->findRect(kKeyCropRect, &left, &top, &right, &bottom)) {
589 mWidth = right - left + 1;
/frameworks/base/core/java/android/app/
H A DMediaRouteButton.java378 final int left = getPaddingLeft();
385 final int drawLeft = left + (right - left - drawWidth) / 2;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuView.java351 // Start at the left
366 childLayoutParams.left = (int) itemLeft;
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
/frameworks/base/core/tests/coretests/src/android/accessibilityservice/
H A DInterrogationActivityTest.java109 assertEquals(0, bounds.left);
385 assertEquals(buttonBounds.left, sourceBounds.left);
/frameworks/base/media/jni/
H A Dandroid_media_Utils.cpp223 int32_t left, top, right, bottom; local
224 CHECK(msg->findRect(key, &left, &top, &right, &bottom));
230 StringPrintf("%s-left", key).c_str(),
231 left);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsHorizontalScrollView.java247 int left = mScrollX + paddingLeft;
248 int right = left + mRight - mLeft - mPaddingRight - paddingLeft;
257 left, right, top, bottom, mScrollX, mScrollY,
H A DRecentsVerticalScrollView.java256 int left = mScrollX + paddingLeft;
257 int right = left + mRight - mLeft - mPaddingRight - paddingLeft;
266 left, right, top, bottom, mScrollX, mScrollY,
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_reconstruct.h205 i32 left,
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp190 int32_t left, int32_t top, int32_t right, int32_t bottom) {
194 item->u.rectValue.mLeft = left;
238 int32_t *left, int32_t *top, int32_t *right, int32_t *bottom) const {
244 *left = item->u.rectValue.mLeft;

Completed in 5009 milliseconds

1234567891011>>