/external/clang/test/Modules/Inputs/ |
diamond_top.h | 1 int top(int *);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/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/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/syslinux/com32/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) 53 o->set_options[i] = le64_to_cpu(top->set_options[i]); 55 string_to_cpu(&o->description, top->description); 56 string_to_cpu(&o->name, top->name); 57 string_to_cpu(&o->directory, top->directory); 58 string_to_cpu(&o->filename, top->filename); 59 string_to_cpu(&o->filename_format, top->filename_format); 60 string_to_cpu(&o->opendir, top->opendir); 61 string_to_cpu(&o->ioengine, top->ioengine); 62 string_to_cpu(&o->mmapfile, top->mmapfile) [all...] |
/external/libcxx/test/std/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 | 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). 34 public float top; field in class:RectF 46 * top <= bottom. 49 * @param top The Y coordinate of the top of the rectangle 53 public RectF(float left, float top, float right, float bottom) { 55 this.top = top; 69 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...] |
/prebuilts/ndk/r11/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);
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/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);
|
/external/pdfium/core/fpdfdoc/ |
cpvt_floatrect.h | 14 CPVT_FloatRect() { left = top = right = bottom = 0.0f; } 21 top = other_top; 28 top = rect.top; 33 void Default() { left = top = right = bottom = 0.0f; } 36 if (top > bottom) 37 return top - bottom; 38 return bottom - top;
|
/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/ |
MockRectF.java | 27 //public float top;
41 it.top = rhs.top;
47 public void $init(float left, float top, float right, float bottom) {
49 it.top = top;
64 it.top = it.top + dy;
69 public void offsetTo(float left, float top) {
72 it.bottom = top + height(); [all...] |
/external/libcxx/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);
|