HomeSort by relevance Sort by last modified time
    Searched refs:bottom (Results 1 - 25 of 1419) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/
category_bottom.h 3 @interface Foo(Bottom)
4 -(void)bottom;
9 @interface LeftFoo(Bottom)
10 -(void)bottom;
diamond_bottom.h 4 char bottom(char *x);
  /frameworks/base/graphics/java/android/graphics/
RectF.java 28 * represented by the coordinates of its 4 edges (left, top, right bottom).
31 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
37 public float bottom; field in class:RectF
47 * top <= bottom.
52 * @param bottom The Y coordinate of the bottom of the rectangle
54 public RectF(float left, float top, float right, float bottom) {
58 this.bottom = bottom;
70 left = top = right = bottom = 0.0f
    [all...]
Insets.java 34 public final int bottom; field in class:Insets
36 private Insets(int left, int top, int right, int bottom) {
40 this.bottom = bottom;
51 * @param bottom the bottom inset
55 public static Insets of(int left, int top, int right, int bottom) {
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...]
Rect.java 28 * represented by the coordinates of its 4 edges (left, top, right bottom).
31 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
37 public int bottom; field in class:Rect
50 * top <= bottom.
55 * @param bottom The Y coordinate of the bottom of the rectangle
57 public Rect(int left, int top, int right, int bottom) {
61 this.bottom = bottom;
73 left = top = right = bottom = 0
    [all...]
  /external/dropbear/libtommath/
bn_mp_rshd.c 35 register mp_digit *bottom, *top; local
39 /* bottom */
40 bottom = a->dp;
47 * the top of the window are copied to the bottom
56 *bottom++ = *top++;
61 *bottom++ = 0;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
SelectionRenderer.java 24 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom,
27 canvas.drawRect(left, bottom - stroke, right, bottom, paint);
28 canvas.drawRect(left, top, left + stroke, bottom, paint);
29 canvas.drawRect(right - stroke, top, right, bottom, paint);
32 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom,
35 canvas.drawRect(left, bottom - stroke, right, bottom, selectPaint);
36 canvas.drawRect(left, top, left + stroke, bottom, selectPaint);
37 canvas.drawRect(right - stroke, top, right, bottom, selectPaint)
    [all...]
  /frameworks/native/libs/ui/
Rect.cpp 34 bottom = -1;
45 if (bottom<rhs.bottom) {
47 } else if (bottom == rhs.bottom) {
60 bottom -= top - y;
71 bottom+=y;
77 const Rect result(left+rhs.x, top+rhs.y, right+rhs.x, bottom+rhs.y);
83 const Rect result(left-rhs.x, top-rhs.y, right-rhs.x, bottom-rhs.y);
92 result->bottom = min(bottom, with.bottom)
110 int bottom = result.right; local
    [all...]
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/android/
rect.h 29 int32_t bottom; member in struct:ARect
  /prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/android/
rect.h 29 int32_t bottom; member in struct:ARect
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/android/
rect.h 29 int32_t bottom; member in struct:ARect
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/android/
rect.h 29 int32_t bottom; member in struct:ARect
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/android/
rect.h 29 int32_t bottom; member in struct:ARect
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/android/
rect.h 29 int32_t bottom; member in struct:ARect
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/android/
rect.h 29 int32_t bottom; member in struct:ARect
  /frameworks/base/libs/hwui/
Rect.h 36 float bottom; member in class:android::uirenderer::Rect
48 bottom(0) {
51 inline Rect(float left, float top, float right, float bottom):
55 bottom(bottom) {
62 bottom(height) {
74 left = top = right = bottom = 0.0f;
80 return !((left < right) && (top < bottom));
84 left = top = right = bottom = 0.0f;
87 inline void set(float left, float top, float right, float bottom) {
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventGeometry.java 91 event.bottom = top;
92 event.bottom += (int) (endTime * cellMinuteHeight);
93 event.bottom += endHour * mHourGap - 1;
96 if (event.bottom < event.top + mMinEventHeight) {
97 event.bottom = event.top + mMinEventHeight;
111 && event.top < selection.bottom && event.bottom >= selection.top) {
124 float bottom = event.bottom; local
129 if (y <= bottom) {
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRect.java 14 public void __constructor__(int left, int top, int right, int bottom) {
18 realRect.bottom = bottom;
25 realRect.bottom = otherRect.bottom;
30 set(rect.left, rect.top, rect.right, rect.bottom);
34 public void set(int left, int top, int right, int bottom) {
38 realRect.bottom = bottom;
48 return realRect.bottom - realRect.top
    [all...]
  /external/clang/test/Modules/
diamond-pch.c 4 // in diamond-bottom.h: expected-note{{passing argument to parameter 'x' here}}
10 bottom(&c);
11 bottom(&d); // expected-warning{{incompatible pointer types passing 'double *' to parameter of type 'char *'}}
diamond.c 4 // in diamond-bottom.h: expected-note{{passing argument to parameter 'x' here}}
12 bottom(&c);
13 bottom(&d); // expected-warning{{incompatible pointer types passing 'double *' to parameter of type 'char *'}}
  /packages/apps/Settings/src/com/android/settings/drawable/
InsetBoundsDrawable.java 34 public void setBounds(int left, int top, int right, int bottom) {
35 super.setBounds(left + mInsetBoundsSides, top, right - mInsetBoundsSides, bottom);
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
RunData.java 31 public int left, top, right, bottom; field in class:RunData.TileData
36 public TileData(int left, int top, int right, int bottom,
41 this.bottom = bottom;
49 + right + "," + bottom + ")"
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
Tooltip.css 7 body { overflow: auto; margin-top: 0px; margin-bottom: 0px; margin-left: 0.3em; margin-right: 0.3em; }
9 h1 { margin-top: 0.3em; margin-bottom: 0.04em; }
10 h2 { margin-top: 2em; margin-bottom: 0.25em; }
11 h3 { margin-top: 1.7em; margin-bottom: 0.25em; }
12 h4 { margin-top: 2em; margin-bottom: 0.3em; }
13 h5 { margin-top: 0px; margin-bottom: 0px; }
14 p { margin-top: 0em; margin-bottom: 0em; }
16 ul { margin-top: 0px; margin-bottom: 1em; }
17 li { margin-top: 0px; margin-bottom: 0px; }
18 li p { margin-top: 0px; margin-bottom: 0px; }
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
SoftLandingInterpolator.java 34 private final float bottom; field in class:SoftLandingInterpolator
43 bottom = mI - epsilon;
45 upperRange = 1f - bottom;
50 final float s = slide.getInterpolation((input - bottom) / upperRange) * (1f - mO) + mO;
53 if (input < bottom) {
56 final float alpha = (input - bottom) / (top - bottom);
  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_FontMetricsIntTest.java 35 int bottom = 4; local
42 fontMetricsInt.bottom = bottom;

Completed in 771 milliseconds

1 2 3 4 5 6 7 8 91011>>