HomeSort by relevance Sort by last modified time
    Searched refs:top (Results 1 - 25 of 973) 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...]
  /dalvik/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 \
  /frameworks/base/awt/java/awt/
Insets.java 30 * the space that a container should leave at each edge: the top, the bottom,
44 * The top inset indicates the size of the space added to the top of the
47 public int top; field in class:Insets
68 * Instantiates a new Inset object with the specified top, left, bottom,
71 * @param top
72 * the top inset.
80 public Insets(int top, int left, int bottom, int right) {
81 setValues(top, left, bottom, right);
92 hashCode = HashCode.combine(hashCode, top);
    [all...]
  /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);
  /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;
  /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;
  /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...]
  /frameworks/base/include/ui/
Rect.h 29 int top; member in class:android::Rect
41 : left(0), top(0), right(w), bottom(h) {
44 : left(l), top(t), right(r), bottom(b) {
47 : left(lt.x), top(lt.y), right(rb.x), bottom(rb.y) {
53 left = top = right = bottom = 0;
77 return bottom-top;
82 top = lt.y;
92 return Point(left, top);
98 return Point(right, top);
106 return (left == rhs.left) && (top == rhs.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 &&
  /external/openssl/crypto/err/
err.c 122 static unsigned long get_error_values(int inc,int top,
172 es->top=(es->top+1)%ERR_NUM_ERRORS;
173 if (es->top == es->bottom)
175 es->err_flags[es->top]=0;
176 es->err_buffer[es->top]=ERR_PACK(lib,func,reason);
177 es->err_file[es->top]=file;
178 es->err_line[es->top]=line;
179 err_clear_data(es,es->top);
193 es->top=es->bottom=0
    [all...]
  /cts/tools/dasm/src/dasm/
parser.java 813 int top)
817 return action_obj.CUP$do_action(act_num, parser, stack, top);
    [all...]
  /external/stlport/test/compiler/StTerm-order/
Makefile 9 include ${SRCROOT}/Makefiles/top.mak
  /external/webkit/WebCore/css/
Rect.idl 23 readonly attribute CSSPrimitiveValue top;

Completed in 1178 milliseconds

1 2 3 4 5 6 7 8 91011>>