HomeSort by relevance Sort by last modified time
    Searched refs:bottom (Results 1 - 25 of 3256) 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);
  /external/pdfium/core/fpdfdoc/
cpvt_floatrect.h 14 CPVT_FloatRect() { left = top = right = bottom = 0.0f; }
23 bottom = other_bottom;
30 bottom = rect.bottom;
34 if (top > bottom)
35 return top - bottom;
36 return bottom - top;
  /frameworks/base/graphics/java/android/graphics/
RectF.java 27 * represented by the coordinates of its 4 edges (left, top, right bottom).
30 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
36 public float bottom; field in class:RectF
46 * top <= bottom.
51 * @param bottom The Y coordinate of the bottom of the rectangle
53 public RectF(float left, float top, float right, float bottom) {
57 this.bottom = bottom;
69 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 32 * represented by the coordinates of its 4 edges (left, top, right bottom).
35 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
37 * Note that the right and bottom coordinates are exclusive. This means a Rect
40 * those of its bottom and right.
46 public int bottom; field in class:Rect
71 * top <= bottom.
76 * @param bottom The Y coordinate of the bottom of the rectangle
78 public Rect(int left, int top, int right, int bottom) {
82 this.bottom = bottom
    [all...]
  /frameworks/native/libs/ui/include/ui/
FloatRect.h 25 : left(_left), top(_top), right(_right), bottom(_bottom) {}
28 float getHeight() const { return bottom - top; }
37 (bottom < other.bottom) ? bottom : other.bottom
44 float bottom = 0.0f; member in class:android::FloatRect
48 return a.left == b.left && a.top == b.top && a.right == b.right && a.bottom == b.bottom;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Box.java 22 private Item bottom; field in class:Box
39 return bottom;
42 public void setBottom(Item bottom) {
43 this.bottom = bottom;
  /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/base/libs/hwui/
Rect.h 33 #define RECT_ARGS(r) (r).left, (r).top, (r).right, (r).bottom
34 #define SK_RECT_ARGS(r) (r).left(), (r).top(), (r).right(), (r).bottom()
45 float bottom; member in class:android::uirenderer::Rect
53 inline Rect() : left(0), top(0), right(0), bottom(0) {}
55 inline Rect(float left, float top, float right, float bottom)
56 : left(left), top(top), right(right), bottom(bottom) {}
58 inline Rect(float width, float height) : left(0.0f), top(0.0f), right(width), bottom(height) {}
65 , bottom(rect.fBottom) {}
72 , bottom(rect.fBottom) {
    [all...]
  /frameworks/base/core/java/android/animation/
RectEvaluator.java 59 * (left, top, right, and bottom).
76 int bottom = startValue.bottom + (int) ((endValue.bottom - startValue.bottom) * fraction); local
78 return new Rect(left, top, right, bottom);
80 mRect.set(left, top, right, bottom);
  /frameworks/support/transition/src/main/java/androidx/transition/
RectEvaluator.java 61 * (left, top, right, and bottom).
78 int bottom = startValue.bottom + (int) ((endValue.bottom - startValue.bottom) * fraction); local
80 return new Rect(left, top, right, bottom);
82 mRect.set(left, top, right, bottom);
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
MockRectF.java 29 //public float bottom;
43 it.bottom = rhs.bottom;
47 public void $init(float left, float top, float right, float bottom) {
51 it.bottom = bottom;
65 it.bottom = it.bottom + dy;
72 it.bottom = top + height();
82 return it.bottom - it.top;
    [all...]
  /external/libmojo/ui/gfx/geometry/
insets_f.cc 13 return base::StringPrintf("%f,%f,%f,%f", top(), left(), bottom(), right());
insets.cc 14 return base::StringPrintf("%d,%d,%d,%d", top(), left(), bottom(), right());
19 bottom() - vector.y(), right() - vector.x());
  /external/skia/tests/
CanvasStateHelpers.h 23 float right, float bottom, int32_t spacer);
32 float left, float top, float right, float bottom, int32_t spacer);
39 int32_t right, int32_t bottom, int32_t clipOp, const SkRegion& localRegion);
48 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp,
  /external/skqp/tests/
CanvasStateHelpers.h 23 float right, float bottom, int32_t spacer);
32 float left, float top, float right, float bottom, int32_t spacer);
39 int32_t right, int32_t bottom, int32_t clipOp, const SkRegion& localRegion);
48 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp,
  /frameworks/native/libs/ui/
Rect.cpp 37 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 = min(bottom, with.bottom)
107 int bottom = result.right; local
    [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/v1/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 14 bottom(&c);
15 bottom(&d);
diamond.c 15 bottom(&c);
16 bottom(&d);
  /frameworks/base/services/core/java/com/android/server/wm/utils/
InsetUtils.java 36 inOutInsets.bottom += insetsToAdd.bottom;
  /test/vti/dashboard/src/main/webapp/css/
show_plan_release.css 17 bottom: auto;
  /external/syslinux/gpxe/src/arch/i386/interface/pcbios/
memtop_umalloc.c 52 /** Bottom of heap (current lowest allocated block) */
53 static userptr_t bottom = UNULL; variable
92 top = bottom = phys_to_user ( r_end );
115 while ( bottom != top ) {
116 copy_from_user ( &extmem, bottom, -sizeof ( extmem ),
120 DBG ( "EXTMEM freeing [%lx,%lx)\n", user_to_phys ( bottom, 0 ),
121 user_to_phys ( bottom, extmem.size ) );
122 bottom = userptr_add ( bottom,
144 if ( bottom == top )
    [all...]

Completed in 723 milliseconds

1 2 3 4 5 6 7 8 91011>>