Searched defs:bottom (Results 1 - 25 of 284) sorted by relevance

1234567891011>>

/frameworks/native/include/android/
H A Drect.h52 /** bottom position */
53 int32_t bottom; member in struct:ARect
/frameworks/base/core/java/android/text/style/
H A DLineBackgroundSpan.java27 int top, int baseline, int bottom,
25 drawBackground(Canvas c, Paint p, int left, int right, int top, int baseline, int bottom, CharSequence text, int start, int end, int lnum) argument
H A DReplacementSpan.java56 * @param bottom Bottom of the line.
61 int top, int y, int bottom, @NonNull Paint paint);
59 draw(@onNull Canvas canvas, CharSequence text, @IntRange(from = 0) int start, @IntRange(from = 0) int end, float x, int top, int y, int bottom, @NonNull Paint paint) argument
H A DDrawableMarginSpan.java42 int top, int baseline, int bottom,
67 need = ht - (v + fm.bottom - fm.top - istartv);
69 fm.bottom += need;
41 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
H A DDynamicDrawableSpan.java33 * A constant indicating that the bottom of this span should be aligned
34 * with the bottom of the surrounding text, i.e., at the same level as the
40 * A constant indicating that the bottom of this span should be aligned
81 fm.ascent = -rect.bottom;
85 fm.bottom = 0;
94 int top, int y, int bottom, Paint paint) {
98 int transY = bottom - b.getBounds().bottom;
92 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument
H A DIconMarginSpan.java42 int top, int baseline, int bottom,
64 need = ht - (v + fm.bottom - fm.top - istartv);
66 fm.bottom += need;
41 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
/frameworks/base/graphics/java/android/graphics/
H A DInsets.java34 public final int bottom; field in class:Insets
36 private Insets(int left, int top, int right, int bottom) { argument
40 this.bottom = bottom;
51 * @param bottom the bottom inset
55 public static Insets of(int left, int top, int right, int bottom) { argument
56 if (left == 0 && top == 0 && right == 0 && bottom == 0) {
59 return new Insets(left, top, right, bottom);
70 return (r == null) ? NONE : of(r.left, r.top, r.right, r.bottom);
[all...]
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DCardViewBindingAdapter.java40 int bottom = view.getContentPaddingBottom();
41 view.setContentPadding(left, top, right, bottom);
48 int bottom = view.getContentPaddingBottom();
49 view.setContentPadding(left, top, right, bottom);
56 int bottom = view.getContentPaddingBottom();
57 view.setContentPadding(left, top, right, bottom);
61 public static void setContentPaddingBottom(CardView view, int bottom) { argument
65 view.setContentPadding(left, top, right, bottom);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DFloatRect.h31 float bottom; member in class:android::FloatRect
34 : left(0), top(0), right(0), bottom(0) { }
36 : left(other.left), top(other.top), right(other.right), bottom(other.bottom) { }
39 inline float getHeight() const { return bottom - top; }
/frameworks/support/compat/jellybean-mr1/android/support/v4/widget/
H A DTextViewCompatJbMr1.java29 @Nullable Drawable bottom) {
31 textView.setCompoundDrawables(rtl ? end : start, top, rtl ? start : end, bottom);
36 @Nullable Drawable bottom) {
39 bottom);
43 int start, int top, int end, int bottom) {
46 bottom);
27 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
34 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
42 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, int start, int top, int end, int bottom) argument
/frameworks/support/compat/jellybean-mr2/android/support/v4/widget/
H A DTextViewCompatJbMr2.java29 @Nullable Drawable bottom) {
30 textView.setCompoundDrawablesRelative(start, top, end, bottom);
35 @Nullable Drawable bottom) {
36 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(start, top, end, bottom);
41 @DrawableRes int bottom) {
42 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(start, top, end, bottom);
27 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
33 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
39 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @DrawableRes int start, @DrawableRes int top, @DrawableRes int end, @DrawableRes int bottom) argument
/frameworks/support/design/base/android/support/design/widget/
H A DShadowViewDelegate.java23 void setShadowPadding(int left, int top, int right, int bottom); argument
/frameworks/av/include/ndk/
H A DNdkImage.h407 * <p>Note that the right and bottom coordinates are exclusive, so the width of the rectangle is
408 * (right - left) and the height of the rectangle is (bottom - top).</p>
414 int32_t bottom; member in struct:AImageCropRect
/frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/
H A DCustomLayout.java30 public LayoutParams(int left, int top, int right, int bottom) { argument
35 mBottom = bottom;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DSystemViewInfo.java30 int right, int bottom) {
31 super(name, cookie, left, top, right, bottom);
35 int right, int bottom, Object viewObject, Object layoutParamsObject) {
36 super(name, cookie, left, top, right, bottom, viewObject,
29 SystemViewInfo(String name, Object cookie, int left, int top, int right, int bottom) argument
34 SystemViewInfo(String name, Object cookie, int left, int top, int right, int bottom, Object viewObject, Object layoutParamsObject) argument
/frameworks/support/compat/tests/java/android/support/v4/testutils/
H A DTestUtils.java104 * bottom bounds.
107 int left, int top, int right, int bottom) {
111 Assert.assertEquals(failMessagePrefix + " bottom", rectangle.bottom, bottom);
106 assertRectangleBounds(String failMessagePrefix, @NonNull Rect rectangle, int left, int top, int right, int bottom) argument
H A DTextViewActions.java147 final @Nullable Drawable bottom) {
164 TextViewCompat.setCompoundDrawablesRelative(textView, start, top, end, bottom);
176 final @Nullable Drawable end, final @Nullable Drawable bottom) {
194 textView, start, top, end, bottom);
206 final @DrawableRes int bottom) {
224 textView, start, top, end, bottom);
145 setCompoundDrawablesRelative(final @Nullable Drawable start, final @Nullable Drawable top, final @Nullable Drawable end, final @Nullable Drawable bottom) argument
174 setCompoundDrawablesRelativeWithIntrinsicBounds( final @Nullable Drawable start, final @Nullable Drawable top, final @Nullable Drawable end, final @Nullable Drawable bottom) argument
204 setCompoundDrawablesRelativeWithIntrinsicBounds( final @DrawableRes int start, final @DrawableRes int top, final @DrawableRes int end, final @DrawableRes int bottom) argument
/frameworks/support/core-ui/tests/java/android/support/v4/testutils/
H A DTestUtils.java98 * bottom bounds.
101 int left, int top, int right, int bottom) {
105 Assert.assertEquals(failMessagePrefix + " bottom", rectangle.bottom, bottom);
100 assertRectangleBounds(String failMessagePrefix, @NonNull Rect rectangle, int left, int top, int right, int bottom) argument
/frameworks/support/design/src/android/support/design/internal/
H A DBaselineLayout.java84 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
/frameworks/support/v17/preference-leanback/api21/android/support/v17/internal/widget/
H A DOutlineOnlyWithChildrenFrameLayout.java60 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
61 super.onLayout(changed, left, top, right, bottom);
/frameworks/support/v7/cardview/base/android/support/v7/widget/
H A DCardViewDelegate.java31 void setShadowPadding(int left, int top, int right, int bottom); argument
/frameworks/base/core/java/android/text/method/
H A DScrollingMovementMethod.java64 protected boolean bottom(TextView widget, Spannable buffer) { method in class:ScrollingMovementMethod
85 return bottom(widget, buffer);
/frameworks/base/core/java/android/transition/
H A DSidePropagation.java96 int bottom = top + sceneRoot.getHeight();
105 epicenterY = (top + bottom) / 2;
109 left, top, right, bottom);
122 int left, int top, int right, int bottom) {
139 distance = bottom - viewY + Math.abs(epicenterX - viewX);
121 distance(View sceneRoot, int viewX, int viewY, int epicenterX, int epicenterY, int left, int top, int right, int bottom) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DAlertDialogLayout.java272 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
292 childTop = mPaddingTop + bottom - top - totalLength;
297 childTop = mPaddingTop + (bottom - top - totalLength) / 2;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
H A DRestrictedLockImageSpan.java50 int bottom, Paint paint) {
56 float transY = (bottom - drawable.getBounds().bottom) / 2.0f;
49 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument

Completed in 854 milliseconds

1234567891011>>