HomeSort by relevance Sort by last modified time
    Searched refs:top (Results 26 - 50 of 959) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/stlport/test/compiler/StTerm-order/
Makefile 9 include ${SRCROOT}/Makefiles/top.mak
  /external/webkit/WebCore/css/
Rect.idl 23 readonly attribute CSSPrimitiveValue top;
Rect.h 31 CSSPrimitiveValue* top() const { return m_top.get(); } function in class:WebCore::RectBase
36 void setTop(PassRefPtr<CSSPrimitiveValue> top) { m_top = top; }
  /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;
  /external/skia/src/core/
SkRect.cpp 19 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom)
22 if (left >= right || top >= bottom)
27 this->set(left, top, right, bottom);
31 if (top < fTop) fTop = top;
107 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom)
109 if (left < right && top < bottom && !this->isEmpty() && // check for empties
110 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
113 if (fTop < top) fTop = top;
    [all...]
SkBlitter_Sprite.cpp 31 void SkSpriteBlitter::setup(const SkBitmap& device, int left, int top,
36 fTop = top;
70 int left, int top,
76 a bit of a hack, since we "could" pass in the fractional left/top for the bitmap,
98 blitter->setup(device, left, top, paint);
  /external/openssl/crypto/bn/
bn_rand.c 118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom)
141 /* make a random number and set the top and bottom bits */
177 if (top != -1)
179 if (top)
211 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom)
213 return bnrand(0, rnd, bits, top, bottom);
216 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom)
218 return bnrand(1, rnd, bits, top, bottom);
222 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom)
224 return bnrand(2, rnd, bits, top, bottom)
    [all...]
bn_lib.c 250 int i = a->top - 1;
308 ret->top=0;
347 for (i=b->top>>2; i>0; i--,A+=4,B+=4)
362 switch (b->top&3)
368 * the switch table by doing a=top&3; a--; goto jump_table[a];
369 * which fails for top== 0 */
376 memcpy(A,b->d,sizeof(b->d[0])*b->top);
401 * words <= b->dmax && top < words
415 r->top = b->top;
    [all...]
  /sdk/emulator/qtools/
