Searched refs:left (Results 376 - 400 of 741) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/android/widget/
H A DSearchView.java379 public void onLayoutChange(View v, int left, int top, int right, int bottom,
830 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
831 super.onLayout(changed, left, top, right, bottom);
838 mSearchSrcTextViewBounds.left, 0, mSearchSrcTextViewBounds.right, bottom - top);
853 final int left = mTemp[0] - mTemp2[0];
854 rect.set(left , top, left + view.getWidth(), top + view.getHeight());
1105 // Next, check for left/right moves, which we use to "return" the
1109 // left key, at end if right key
1110 // TODO: Reverse left/righ
[all...]
H A DTextView.java413 // First reset "left" and "right" drawables to their initial values
418 // Use "start" drawable as "left" drawable if the "left" drawable was not defined
431 // JB-MR1+ normal case: "start" / "end" drawables are overriding "left" / "right"
1366 // This call will save the initial left/right drawables
1975 * Returns the left padding of the view, plus space for the left
2105 * Returns the total left padding of the view, including the left
2155 * Sets the Drawables (if any) to appear to the left o
2168 setCompoundDrawables(@ullable Drawable left, @Nullable Drawable top, @Nullable Drawable right, @Nullable Drawable bottom) argument
2308 setCompoundDrawablesWithIntrinsicBounds(@rawableRes int left, @DrawableRes int top, @DrawableRes int right, @DrawableRes int bottom) argument
2332 setCompoundDrawablesWithIntrinsicBounds(@ullable Drawable left, @Nullable Drawable top, @Nullable Drawable right, @Nullable Drawable bottom) argument
2740 setPadding(int left, int top, int right, int bottom) argument
7369 onLayout(boolean changed, int left, int top, int right, int bottom) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskStack.java444 int movement = inOutBounds.left;
445 inOutBounds.left -= movement;
450 inOutBounds.left += movement;
722 * @param dockOnTopOrLeft If the docked stack is on the top or left side of the screen.
758 outBounds.left = position + dockDividerWidth;
766 // Other stacks occupy whatever space is left by the docked stack.
769 outBounds.right = dockedBounds.left - dockDividerWidth;
775 outBounds.left = dockedBounds.right + dockDividerWidth;
1054 mTmpAdjustedBounds.left = mTmpAdjustedBounds.right - width;
1057 mTmpAdjustedBounds.left
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java362 void drawVerticalDivider(Canvas canvas, int left) { argument
363 mDivider.setBounds(left, getPaddingTop() + mDividerPadding,
364 left + mDividerWidth, getHeight() - getPaddingBottom() - mDividerPadding);
1414 * @param left
1419 void layoutVertical(int left, int top, int right, int bottom) { argument
1426 final int width = right - left;
1509 * @param left
1514 void layoutHorizontal(int left, int top, int right, int bottom) { argument
1542 childLeft = getPaddingLeft() + right - left - mTotalLength;
1547 childLeft = getPaddingLeft() + (right - left
1638 setChildFrame(View child, int left, int top, int width, int height) argument
[all...]
/frameworks/av/include/media/stagefright/foundation/
H A DAMessage.h111 int32_t left, int32_t top, int32_t right, int32_t bottom);
128 int32_t *left, int32_t *top, int32_t *right, int32_t *bottom) const;
/frameworks/base/cmds/wm/src/com/android/commands/wm/
H A DWm.java225 rect.left = Integer.parseInt(matcher.group(1));
232 mWm.setOverscan(Display.DEFAULT_DISPLAY, rect.left, rect.top, rect.right, rect.bottom);
/frameworks/base/core/java/android/text/method/
H A DLinkMovementMethod.java79 protected boolean left(TextView widget, Spannable buffer) { method in class:LinkMovementMethod
84 return super.left(widget, buffer);
/frameworks/base/core/java/android/transition/
H A DChangeImageTransform.java91 int left = view.getLeft();
96 Rect bounds = new Rect(left, top, right, bottom);
/frameworks/base/core/java/android/view/inputmethod/
H A DSparseRectFArray.java45 * {@code rects[mKeys[0]].left}, {@code rects[mKeys[0]].top},
47 * {@code rects[mKeys[1]].left}, {@code rects[mKeys[1]].top},
49 * {@code rects[mKeys[2]].left}, {@code rects[mKeys[2]].top}, ....
194 * @param left left of the rectangle.
203 final float left, final float top, final float right, final float bottom,
208 mCoordinates[baseCoordinatesIndex + 0] = left;
202 append(final int key, final float left, final float top, final float right, final float bottom, final int flags) argument
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuItemView.java241 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
242 super.onLayout(changed, left, top, right, bottom);
/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingLinearLayout.java187 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
193 final int width = right - left;
H A DNotificationActionListLayout.java188 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
207 childLeft = mPaddingLeft + right - left - mTotalWidth;
H A DResolverDrawerLayout.java586 final float left = child.getX();
588 final float right = left + child.getWidth();
590 return x >= left && y >= top && x < right && y < bottom;
848 final int left = leftEdge + (widthAvailable - childWidth) / 2;
849 final int right = left + childWidth;
851 child.layout(left, top, right, bottom);
858 final int left = indicatorHost.getLeft();
862 mScrollIndicatorDrawable.setBounds(left, top, right, bottom);
H A DSlidingTab.java124 * The interface was triggered because the user grabbed the left handle and moved it past
335 * @param l the parent's left border
354 final int left = (parentWidth - handleWidth) / 2;
355 final int right = left + handleWidth;
383 tab.layout(left, 0, right, handleHeight);
384 text.layout(left, 0 - parentHeight, right, 0);
388 tab.layout(left, parentHeight - handleHeight, right, parentHeight);
389 text.layout(left, parentHeight, right, parentHeight + parentHeight);
653 int left = slider.tab.getLeft();
657 : (viewWidth - left)
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp66 jfieldID left; member in struct:android::__anon949
135 int left = env->GetIntField(sourceCropObj, gRectClassInfo.left); local
139 Rect sourceCrop(left, top, right, bottom);
204 int left = env->GetIntField(sourceCropObj, gRectClassInfo.left); local
208 Rect sourceCrop(left, top, right, bottom);
753 gRectClassInfo.left = GetFieldIDOrDie(env, rectClazz, "left", "I");
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedRotateDrawable.java60 final int w = bounds.right - bounds.left;
68 canvas.rotate(mCurrentDegrees, px + bounds.left, py + bounds.top);
H A DRotateDrawable.java147 final int w = bounds.right - bounds.left;
154 canvas.rotate(st.mCurrentDegrees, px + bounds.left, py + bounds.top);
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfRenderer.java94 * be anchored to the upper left corner of the page for left-to-right locales and
95 * top right corner for right-to-left locales.
359 if (destClip.left < 0 || destClip.top < 0
378 final int contentLeft = (destClip != null) ? destClip.left : 0;
/frameworks/base/libs/hwui/
H A DBakedOpState.cpp26 if (clip.left > bounds.left) clipSideFlags |= OpClipSideFlags::Left;
H A DDamageAccumulator.cpp227 void DamageAccumulator::dirty(float left, float top, float right, float bottom) { argument
228 mHead->pendingDirty.join(left, top, right, bottom);
H A DFontRenderer.cpp520 (x1 > mClip->right || y1 < mClip->top || x2 < mClip->left || y4 > mClip->bottom)) {
527 mBounds->left = std::min(mBounds->left, x1);
545 mBounds->left = std::min(mBounds->left, std::min(x1, std::min(x2, std::min(x3, x4))));
583 uint32_t paddedWidth = (uint32_t) (bounds.right - bounds.left) + 2 * intRadius;
605 int penX = intRadius - bounds.left;
608 if ((bounds.right > bounds.left) && (bounds.top > bounds.bottom)) {
H A DRenderProperties.cpp105 ALOGD("%*s(Translate (left, top) %d, %d)", level * 2, "",
145 (int)layerBounds.left, (int)layerBounds.top,
156 (int)clipRect.left, (int)clipRect.top, (int)clipRect.right, (int)clipRect.bottom);
/frameworks/base/libs/hwui/renderthread/
H A DCanvasContext.h141 void setContentDrawBounds(int left, int top, int right, int bottom) { argument
142 mContentDrawBounds.set(left, top, right, bottom);
/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.java63 * @param lhs The float array that holds the left-hand-side matrix.
86 * @param lhsMat The float array that holds the left-hand-side matrix.
262 * @param left
270 float left, float right, float bottom, float top,
272 if (left == right) {
273 throw new IllegalArgumentException("left == right");
282 final float r_width = 1.0f / (right - left);
288 final float tx = -(right + left) * r_width;
316 * @param left
324 float left, floa
269 orthoM(float[] m, int mOffset, float left, float right, float bottom, float top, float near, float far) argument
323 frustumM(float[] m, int offset, float left, float right, float bottom, float top, float near, float far) argument
[all...]

Completed in 7846 milliseconds

<<11121314151617181920>>