Lines Matching refs:left

110      * Preview image resource IDs for left- and right-aligned layouts. See
195 /** Whether decorations should be laid out from right to left. */
583 bounds.left -= mPreviewImage.getPaddingLeft();
601 view.layout(bounds.left, bounds.top, bounds.right, bounds.bottom);
602 view.setPivotX(mLayoutFromRight ? bounds.right - bounds.left : 0);
616 margins.left = mPreviewImage.getPaddingLeft();
648 marginLeft = margins.left;
671 // Align to the left or right.
673 final int left;
677 left = right - width;
679 left = (adjacent == null ? container.left : adjacent.getRight()) + marginLeft;
680 right = left + width;
686 out.set(left, top, right, bottom);
698 marginLeft = margins.left;
717 final int left = (containerWidth - width) / 2 + container.left;
718 final int right = left + width;
719 out.set(left, top, right, bottom);
730 container.left = 0;
738 container.left += list.getPaddingLeft();
749 container.left -= width;
791 final int left = thumb.getLeft() + (thumb.getWidth() - trackWidth) / 2;
792 final int right = left + trackWidth;
793 track.layout(left, top, right, bottom);
1149 bounds.left -= preview.getPaddingLeft();
1532 final float left = mThumbImage.getLeft() + offset;
1536 final float targetSizeDiff = mMinimumTouchTarget - (right - left);
1600 * A Property wrapper around the <code>left</code> functionality handled by the
1603 private static Property<View, Integer> LEFT = new IntProperty<View>("left") {
1667 final PropertyValuesHolder left = PropertyValuesHolder.ofInt(LEFT, bounds.left);
1671 return ObjectAnimator.ofPropertyValuesHolder(v, left, top, right, bottom);