read_method.cpp 28 int top; member in class:Stack
33 top = 0;
42 if (top == kMaxFrames) {
46 frames[top] = pframe;
47 top += 1;
51 if (top <= 0)
53 top -= 1;
54 return frames[top];
60 for (int ii = 0; ii < top; ii++) {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Cube.java 22 public Cube(GLWorld world, float left, float bottom, float back, float right, float top, float front) {
26 GLVertex leftTopBack = addVertex(left, top, back);
27 GLVertex rightTopBack = addVertex(right, top, back);
30 GLVertex leftTopFront = addVertex(left, top, front);
31 GLVertex rightTopFront = addVertex(right, top, front);
44 // top
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionIteratorTest.java 57 assertEquals(1, rect.top);
63 assertEquals(1, rect.top);
74 assertEquals(1, rect.top);
79 assertEquals(5, rect.top);
84 assertEquals(10, rect.top);
90 assertEquals(1, rect.top);
101 assertEquals(1, rect.top);
106 assertEquals(5, rect.top);
112 assertEquals(1, rect.top);
123 assertEquals(5, rect.top);
    [all...]
Paint_FontMetricsIntTest.java 46 int top = 1; local
53 fontMetricsInt.top = top;
  /external/stlport/test/unit/
queue_test.cpp 40 CPPUNIT_ASSERT( q.top()==101 );
42 CPPUNIT_ASSERT( q.top()==69 );
44 CPPUNIT_ASSERT( q.top()==42 );
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandedView.java 49 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
50 super.onLayout(changed, left, top, right, bottom);
51 int height = bottom - top;
  /ndk/sources/android/stlport/test/unit/
queue_test.cpp 40 CPPUNIT_ASSERT( q.top()==101 );
42 CPPUNIT_ASSERT( q.top()==69 );
44 CPPUNIT_ASSERT( q.top()==42 );
  /cts/tests/tests/view/src/android/view/cts/
GravityTest.java 72 Gravity.apply(Gravity.TOP, 2, 3, mInRect, mOutRect);
75 assertEquals(20, mOutRect.top);
77 Gravity.apply(Gravity.TOP, 2, 3, mInRect, 5, 5, mOutRect);
80 assertEquals(25, mOutRect.top);
86 assertEquals(37, mOutRect.top);
91 assertEquals(32, mOutRect.top);
97 assertEquals(25, mOutRect.top);
102 assertEquals(30, mOutRect.top);
108 assertEquals(25, mOutRect.top);
113 assertEquals(30, mOutRect.top);
    [all...]
  /external/stlport/test/compiler/
gcc.mak 9 include ${SRCROOT}/Makefiles/top.mak
  /external/webkit/WebCore/dom/
ClientRect.idl 30 readonly attribute float top;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
LayoutRenderer.java 70 g.clipRect(insets.left, insets.top,
72 getHeight() - insets.top - insets.bottom);
84 int y = (getHeight() - insets.top - insets.bottom - root.height) / 2;
85 g.translate(insets.left + x, insets.top + y);
88 g.drawRect(root.left, root.top, root.width - 1, root.height - 1);
89 g.clipRect(root.left - 1, root.top - 1, root.width + 1, root.height + 1);
99 s.translate(p.left - p.scrollX, p.top - p.scrollY);
103 s.drawImage(node.image, node.left, node.top, null);
105 s.drawRect(node.left, node.top, node.width - 1, node.height - 1);
109 g.translate(-insets.left - x, -insets.top - y)
    [all...]
  /frameworks/base/core/java/android/text/style/
LineBackgroundSpan.java 27 int top, int baseline, int bottom,
  /libcore/luni/src/main/java/org/apache/xml/serializer/
NamespaceMappings.java 88 * depth can be popped of the top and the same node
375 private int top = -1; field in class:NamespaceMappings.Stack
382 clone.top = this.top;
384 for (int i=0; i <= top; i++) {
397 top++;
398 if (max <= top) {
405 m_stack[top] = o;
411 if (0 <= top) {
412 o = m_stack[top];
    [all...]
  /frameworks/base/graphics/java/android/graphics/
YuvImage.java 28 * region by left, top, width and height.
139 int[] offsets = calculateOffsets(rectangle.left, rectangle.top);
182 int[] calculateOffsets(int left, int top) {
185 offsets = new int[] {top * mStrides[0] + left,
186 mHeight * mStrides[0] + top / 2 * mStrides[1]
192 offsets = new int[] {top * mStrides[0] + left / 2 * 4};
218 // Make sure left, top, width and height are all even.
222 rect.top &= ~1;
224 rect.bottom = rect.top + height;
Region.java 56 nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom);
61 public Region(int left, int top, int right, int bottom) {
63 nativeSetRect(mNativeRegion, left, top, right, bottom);
81 return nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom);
86 public boolean set(int left, int top, int right, int bottom) {
87 return nativeSetRect(mNativeRegion, left, top, right, bottom);
166 return quickContains(r.left, r.top, r.right, r.bottom);
175 public native boolean quickContains(int left, int top, int right,
184 return quickReject(r.left, r.top, r.right, r.bottom);
192 public native boolean quickReject(int left, int top, int right, int bottom)
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
RecentApplicationsBackground.java 61 protected boolean setFrame(int left, int top, int right, int bottom) {
63 if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) {
66 return super.setFrame(left, top, right, bottom);
95 final int top = chld.top - bkg.top; local
110 background.setBounds(left, top, right, bottom);
139 r.left = r.top = Integer.MAX_VALUE;
146 r.top = Math.min(r.top, v.getTop())
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_BView.h 65 bounds.top = bounds.left = 0;
88 dest.top = updateRect.top + yoff;
101 dest.top = updateRect.top + yoff;

Completed in 827 milliseconds

12 3 4 5 6 7 8 91011>>