/frameworks/base/include/ui/ |
Rect.h | 38 left = top = 0; right = w; bottom = h; 41 left = l; top = t; right = r; bottom = b; 44 left = lt.x; top = lt.y; right = rb.x; bottom = rb.y; 50 left = top = right = bottom = 0; 74 return bottom-top; 79 top = lt.y; 89 return Point(left, top); 95 return Point(right, top); 103 return (left == rhs.left) && (top == rhs.top) & [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/freetype/src/psaux/ |
t1decode.c | 311 /* Now load `achar' on top of */ 395 decoder->top = decoder->stack; 434 FT_Long* top = decoder->top; local 445 FT_TRACE5(( " (%d)", decoder->top - decoder->stack )); 664 if ( top - decoder->stack >= T1_MAX_CHARSTRINGS_OPERANDS ) 677 *top++ = value; 678 decoder->top = top; 691 if ( top - decoder->stack < 2 [all...] |
/external/stlport/test/compiler/StTerm-order/ |
Makefile | 9 include ${SRCROOT}/Makefiles/top.mak
|
/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/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/tests/device/test-gnustl-full/unit/ |
queue_test.cpp | 40 CPPUNIT_ASSERT( q.top()==101 ); 42 CPPUNIT_ASSERT( q.top()==69 ); 44 CPPUNIT_ASSERT( q.top()==42 );
|
/ndk/tests/device/test-stlport/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,
|