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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/
diamond_top.h 1 int top(int *);
  /external/chromium_org/third_party/skia/third_party/lua/src/
lapi.h 14 #define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \
18 { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; }
20 #define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \
  /external/fio/
cconv.c 48 struct thread_options_pack *top)
52 string_to_cpu(&o->description, top->description);
53 string_to_cpu(&o->name, top->name);
54 string_to_cpu(&o->directory, top->directory);
55 string_to_cpu(&o->filename, top->filename);
56 string_to_cpu(&o->filename_format, top->filename_format);
57 string_to_cpu(&o->opendir, top->opendir);
58 string_to_cpu(&o->ioengine, top->ioengine);
59 string_to_cpu(&o->mmapfile, top->mmapfile);
60 string_to_cpu(&o->read_iolog_file, top->read_iolog_file)
    [all...]
  /external/libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/
pop.pass.cpp 23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
29 assert(q.top() == 2);
31 assert(q.top() == 1);
emplace.pass.cpp 26 assert(q.top() == Emplaceable(1, 2.5));
28 assert(q.top() == Emplaceable(3, 4.5));
30 assert(q.top() == Emplaceable(3, 4.5));
push.pass.cpp 23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
push_rvalue.pass.cpp 26 assert(q.top() == 1);
28 assert(q.top() == 3);
30 assert(q.top() == 3);
top.pass.cpp 14 // const_reference top() const;
23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/
pop.pass.cpp 23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
29 assert(q.top() == 2);
31 assert(q.top() == 1);
emplace.pass.cpp 26 assert(q.top() == Emplaceable(1, 2.5));
28 assert(q.top() == Emplaceable(3, 4.5));
30 assert(q.top() == Emplaceable(3, 4.5));
push.pass.cpp 23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
push_rvalue.pass.cpp 26 assert(q.top() == 1);
28 assert(q.top() == 3);
30 assert(q.top() == 3);
top.pass.cpp 14 // const_reference top() const;
23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
  /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).
35 public float top; field in class:RectF
47 * top <= bottom.
50 * @param top The Y coordinate of the top of the rectangle
54 public RectF(float left, float top, float right, float bottom) {
56 this.top = top;
70 left = top = right = bottom = 0.0f
    [all...]
Insets.java 32 public final int top; field in class:Insets
36 private Insets(int left, int top, int right, int bottom) {
38 this.top = top;
49 * @param top the top 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...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-top.c 2 * builtin-top.c
4 * Builtin top command: Display a continuously updated profile of
34 #include "util/top.h"
76 static void perf_top__update_print_entries(struct perf_top *top)
78 top->print_entries = top->winsize.ws_row - HEADER_LINE_NR;
84 struct perf_top *top = arg; local
86 get_term_dimensions(&top->winsize);
87 perf_top__update_print_entries(top);
90 static int perf_top__parse_source(struct perf_top *top, struct hist_entry *he
566 struct perf_top *top = arg; local
595 struct perf_top *top = arg; local
690 struct perf_top *top = container_of(tool, struct perf_top, tool); local
1042 struct perf_top *top = opt->value; local
1052 struct perf_top top = { local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ZoomHeight.py 20 top = self.editwin.top
21 zoom_height(top)
23 def zoom_height(top):
24 geom = top.wm_geometry()
27 top.bell()
30 newheight = top.winfo_screenheight()
51 top.wm_geometry(newgeom)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ZoomHeight.py 20 top = self.editwin.top
21 zoom_height(top)
23 def zoom_height(top):
24 geom = top.wm_geometry()
27 top.bell()
30 newheight = top.winfo_screenheight()
51 top.wm_geometry(newgeom)
  /external/chromium_org/chrome/browser/resources/options/chromeos/
pointer_overlay.css 6 margin-top: 20px;
10 margin-top: 12px;
  /frameworks/native/services/surfaceflinger/DisplayHardware/
FloatRect.h 28 float top; 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/third_party/WebKit/Source/platform/geometry/
IntRectExtent.h 47 IntRectExtent(int top, int right, int bottom, int left)
48 : m_top(top)
55 int top() const { return m_top; } function in class:WebCore::IntRectExtent
56 void setTop(int top) { m_top = top; }
67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
74 rect.move(-left(), -top());
75 rect.expand(left() + right(), top() + bottom());
87 return a.top() == b.top()
    [all...]
  /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());
  /external/libcxx/test/containers/container.adaptors/stack/stack.defn/
push.pass.cpp 22 assert(q.top() == 1);
25 assert(q.top() == 2);
28 assert(q.top() == 3);
  /frameworks/base/libs/hwui/
Rect.h 32 (r).left, (r).top, (r).right, (r).bottom
34 (r).left(), (r).top(), (r).right(), (r).bottom()
43 float top; member in class:android::uirenderer::Rect
55 top(0),
60 inline Rect(float left, float top, float right, float bottom):
62 top(top),
69 top(0.0f),
76 top(rect.fTop),
90 left = top = right = bottom = 0.0f
    [all...]

Completed in 1618 milliseconds

1 2 3 4 5 6 7 8 91011>>