Searched defs:bottom (Results 26 - 50 of 306) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/text/style/
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
H A DBulletSpan.java91 int top, int baseline, int bottom,
113 c.translate(x + dir * BULLET_RADIUS, (top + bottom) / 2.0f);
117 c.drawCircle(x + dir * BULLET_RADIUS, (top + bottom) / 2.0f, BULLET_RADIUS, p);
90 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout l) argument
H A DLeadingMarginSpan.java60 * @param bottom the bottom of the line
69 int top, int baseline, int bottom,
156 int top, int baseline, int bottom,
67 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
154 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 DQuoteSpan.java79 int top, int baseline, int bottom,
88 c.drawRect(x, top, x + dir * STRIPE_WIDTH, bottom, p);
78 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/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;
H A DMessagingLinearLayout.java85 // This is essentially a bottom-up linear layout that only adds children that fit entirely
113 // Starting from the bottom: we measure every view as if it were the only one. If it still
209 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
/frameworks/base/core/jni/
H A Dandroid_hardware_display_DisplayViewport.cpp49 jfieldID bottom; member in struct:android::__anon1093
72 viewport->logicalBottom = env->GetIntField(logicalFrameObj, gRectClassInfo.bottom);
79 viewport->physicalBottom = env->GetIntField(physicalFrameObj, gRectClassInfo.bottom);
115 gRectClassInfo.bottom = GetFieldIDOrDie(env, clazz, "bottom", "I");
/frameworks/base/libs/hwui/pipeline/skia/
H A DAnimatedDrawables.h32 uirenderer::CanvasPropertyPrimitive* bottom, uirenderer::CanvasPropertyPrimitive* rx,
37 , mBottom(bottom)
30 AnimatedRoundRect(uirenderer::CanvasPropertyPrimitive* left, uirenderer::CanvasPropertyPrimitive* top, uirenderer::CanvasPropertyPrimitive* right, uirenderer::CanvasPropertyPrimitive* bottom, uirenderer::CanvasPropertyPrimitive* rx, uirenderer::CanvasPropertyPrimitive* ry, uirenderer::CanvasPropertyPaint* p) argument
/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
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DFixedSizeFrameLayout.java58 protected final void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
59 mLayoutBounds.set(left, top, right, bottom);
90 super.onLayout(changed, bounds.left, bounds.top, bounds.right, bounds.bottom);
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DMinimizedDockShadow.java53 private void updatePaint(int left, int top, int right, int bottom) { argument
65 0, 0, 0, bottom - top,
82 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
83 super.onLayout(changed, left, top, right, bottom);
85 updatePaint(left, top, right, bottom);
/frameworks/base/services/core/java/com/android/server/wm/
H A DDisplaySettings.java81 outRect.bottom = entry.overscanBottom;
88 int bottom) {
89 if (left == 0 && top == 0 && right == 0 && bottom == 0) {
105 entry.overscanBottom = bottom;
87 setOverscanLocked(String uniqueId, String name, int left, int top, int right, int bottom) argument
/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/view/
H A DRectShadowPainter.java86 float bottom, float radius, float elevation) {
90 bottom = bottom - radius;
97 // left-bottom points
100 ret[points][1] = (float) (bottom + radius - radius * Math.cos(RADIANS_STEP * i));
118 // right-bottom point
121 ret[points][1] = (float) (bottom - radius + radius * Math.cos(RADIANS_STEP * i));
85 generateRectangleCoordinates(float left, float top, float right, float bottom, float radius, float elevation) argument
/frameworks/native/libs/ui/
H A DRect.cpp37 bottom = -1;
47 if (bottom < rhs.bottom) {
49 } else if (bottom == rhs.bottom) {
61 bottom -= top - y;
71 bottom += y;
76 const Rect result(left + rhs.x, top + rhs.y, right + rhs.x, bottom + rhs.y);
81 const Rect result(left - rhs.x, top - rhs.y, right - rhs.x, bottom - rhs.y);
89 result->bottom
107 int bottom = result.right; local
[all...]
/frameworks/native/libs/vr/libdvr/include/dvr/
H A Ddvr_hardware_composer_defs.h36 int32_t bottom; member in struct:DvrHwcRecti
43 float bottom; member in struct:DvrHwcRectf
/frameworks/support/transition/api14/android/support/transition/
H A DViewUtilsApi14.java144 public void setLeftTopRightBottom(View v, int left, int top, int right, int bottom) { argument
148 v.setBottom(bottom);
/frameworks/support/transition/base/android/support/transition/
H A DViewUtilsImpl.java45 void setLeftTopRightBottom(View v, int left, int top, int right, int bottom); argument
/frameworks/support/transition/src/android/support/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) {
141 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/support/transition/tests/src/android/support/transition/
H A DAutoTransitionTest.java99 public void onLayoutChange(View v, int left, int top, int right, int bottom, argument
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAlertDialogLayout.java263 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
283 childTop = getPaddingTop() + bottom - top - totalLength;
288 childTop = getPaddingTop() + (bottom - top - totalLength) / 2;
/frameworks/support/wear/tests/src/android/support/wear/widget/util/
H A DMoreViewAssertions.java71 public static ViewAssertion bottom(final Matcher<Integer> matcher) { method in class:MoreViewAssertions
75 assertThat("View bottom: " + HumanReadables.describe(view), view.getBottom(),
85 assertThat("View bottom: " + HumanReadables.describe(view), ((double) view
148 * Returns a new ViewAssertion against a match of the view's bottom position, relative to the
152 * @param matcher matcher for the bottom position
/frameworks/base/core/java/android/text/method/
H A DArrowKeyMovementMethod.java167 protected boolean bottom(TextView widget, Spannable buffer) { method in class:ArrowKeyMovementMethod
/frameworks/base/core/java/android/view/inputmethod/
H A DSparseRectFArray.java46 * {@code rects[mKeys[0]].right}, {@code rects[mKeys[0]].bottom},
48 * {@code rects[mKeys[1]].right}, {@code rects[mKeys[1]].bottom},
197 * @param bottom bottom of the rectangle.
203 final float left, final float top, final float right, final float bottom,
211 mCoordinates[baseCoordinatesIndex + 3] = bottom;
202 append(final int key, final float left, final float top, final float right, final float bottom, final int flags) argument

Completed in 6169 milliseconds

1234567891011>>