Searched defs:left (Results 1 - 25 of 262) sorted by last modified time

1234567891011

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarOverlayLayout.java291 private boolean applyInsets(View view, Rect insets, boolean left, boolean top, argument
295 if (left && lp.leftMargin != insets.left) {
297 lp.leftMargin = insets.left;
477 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
481 final int parentRight = right - left - getPaddingRight();
H A DActivityChooserView.java51 * The left button is an immediate action and allows one click activity choosing.
453 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
454 mActivityChooserContent.layout(0, 0, right - left, bottom - top);
H A DAdapterViewCompat.java543 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
H A DDrawableWrapper.java50 public void setBounds(int left, int top, int right, int bottom) { argument
51 super.setBounds(left, top, right, bottom);
52 mDrawable.setBounds(left, top, right, bottom);
206 public void setHotspotBounds(int left, int top, int right, int bottom) { argument
207 DrawableCompat.setHotspotBounds(mDrawable, left, top, right, bottom);
H A DListViewCompat.java82 mSelectionLeftPadding = padding.left;
202 selectorRect.left -= mSelectionLeftPadding;
363 public void setHotspotBounds(int left, int top, int right, int bottom) { argument
365 super.setHotspotBounds(left, top, right, bottom);
H A DRtlSpacingHelper.java21 * RtlSpacingHelper manages the relationship between left/right and start/end for views
69 public void setAbsolute(int left, int right) { argument
71 if (left != UNDEFINED) mLeft = mExplicitLeft = left;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuView.java306 // Divide any space left that wouldn't divide along cell boundaries
435 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
437 super.onLayout(changed, left, top, right, bottom);
447 int widthRemaining = right - left - getPaddingRight() - getPaddingLeft();
494 final int midHorizontal = (right - left) / 2;
H A DLinearLayoutCompat.java364 void drawVerticalDivider(Canvas canvas, int left) { argument
365 mDivider.setBounds(left, getPaddingTop() + mDividerPadding,
366 left + mDividerWidth, getHeight() - getPaddingBottom() - mDividerPadding);
1416 * @param left
1421 void layoutVertical(int left, int top, int right, int bottom) { argument
1428 final int width = right - left;
1511 * @param left
1516 void layoutHorizontal(int left, int top, int right, int bottom) { argument
1544 childLeft = getPaddingLeft() + right - left - mTotalLength;
1549 childLeft = getPaddingLeft() + (right - left
1640 setChildFrame(View child, int left, int top, int width, int height) argument
[all...]
H A DSwitchCompat.java508 thumbWidth = mThumbDrawable.getIntrinsicWidth() - padding.left - padding.right;
534 // Adjust left and right padding to ensure there's enough room for the
536 int paddingLeft = padding.left;
585 mTempRect.left + mTempRect.right + mTouchSlop;
767 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
768 super.onLayout(changed, left, top, right, bottom);
836 thumbInitialLeft += padding.left;
850 final int thumbLeft = thumbInitialLeft - padding.left;
904 cX = bounds.left + bounds.right;
909 final int left
[all...]
H A DToolbar.java941 * @param contentInsetLeft Content inset for the toolbar's left edge
955 * Get the left content inset for this toolbar.
961 * @return The left content inset for this toolbar
1335 int left = paddingLeft;
1349 left = layoutChildLeft(mNavButtonView, left, collapsingMargins,
1359 left = layoutChildLeft(mCollapseButtonView, left, collapsingMargins,
1366 left = layoutChildLeft(mMenuView, left, collapsingMargin
1561 layoutChildLeft(View child, int left, int[] collapsingMargins, int alignmentHeight) argument
[all...]
/frameworks/support/v7/cardview/base/android/support/v7/widget/
H A DCardViewDelegate.java32 void setShadowPadding(int left, int top, int right, int bottom); argument
/frameworks/support/v7/cardview/src/android/support/v7/widget/
H A DCardView.java110 public void setPadding(int left, int top, int right, int bottom) { argument
159 * @param left The left padding in pixels
169 public void setContentPadding(int left, int top, int right, int bottom) { argument
170 mContentPadding.set(left, top, right, bottom);
212 mContentPadding.left = a.getDimensionPixelSize(R.styleable.CardView_contentPaddingLeft,
238 * Returns the inner padding after the Card's left edge
240 * @return the inner padding after the Card's left edge
243 return mContentPadding.left;
300 public void setShadowPadding(int left, in argument
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java187 * {@link android.view.View#getLeft() left},
1001 This method is then left with the simpler task of applying margins, gravity
1005 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
1008 int targetWidth = right - left;
1943 int left, int top, int right, int bottom,
1946 setMargins(left, top, right, bottom);
2641 * For horizontal alignments measurement is made from the left edge of the component.
2758 * Indicates that a view should be aligned with the <em>left</em>
1941 LayoutParams( int width, int height, int left, int top, int right, int bottom, Spec rowSpec, Spec columnSpec) argument
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1060 int left = view.getLeft();
1062 if (left != shadowingView.getLeft() || top != shadowingView.getTop()) {
1063 shadowingView.layout(left, top,
1064 left + shadowingView.getWidth(),
2171 info.left, info.top);
2182 if (preInfo.left != postInfo.left || preInfo.top != postInfo.top) {
2189 preInfo.left, preInfo.top, postInfo.left, postInfo.top)) {
2332 (beforeBounds.left !
5957 layoutDecorated(View child, int left, int top, int right, int bottom) argument
8824 int left, top, right, bottom; field in class:RecyclerView.ItemHolderInfo
8826 ItemHolderInfo(ViewHolder holder, int left, int top, int right, int bottom) argument
[all...]
H A DStaggeredGridLayoutManager.java504 * {@link #getReverseLayout()} is {@code true}, elements will be laid out starting from left.
1001 widthSpec = updateSpecWithExtra(widthSpec, lp.leftMargin + insets.left,
1548 private void layoutDecoratedWithMargins(View child, int left, int top, int right, int bottom) { argument
1553 + ". l:" + left + ",t:" + top
1556 layoutDecorated(child, left + lp.leftMargin, top + lp.topMargin, right - lp.rightMargin
/frameworks/volley/src/com/android/volley/toolbox/
H A DNetworkImageView.java196 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
197 super.onLayout(changed, left, top, right, bottom);
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java1868 public boolean setFrame(final int left, final int top, final int right, final int bottom) { argument
1869 return mWebViewPrivate.super_setFrame(left, top, right, bottom);
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h1039 XAuint32 left; member in struct:XARectangle_
1584 XAuint32 left; member in struct:XAFocusPointPosition_
/frameworks/wilhelm/src/itf/
H A DIOutputMixExt.c29 short left; member in struct:__anon1595
244 mixBuffer->left += (short) (source->left * track->mGains[0]);
250 mixBuffer->left += source->left;
258 mixBuffer->left = (short) (source->left * track->mGains[0]);
/frameworks/wilhelm/tests/automated/
H A DBufferQueue_test.cpp38 short left; member in struct:__anon1663
142 stereoBuffer1[i].left = pcm;
/frameworks/wilhelm/tests/sandbox/
H A Dintbufq.c52 short left; member in struct:__anon1669
153 sine[i].left = sin((float) (i / (sr / hz)) * pi2 ) * 32000.0;
154 sine[i].right = sine[i].left;
157 square[i].left = (i % (unsigned) (sr / hz)) < 50 ? 32767 : -32768;
158 square[i].right = square[i].left;
161 sawtooth[i].left = ((((int) (i % (unsigned) (sr / hz))) - 50) / 100.0) * 60000.0 - 30000.0;
162 sawtooth[i].right = sawtooth[i].left;
165 half[i].left = sine[i].left;
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp448 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
450 rsrMeasureTextAlloc(rsc, a, left, right, top, bottom);
454 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
456 rsrMeasureText(rsc, text, left, right, top, bottom);
447 SC_MeasureTextAlloc(Allocation *a, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
453 SC_MeasureText(const char *text, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
/frameworks/rs/
H A DrsFont.h53 int32_t left; member in struct:android::renderscript::Font::Rect
58 left = l;
H A DrsMatrix4x4.cpp254 // is also the destination, e.g. left.loadMultiply(left, right);
276 void Matrix4x4::loadOrtho(float left, float right, float bottom, float top, float near, float far) { argument
278 m[0] = 2.f / (right - left);
281 m[12]= -(right + left) / (right - left);
286 void Matrix4x4::loadFrustum(float left, float right, float bottom, float top, float near, float far) { argument
288 m[0] = 2.f * near / (right - left);
290 m[8] = (right + left) / (right - left);
301 float left = bottom * aspect; local
[all...]
H A DrsScriptC_LibGL.cpp234 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
235 if (left) {
236 *left = metrics->left;
250 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
256 SetMetrics(&metrics, left, right, top, bottom);
261 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
265 SetMetrics(&metrics, left, right, top, bottom);
233 SetMetrics(Font::Rect *metrics, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
249 rsrMeasureTextAlloc(Context *rsc, Allocation *a, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
260 rsrMeasureText(Context *rsc, const char *text, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument

Completed in 2381 milliseconds

1234567891011