HomeSort by relevance Sort by last modified time
    Searched refs:top (Results 26 - 50 of 5987) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/container.adaptors/priority.queue/priqueue.members/
top.pass.cpp 14 // const_reference top() const;
23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/container.adaptors/stack/stack.defn/
push.pass.cpp 22 assert(q.top() == 1);
25 assert(q.top() == 2);
28 assert(q.top() == 3);
push_rv.pass.cpp 26 assert(q.top() == MoveOnly(1));
29 assert(q.top() == MoveOnly(2));
32 assert(q.top() == MoveOnly(3));
  /frameworks/base/graphics/java/android/graphics/
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).
39 * into the column and row described by its left and top coordinates, but not
44 public int top; field in class:Rect
71 * top <= bottom.
74 * @param top The Y coordinate of the top of the rectangle
78 public Rect(int left, int top, int right, int bottom) {
80 this.top = top;
    [all...]
  /external/libvncserver/webclients/novnc/include/
black.css 15 background: -moz-linear-gradient(top, #4c4c4c 0%, #2c2c2c 50%, #000000 51%, #131313 100%); /* FF3.6+ */
16 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(50%,#2c2c2c), color-stop(51%,#000000), color-stop(100%,#131313)); /* Chrome,Safari4+ */
17 background: -webkit-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Chrome10+,Safari5.1+ */
18 background: -o-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Opera11.10+ */
19 background: -ms-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* IE10+ */
20 background: linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* W3C */
24 background: -moz-linear-gradient(top, #f04040 0%, #2c2c2c 50%, #000000 51%, #131313 100%); /* FF3.6+ */
25 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f04040), color-stop(50%,#2c2c2c), color-stop(51%,#000000), color-stop(100%,#131313)); /* Chrome,Safari4+ */
26 background: -webkit-linear-gradient(top, #f04040 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Chrome10+,Safari5.1+ */
27 background: -o-linear-gradient(top, #f04040 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Opera11.10+ *
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Box.java 21 private Item top; field in class:Box
31 return top;
34 public void setTop(Item top) {
35 this.top = top;
  /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,
26 canvas.drawRect(left, top, right, top + stroke, 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,
34 canvas.drawRect(left, top, right, top + stroke, 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()
43 float top; 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) {}
63 , top(rect.fTop)
70 , top(rect.fTop
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventGeometry.java 48 public boolean computeEventRect(int date, int left, int top, int cellWidth, Event event) {
87 event.top = top;
88 event.top += (int) (startTime * cellMinuteHeight);
89 event.top += startHour * mHourGap;
91 event.bottom = top;
96 if (event.bottom < event.top + mMinEventHeight) {
97 event.bottom = event.top + mMinEventHeight;
111 && event.top < selection.bottom && event.bottom >= selection.top) {
123 float top = event.top; local
    [all...]
  /external/python/cpython2/Demo/tix/samples/
DirTree.py 37 # Create the tixDirTree and the tixLabelEntry widgets on the on the top
43 top = Tix.Frame( w, relief=RAISED, bd=1)
49 top.dir = Tix.DirTree(top)
50 top.dir.hlist['width'] = 40
55 top.btn = Tix.Button(top, text = " >> ", pady = 0)
61 top.ent = Tix.LabelEntry(top, label="Installation Directory:",
62 labelside = 'top',
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ViewInnerTextTest.java 27 LinearLayout top = new LinearLayout(activity); local
28 top.addView(textView("blah"));
29 top.addView(new View(activity));
30 top.addView(textView("a b c"));
33 top.addView(innerLayout);
41 top.addView(textView("mnop"));
43 assertEquals("blah a b c d e f g h i jkl! mnop", shadowOf(top).innerText());
48 LinearLayout top = new LinearLayout(activity); local
49 top.addView(textView("blah", View.VISIBLE));
50 top.addView(textView("blarg", View.GONE))
58 LinearLayout top = new LinearLayout(activity); local
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ViewInnerTextTest.java 27 LinearLayout top = new LinearLayout(context); local
28 top.addView(textView("blah"));
29 top.addView(new View(context));
30 top.addView(textView("a b c"));
33 top.addView(innerLayout);
41 top.addView(textView("mnop"));
43 assertEquals("blah a b c d e f g h i jkl! mnop", shadowOf(top).innerText());
48 LinearLayout top = new LinearLayout(context); local
49 top.addView(textView("blah", View.VISIBLE));
50 top.addView(textView("blarg", View.GONE))
58 LinearLayout top = new LinearLayout(context); local
    [all...]
  /external/syslinux/
gen-id.sh 12 top=`dirname "$0"`
14 if test -n "$GIT_DIR" -o -d "$top"/.git -o -f "$top"/.git; then
  /frameworks/base/core/java/android/animation/
RectEvaluator.java 59 * (left, top, right, and bottom).
74 int top = startValue.top + (int) ((endValue.top - startValue.top) * 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).
76 int top = startValue.top + (int) ((endValue.top - startValue.top) * fraction); local
80 return new Rect(left, top, right, bottom);
82 mRect.set(left, top, right, bottom);
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
Utilities.java 10 int top = y - h / 2; local
12 int bottom = top + h;
13 d.setBounds(left, top, right, bottom);
  /external/libcxx/test/std/containers/container.adaptors/stack/stack.defn/
push_rv.pass.cpp 26 assert(q.top() == MoveOnly(1));
29 assert(q.top() == MoveOnly(2));
32 assert(q.top() == MoveOnly(3));
  /external/clang/test/Modules/Inputs/va_list/
left.h 1 @import top; variable
right.h 1 @import top; variable
  /external/libmojo/ui/gfx/geometry/
insets_f.cc 13 return base::StringPrintf("%f,%f,%f,%f", top(), left(), bottom(), right());
  /external/ltp/testscripts/
adp.sh 16 -d delay for top, in seconds
17 -n number of iterations for top
78 echo "Starting 'top', redirecting output to 'adp.log'..."
79 top -b -d $delay -n $iterations > adp.log &
  /external/skia/tests/
CanvasStateHelpers.h 22 void complex_layers_draw(SkCanvas* canvas, float left, float top,
32 float left, float top, float right, float bottom, int32_t spacer);
38 void complex_clips_draw(SkCanvas* canvas, int32_t left, int32_t top,
48 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp,
  /external/skqp/tests/
CanvasStateHelpers.h 22 void complex_layers_draw(SkCanvas* canvas, float left, float top,
32 float left, float top, float right, float bottom, int32_t spacer);
38 void complex_clips_draw(SkCanvas* canvas, int32_t left, int32_t top,
48 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pairing_heap_/
find_fn_imps.hpp 44 top() const function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/thin_heap_/
find_fn_imps.hpp 44 top() const function in class:PB_DS_CLASS_C_DEC

Completed in 859 milliseconds

12 3 4 5 6 7 8 91011>>