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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/
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).
35 public int top; field in class:Rect
50 * top <= bottom.
53 * @param top The Y coordinate of the top of the rectangle
57 public Rect(int left, int top, int right, int bottom) {
59 this.top = top;
73 top = r.top
    [all...]
RectF.java 26 * represented by the coordinates of its 4 edges (left, top, right bottom).
29 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
33 public float top; field in class:RectF
45 * top <= bottom.
48 * @param top The Y coordinate of the top of the rectangle
52 public RectF(float left, float top, float right, float bottom) {
54 this.top = top;
68 top = r.top
    [all...]
  /libcore/
run-core-tests-on-ri 19 top=$ANDROID_BUILD_TOP
21 java -cp $top/cts/tools/utils/lib/junit.jar:$top/out/host/common/core-tests.jar \
  /external/clearsilver/ruby/ext/hdf/
neo_ruby.h 8 VALUE top; member in struct:s_hdfh
  /packages/apps/Mms/src/com/android/mms/ui/
AdaptableSlideViewInterface.java 27 void setTextRegion(int left, int top, int width, int height);
31 void setImageRegion(int left, int top, int width, int height);
35 void setVideoRegion(int left, int top, int width, int height);
  /packages/apps/Calendar/src/com/android/calendar/
EventGeometry.java 48 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...]
  /frameworks/base/libs/ui/
Rect.cpp 31 top = 0;
38 if (top<rhs.top) {
40 } else if (top == rhs.top) {
59 bottom -= top - y;
61 top = y;
68 top += y;
76 const Rect result(left+rhs.x, top+rhs.y, right+rhs.x, bottom+rhs.y);
82 const Rect result(left-rhs.x, top-rhs.y, right-rhs.x, bottom-rhs.y)
    [all...]
  /external/stlport/test/unit/
stack_test.cpp 39 CPPUNIT_ASSERT(s.top()==69);
41 CPPUNIT_ASSERT(s.top()==101);
43 CPPUNIT_ASSERT(s.top()==42);
53 CPPUNIT_ASSERT(s.top()==69);
55 CPPUNIT_ASSERT(s.top()==101);
57 CPPUNIT_ASSERT(s.top()==42);
  /ndk/tests/device/test-gnustl-full/unit/
stack_test.cpp 39 CPPUNIT_ASSERT(s.top()==69);
41 CPPUNIT_ASSERT(s.top()==101);
43 CPPUNIT_ASSERT(s.top()==42);
53 CPPUNIT_ASSERT(s.top()==69);
55 CPPUNIT_ASSERT(s.top()==101);
57 CPPUNIT_ASSERT(s.top()==42);
  /ndk/tests/device/test-stlport/unit/
stack_test.cpp 39 CPPUNIT_ASSERT(s.top()==69);
41 CPPUNIT_ASSERT(s.top()==101);
43 CPPUNIT_ASSERT(s.top()==42);
53 CPPUNIT_ASSERT(s.top()==69);
55 CPPUNIT_ASSERT(s.top()==101);
57 CPPUNIT_ASSERT(s.top()==42);
  /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/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;
  /development/ndk/platforms/android-9/include/android/
rect.h 27 int32_t top; member in struct:ARect
  /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;
  /frameworks/base/native/include/android/
rect.h 27 int32_t top; member in struct:ARect
  /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
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-111557.js 51 * NOTE: have defined |top| as |this| to make this a standalone JS shell test.
52 * This came from the HTML of a frame, where |top| would have its DOM meaning.
54 var top = this;
56 top.authors = new Array();
57 top.titles = new Array();
61 top.authors[i] = "zPROD xA.5375.";
62 top.titles[i] = "NDS Libraries for C";
65 top.authors[i] = "zFLDR xB.5375.0100.";
66 top.titles[i] = "NDS Backup Services";
69 top.authors[i] = "zFLDR xC.5375.0100.0001."
    [all...]
  /external/openssl/crypto/bn/
bn_shift.c 74 if (bn_wexpand(r,a->top+1) == NULL) return(0);
75 r->top=a->top;
79 if (bn_wexpand(r,a->top+1) == NULL) return(0);
84 for (i=0; i<a->top; i++)
93 r->top++;
114 if (bn_wexpand(r,a->top) == NULL) return(0);
115 r->top=a->top;
121 for (i=a->top-1; i>=0; i--
    [all...]
bn_word.c 77 for (i=a->top-1; i>=0; i--)
101 if (a->top == 0)
110 for (i=a->top-1; i>=0; i--)
119 if ((a->top > 0) && (a->d[a->top-1] == 0))
120 a->top--;
148 if (((BN_ULONG)(a->d[a->top - 1] + 1) == 0) &&
149 (bn_wexpand(a,a->top+1) == NULL))
154 if (i >= a->top)
165 if (i >= a->top)
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
IntRectWin.cpp 35 : m_location(IntPoint(r.left, r.top)), m_size(IntSize(r.right-r.left, r.bottom-r.top))
  /packages/apps/Mms/src/com/android/mms/model/
RegionModel.java 30 public RegionModel(String regionId, int left, int top,
32 this(regionId, DEFAULT_FIT, left, top, width, height);
35 public RegionModel(String regionId, String fit, int left, int top,
37 this(regionId, fit, left, top, width, height, null);
40 public RegionModel(String regionId, String fit, int left, int top,
45 mTop = top;
96 * @param top the mTop to set
98 public void setTop(int top) {
99 mTop = top;
  /packages/apps/Mms/src/org/w3c/dom/smil/
SMILRegionElement.java 14 * 2) ADD public void setLeft(int top) throws DOMException;
41 public void setLeft(int top)
49 public void setTop(int top)
  /frameworks/base/core/java/android/view/
Gravity.java 32 /** Raw bit controlling how the left/top edge is placed. */
45 /** Push object to the top of its container, not changing its size. */
46 public static final int TOP = (AXIS_PULL_BEFORE|AXIS_SPECIFIED)<<AXIS_Y_SHIFT;
59 public static final int FILL_VERTICAL = TOP|BOTTOM;
141 * @param yAdj Offset to apply to the Y axis. If gravity is TOP this pushes
193 outRect.top = container.top
194 + ((container.bottom - container.top - h)/2) + yAdj;
195 outRect.bottom = outRect.top + h;
198 if (outRect.top < container.top)
    [all...]
  /external/webkit/WebCore/rendering/style/
BorderData.h 38 BorderValue top; member in class:WebCore::BorderData
51 return left.nonZero(!haveImage) || right.nonZero(!haveImage) || top.nonZero(!haveImage) || bottom.nonZero(!haveImage);
83 if (!image.hasImage() && (top.style() == BNONE || top.style() == BHIDDEN))
85 return top.width;
97 return left == o.left && right == o.right && top == o.top && bottom == o.bottom && image == o.image &&

Completed in 798 milliseconds

1 2 3 4 5 6 7 8 91011>>