HomeSort by relevance Sort by last modified time
    Searched refs:bottom (Results 1 - 25 of 2826) 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/chromium_org/ui/file_manager/file_manager/audio_player/elements/
audio_player.css 7 bottom: 0;
9 margin-bottom: 8px;
  /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
62 * top <= bottom.
67 * @param bottom The Y coordinate of the bottom of the rectangle
69 public Rect(int left, int top, int right, int bottom) {
73 this.bottom = bottom;
85 left = top = right = bottom = 0
    [all...]
  /frameworks/native/services/surfaceflinger/DisplayHardware/
FloatRect.h 30 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; }
  /external/chromium_org/ui/gfx/geometry/
insets.cc 15 Insets::Insets(int top, int left, int bottom, int right)
16 : InsetsBase<Insets, int>(top, left, bottom, right) {}
22 return base::StringPrintf("%d,%d,%d,%d", top(), left(), bottom(), right());
insets_f.cc 15 InsetsF::InsetsF(float top, float left, float bottom, float right)
16 : InsetsBase<InsetsF, float>(top, left, bottom, right) {}
22 return base::StringPrintf("%f,%f,%f,%f", top(), left(), bottom(), right());
  /frameworks/base/libs/hwui/
Rect.h 32 (r).left, (r).top, (r).right, (r).bottom
34 (r).left(), (r).top(), (r).right(), (r).bottom()
45 float bottom; member in class:android::uirenderer::Rect
57 bottom(0) {
60 inline Rect(float left, float top, float right, float bottom):
64 bottom(bottom) {
71 bottom(height) {
78 bottom(rect.fBottom) {
90 left = top = right = bottom = 0.0f
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
IntRectExtent.h 47 IntRectExtent(int top, int right, int bottom, int left)
50 , m_bottom(bottom)
61 int bottom() const { return m_bottom; } function in class:WebCore::IntRectExtent
62 void setBottom(int bottom) { m_bottom = bottom; }
67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
75 rect.expand(left() + right(), top() + bottom());
89 && a.bottom() == b.bottom()
102 a.setBottom(a.bottom() + b.bottom())
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicBezierClip.cpp 33 double bottom = distance[1]; local
34 if (top > bottom) {
35 SkTSwap(top, bottom);
37 if (top * bottom >= 0) {
41 bottom = 0;
44 bottom *= scale;
49 bottom *= scale;
59 } else if (approximately_greater_or_equal(distance2y[0].y, bottom)) {
67 } else if (approximately_greater_or_equal(distance2y[3].y, bottom)) {
76 x_at(distance2y[0], distance2y[to_0[0]], top, bottom, flags, minT, maxT)
    [all...]
  /external/skia/experimental/Intersection/
CubicBezierClip.cpp 33 double bottom = distance[1]; local
34 if (top > bottom) {
35 SkTSwap(top, bottom);
37 if (top * bottom >= 0) {
41 bottom = 0;
44 bottom *= scale;
49 bottom *= scale;
59 } else if (approximately_greater_or_equal(distance2y[0].y, bottom)) {
67 } else if (approximately_greater_or_equal(distance2y[3].y, bottom)) {
76 x_at(distance2y[0], distance2y[to_0[0]], top, bottom, flags, minT, maxT)
    [all...]
  /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/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);
  /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
  /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...]
  /frameworks/native/libs/ui/
Rect.cpp 34 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 = min(bottom, with.bottom)
104 int bottom = result.right; local
    [all...]

Completed in 1769 milliseconds

1 2 3 4 5 6 7 8 91011>>