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

1 2 3 4 5 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pairing_heap_/
find_fn_imps.hpp 44 top() const function in class:PB_DS_CLASS_C_DEC
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/thin_heap_/
find_fn_imps.hpp 44 top() const function in class:PB_DS_CLASS_C_DEC
  /external/v8/test/mjsunit/regress/
regress-2249423.js 31 function top() { function
40 top();
  /external/dropbear/libtommath/
bn_mp_rshd.c 35 register mp_digit *bottom, *top; local
42 /* top [offset into digits] */
43 top = a->dp + b;
47 * the top of the window are copied to the bottom
56 *bottom++ = *top++;
59 /* zero the top digits */
bn_mp_lshd.c 36 register mp_digit *top, *bottom; local
41 /* top */
42 top = a->dp + a->used - 1;
49 * the bottom to the top. see bn_mp_rshd.c for more info.
52 *top-- = *bottom--;
56 top = a->dp;
58 *top++ = 0;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binomial_heap_base_/
find_fn_imps.hpp 44 top() const function in class:PB_DS_CLASS_C_DEC
  /external/webkit/JavaScriptCore/pcre/
pcre_ucp_searchfuncs.cpp 66 int top = sizeof(ucp_table) / sizeof(cnode); local
75 if (top <= bot)
77 mid = (bot + top) >> 1;
81 top = mid;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binary_heap_/
find_fn_imps.hpp 44 top() const function in class:PB_DS_CLASS_C_DEC
  /development/ndk/platforms/android-9/include/android/
rect.h 27 int32_t top; member in struct:ARect
  /external/clearsilver/ruby/ext/hdf/
neo_ruby.h 8 VALUE top; member in struct:s_hdfh
  /frameworks/base/native/include/android/
rect.h 27 int32_t top; member in struct:ARect
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/ui/
GridDialog.java 29 * jface-based dialog that properly sets up a {@link GridLayout} top composite with the proper
63 Composite top = new Composite(parent, SWT.NONE); local
70 top.setLayout(layout);
71 top.setLayoutData(new GridData(GridData.FILL_BOTH));
73 createDialogContent(top);
75 applyDialogFont(top);
76 return top;
  /dalvik/vm/alloc/
MarkSweep.h 29 /* Current top of the stack (inclusive)
31 const Object **top; member in struct:__anon686
  /external/skia/src/svg/
SkSVGCircle.cpp 38 SkScalar left, top, right, bottom; local
40 top = cy - r;
46 sprintf(scratch, "%g", top);
47 parser._addAttribute("top", scratch);
SkSVGEllipse.cpp 40 SkScalar left, top, right, bottom; local
42 top = cy - ry;
48 sprintf(scratch, "%g", top);
49 parser._addAttribute("top", scratch);
  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_FontMetricsIntTest.java 46 int top = 1; local
53 fontMetricsInt.top = top;
  /cts/tools/dasm/src/java_cup/runtime/
virtual_parse_stack.java 7 * replaces the top portion of the actual parse stack (the part that
56 /** Top of stack indicator for where we leave off in the real stack.
57 * This is measured from top of stack, so 0 would indicate that no
64 /** The virtual top portion of the stack. This stack contains Integer
65 * objects with state numbers. This stack shadows the top portion
108 /** Return value on the top of the stack (without popping it). */
109 public int top() throws java.lang.Exception method in class:virtual_parse_stack
113 "Internal parser error: top() called on empty virtual stack");
  /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/iproute2/netem/
stats.c 24 double mu=0.0, sigma=0.0, sumsquare=0.0, sum=0.0, top=0.0, rho=0.0; local
47 top += ((double)x[i]-mu)*((double)x[i-1]-mu);
51 rho = top/sigma2;
57 /*printf("correlation rho = %10.6f\n", top/((double)(n-1)*sigma*sigma));*/
  /external/webkit/WebCore/dom/
ClientRect.h 43 float top() const { return m_rect.y(); } function in class:WebCore::ClientRect
  /external/webkit/WebCore/platform/
LengthBox.h 59 Length top() const { return m_top; } function in struct:WebCore::LengthBox
Widget.cpp 58 const Widget* top = this; local
59 while (top->parent())
60 top = top->parent();
61 if (top->isFrameView())
62 return const_cast<ScrollView*>(static_cast<const ScrollView*>(top));
  /external/bison/src/
relation.c 57 static relation_node top; variable
67 VERTICES[++top] = i;
68 INDEX[i] = height = top;
85 j = VERTICES[top--];
104 top = 0;
  /external/skia/experimental/
SkSetPoly3To3_D.cpp 7 int top = result >> 31; local
8 SkASSERT(top == 0 || top == -1);
  /external/webkit/WebCore/css/
Rect.h 31 CSSPrimitiveValue* top() const { return m_top.get(); } function in class:WebCore::RectBase
36 void setTop(PassRefPtr<CSSPrimitiveValue> top) { m_top = top; }

Completed in 1046 milliseconds

1 2 3 4 5 6 7 8 91011>>