/external/proguard/src/proguard/gui/splash/ |
TextSprite.java | 41 * @param x the variable x-coordinate of the lower-left corner of the text. 42 * @param y the variable y-coordinate of the lower-left corner of the text. 56 * @param x the variable x-coordinate of the lower-left corner of the 58 * @param y the variable y-coordinate of the lower-left corner of the
|
/external/skia/include/core/ |
SkRect.h | 34 /** Returns the rectangle's width. This does not check for a valid rectangle (i.e. left <= right) 61 void set(int32_t left, int32_t top, int32_t right, int32_t bottom) { 62 fLeft = left; 68 /** Offset set the rectangle by adding dx to its left and right, 94 empty. The left and top are considered to be inside, while the right 106 bool contains(int32_t left, int32_t top, int32_t right, int32_t bottom) const { 107 return left < right && top < bottom && !this->isEmpty() && // check for empties 108 fLeft <= left && fTop <= top && 126 bool containsNoEmptyCheck(int32_t left, int32_t top, 129 SkASSERT(left < right && top < bottom) [all...] |
/external/webkit/JavaScriptCore/assembler/ |
MacroAssemblerX86.h | 113 Jump branch32(Condition cond, AbsoluteAddress left, RegisterID right) 115 m_assembler.cmpl_rm(right, left.m_ptr); 119 Jump branch32(Condition cond, AbsoluteAddress left, Imm32 right) 121 m_assembler.cmpl_im(right.m_value, left.m_ptr); 147 Jump branchPtrWithPatch(Condition cond, RegisterID left, DataLabelPtr& dataLabel, ImmPtr initialRightValue = ImmPtr(0)) 149 m_assembler.cmpl_ir_force32(initialRightValue.asIntptr(), left); 154 Jump branchPtrWithPatch(Condition cond, Address left, DataLabelPtr& dataLabel, ImmPtr initialRightValue = ImmPtr(0)) 156 m_assembler.cmpl_im_force32(initialRightValue.asIntptr(), left.offset, left.base);
|
/external/webkit/WebCore/manual-tests/win/ |
horizontal-scroll-composited.html | 6 Try scolling right and left and verify that the content is displayed correctly.
|
/external/webkit/WebKit/qt/tests/qwebframe/resources/ |
testiframe.html | 11 left: 0px;
19 left: 0px;
28 left: 401px;
36 left: 0px;
|
/frameworks/base/core/tests/coretests/res/layout/ |
framelayout_gravity.xml | 22 <Button android:id="@+id/left" 23 android:layout_gravity="left" 41 android:layout_gravity="center_vertical|left" 59 android:layout_gravity="bottom|left"
|
/packages/apps/Browser/res/layout/ |
ssl_certificate.xml | 74 android:gravity="left" 84 android:gravity="left" 97 android:gravity="left" 107 android:gravity="left" 120 android:gravity="left" 130 android:gravity="left" 156 android:gravity="left" 166 android:gravity="left" 179 android:gravity="left" 189 android:gravity="left" [all...] |
/packages/inputmethods/LatinIME/java/res/xml/ |
kbd_phone_symbols.xml | 29 <Key android:keyLabel="(" android:keyEdgeFlags="left"/> 36 <Key android:keyLabel="N" android:keyEdgeFlags="left"/> 46 android:keyEdgeFlags="left"/> 60 android:keyEdgeFlags="left"/>
|
/development/samples/BrowserPlugin/jni/paint/ |
PaintPlugin.cpp | 112 clipR.left = dirtyRect->left; 125 newRect.left = (int) dirtyRect->left; 165 m_inputToggle.left = 5; 167 m_inputToggle.right = m_inputToggle.left + buttonWidth; 171 gCanvasI.drawText(canvas, inputText, strlen(inputText), m_inputToggle.left + 5, 175 m_colorToggle.left = (W/3) - (buttonWidth/2); 177 m_colorToggle.right = m_colorToggle.left + buttonWidth; 181 gCanvasI.drawText(canvas, colorText, strlen(colorText), m_colorToggle.left + 5 [all...] |
/external/dropbear/libtomcrypt/src/ciphers/ |
kasumi.c | 103 u16 left, right; local 106 left = (u16)(in>>16); 110 left ^= key->kasumi.KOi1[round_no]; 111 left = FI( left, key->kasumi.KIi1[round_no] ); 112 left ^= right; 116 right ^= left; 118 left ^= key->kasumi.KOi3[round_no]; 119 left = FI( left, key->kasumi.KIi3[round_no] ) 143 ulong32 left, right, temp; local 170 ulong32 left, right, temp; local [all...] |
/external/webkit/WebCore/inspector/front-end/ |
inspector.css | 69 left: 0; 74 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(191, 191, 191)), to(rgb(151, 151, 151))); 82 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(233, 233, 233)), to(rgb(207, 207, 207))); 95 padding-left: 0; 167 margin-left: 3px; 223 #close-button-left, #close-button-right { 233 #close-button-left:hover, #close-button-right:hover { 237 #close-button-left:active, #close-button-right:active [all...] |
/frameworks/base/awt/java/awt/ |
Graphics.java | 85 * the X coordinate of the rectangle's top left corner. 87 * the Y coordinate of the rectangle's top left corner. 172 * Draws the rectangle with the specified width and length and top left 176 * the X coordinate of the rectangle's top left corner. 178 * the Y coordinate of the rectangle's top left corner. 199 * the X coordinate of the rectangle's top left corner. 201 * the Y coordinate of the rectangle's top left corner. 373 * original location, negative dx and dy values - to the left and up. 429 * Draws the specified image with the defined background color. The top left 438 * the X coordinate of the image top left corner [all...] |
/external/iproute2/tc/ |
em_meta.c | 250 unsigned long *dst, struct tcf_meta_val *left) 280 if (left) { 283 if (TCF_META_TYPE(right->kind) == TCF_META_TYPE(left->kind)) 286 if (can_adopt(left) && !can_adopt(right)) { 287 if (is_compatible(left, right)) 288 left->kind = overwrite_type(left, right); 291 } else if (can_adopt(right) && !can_adopt(left)) { 292 if (is_compatible(right, left)) 293 right->kind = overwrite_type(right, left); [all...] |
/external/opencore/oscl/oscl/osclbase/src/ |
oscl_tree.h | 66 base_link_type left; member in struct:Oscl_Rb_Tree_Node_Base 73 while (x->left != 0) x = x->left; 143 while (node->left != 0) 145 node = node->left; 174 else if (node->left != 0) 176 base_link_type y = node->left; 184 while (node == y->left) 250 while (node->left != 0) 252 node = node->left; 715 static link_type& left(link_type x) function in class:Oscl_Rb_Tree 736 static link_type& left(base_link_type x) function in class:Oscl_Rb_Tree [all...] |
/frameworks/base/graphics/java/android/graphics/ |
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...] |
/external/icu4c/test/intltest/ |
intltest.h | 31 //UnicodeString operator+(const UnicodeString& left, int64_t num); // Some compilers don't allow this because of the long type. 32 UnicodeString operator+(const UnicodeString& left, long num); 33 UnicodeString operator+(const UnicodeString& left, unsigned long num); 34 UnicodeString operator+(const UnicodeString& left, double num); 35 UnicodeString operator+(const UnicodeString& left, char num); 36 UnicodeString operator+(const UnicodeString& left, short num); 37 UnicodeString operator+(const UnicodeString& left, int num); 38 UnicodeString operator+(const UnicodeString& left, unsigned char num); 39 UnicodeString operator+(const UnicodeString& left, unsigned short num); 40 UnicodeString operator+(const UnicodeString& left, unsigned int num); [all...] |
/frameworks/base/core/java/android/text/method/ |
Touch.java | 45 int left = Integer.MAX_VALUE; local 50 left = (int) Math.min(left, layout.getLineLeft(i)); 62 if (right - left < width - padding) { 64 diff = (width - padding - (right - left)) / 2; 66 diff = width - padding - (right - left); 71 x = Math.max(x, left - diff); 84 int left = Integer.MAX_VALUE; local 87 left = (int) Math.min(left, layout.getLineLeft(i)) [all...] |
/packages/apps/IM/src/com/android/im/engine/ |
ChatGroupManager.java | 77 * have left. 125 * registered GroupListeners will be notified when the the user left the 199 * @param left a list of users that have left the group. 202 ArrayList<Contact> left) { 213 if (left != null) { 214 for (Contact contact : left) { 242 * Notifies the GroupListeners that the user has left a certain group. 281 * Notifies that a contact has left this group. 283 * @param group the group which the contact has left [all...] |
/external/zlib/contrib/blast/ |
blast.c | 40 unsigned left; /* available input at in */ member in struct:state 64 * bit buffer, using shift left. 73 if (s->left == 0) { 74 s->left = s->infun(s->inhow, &(s->in)); 75 if (s->left == 0) longjmp(s->env, 1); /* out of input */ 78 s->left--; 82 /* drop need bits and update buffer, always zero to seven bits left */ 131 int left; /* bits left in next or left to process * local 189 int left; \/* number of possible codes left of current length *\/ local [all...] |
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-core.css | 48 -webkit-border-top-left-radius:5px; 54 float:left; 222 text-align:left; 281 float: left; 416 float: left; 424 margin-left: 40px; 438 float: left; 447 float: left; 464 text-align:left; 470 text-align:left; [all...] |
/external/skia/src/core/ |
SkRegion.cpp | 26 /* Pass in a scanline, beginning with the Left value of the pair (i.e. not the Y beginning) 67 assert_sentinel(runs[2], false); // left 79 int left = SK_MaxS32; 88 if (left > *runs) 89 left = *runs; 97 bounds->fLeft = left; 168 bool SkRegion::setRect(int32_t left, int32_t top, int32_t right, int32_t bottom) 170 if (left >= right || top >= bottom) 174 fBounds.set(left, top, right, bottom); 267 if (runs[2] == SkRegion::kRunTypeSentinel) // should be first left.. [all...] |
/dalvik/dx/tests/061-dex-try-catch/ |
Blort.java | 20 // This space intentionally left blank. 24 // This space intentionally left blank.
|
/dalvik/dx/tests/062-dex-synch-method/ |
Blort.java | 20 // This space intentionally left blank. 48 // This space intentionally left blank.
|
/dalvik/dx/tests/089-dex-define-object/ |
Object.java | 21 // This space intentionally left blank. 29 // This space intentionally left blank.
|
/development/apps/BuildWidget/res/layout/ |
widget.xml | 29 android:gravity="left" 38 android:gravity="left"
|