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

123456789

/frameworks/native/include/android/
H A Drect.h34 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.java30 int top, int y, int bottom, Paint paint);
28 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, 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/native/services/surfaceflinger/DisplayHardware/
H A DFloatRect.h30 float bottom; member in class:android::FloatRect
34 : left(other.left), top(other.top), right(other.right), bottom(other.bottom) { }
37 inline float getHeight() const { return bottom - top; }
/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/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSContainer.java44 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
45 super.onLayout(changed, left, top, right, bottom);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableOutlineView.java66 setOutlineRect(rect.left, rect.top, rect.right, rect.bottom);
73 protected void setOutlineRect(float left, float top, float right, float bottom) { argument
76 mOutlineRect.set((int) left, (int) top, (int) right, (int) bottom);
79 mOutlineRect.bottom = (int) Math.max(top, mOutlineRect.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/v4/api21/android/support/v4/graphics/drawable/
H A DDrawableCompatL.java33 int right, int bottom) {
34 drawable.setHotspotBounds( left, top, right, bottom);
32 setHotspotBounds(Drawable drawable, 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);
H A DArrowKeyMovementMethod.java168 protected boolean bottom(TextView widget, Spannable buffer) { method in class:ArrowKeyMovementMethod
/frameworks/base/core/java/android/transition/
H A DSidePropagation.java97 int bottom = top + sceneRoot.getHeight();
106 epicenterY = (top + bottom) / 2;
110 left, top, right, bottom);
123 int left, int top, int right, int bottom) {
140 distance = bottom - viewY + Math.abs(epicenterX - viewX);
122 distance(View sceneRoot, int viewX, int viewY, int epicenterX, int epicenterY, int left, int top, int right, int bottom) argument
/frameworks/base/libs/hwui/
H A DRenderer.h125 * @param bottom The bottom coordinate of the dirty rectangle
130 virtual status_t prepareDirty(float left, float top, float right, float bottom,
148 virtual int saveLayer(float left, float top, float right, float bottom,
151 int saveLayerAlpha(float left, float top, float right, float bottom, argument
155 return saveLayer(left, top, right, bottom, &paint, flags);
171 float right, float bottom) const = 0;
172 virtual bool clipRect(float left, float top, float right, float bottom, SkRegion::Op op) = 0;
194 float left, float top, float right, float bottom, const SkPaint* paint) = 0;
197 virtual status_t drawRect(float left, float top, float right, float bottom,
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DAnimateableViewBounds.java49 mSourceView.getHeight() - mClipRect.bottom,
61 /** Sets the bottom clip. */
62 public void setClipBottom(int bottom) { argument
63 if (bottom != mClipRect.bottom) {
64 mClipRect.bottom = bottom;
69 bottom - mSourceView.getPaddingBottom());
74 /** Returns the bottom clip. */
76 return mClipRect.bottom;
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DDisplaySettings.java75 outRect.bottom = entry.overscanBottom;
81 public void setOverscanLocked(String name, int left, int top, int right, int bottom) { argument
82 if (left == 0 && top == 0 && right == 0 && bottom == 0) {
96 entry.overscanBottom = bottom;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dstats_scorer.cpp45 jfloat left, jfloat top, jfloat right, jfloat bottom, jfloatArray statsArray)
51 int yEnd = static_cast<int>(height * bottom);
43 Java_androidx_media_filterpacks_numeric_StatsFilter_regionscore( JNIEnv* env, jobject thiz, jobject imageBuffer, jint width, jint height, jfloat left, jfloat top, jfloat right, jfloat bottom, jfloatArray statsArray) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DNinePatch_Delegate.java179 (int) loc.left, (int) loc.top, (int) loc.right, (int) loc.bottom,
188 loc.left, loc.top, loc.right, loc.bottom,
201 final int left, final int top, final int right, final int bottom,
220 (float)left, (float)top, (float)right, (float)bottom,
243 left, top, right - left, bottom - top, destDensity, srcDensity);
200 draw(long canvas_instance, final int left, final int top, final int right, final int bottom, long bitmap_instance, long chunk, long paint_instance_or_null, final int destDensity, final int srcDensity) argument
/frameworks/native/libs/ui/
H A DRect.cpp34 bottom = -1;
44 if (bottom < rhs.bottom) {
46 } else if (bottom == rhs.bottom) {
58 bottom -= top - y;
68 bottom += y;
73 const Rect result(left + rhs.x, top + rhs.y, right + rhs.x, bottom + rhs.y);
78 const Rect result(left - rhs.x, top - rhs.y, right - rhs.x, bottom - rhs.y);
86 result->bottom
104 int bottom = result.right; local
[all...]
/frameworks/support/v4/donut/android/support/v4/view/
H A DWindowInsetsCompat.java73 * Returns the bottom system window inset in pixels.
79 * @return The bottom system window inset
127 * <p>A round window's left, top, right and bottom edges reach all the way to the
154 * @param bottom New bottom inset in pixels
157 public WindowInsetsCompat replaceSystemWindowInsets(int left, int top, int right, int bottom) { argument
221 * Returns the bottom stable inset in pixels.
229 * @return The bottom stable inset
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DViewCompatJB.java41 int right, int bottom) {
42 view.postInvalidate(left, top, right, bottom);
40 postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) argument
/frameworks/support/v4/jellybean-mr1/android/support/v4/view/
H A DViewCompatJellybeanMr1.java55 public static void setPaddingRelative(View view, int start, int top, int end, int bottom) { argument
56 view.setPaddingRelative(start, top, end, bottom);

Completed in 2655 milliseconds

123456789