/external/webkit/JavaScriptCore/assembler/ |
MacroAssemblerX86_64.h | 292 void setPtr(Condition cond, RegisterID left, Imm32 right, RegisterID dest) 295 m_assembler.testq_rr(left, left); 297 m_assembler.cmpq_ir(right.m_value, left); 302 Jump branchPtr(Condition cond, RegisterID left, RegisterID right) 304 m_assembler.cmpq_rr(right, left); 308 Jump branchPtr(Condition cond, RegisterID left, ImmPtr right) 311 return branchPtr(cond, left, scratchRegister); 314 Jump branchPtr(Condition cond, RegisterID left, Address right) 316 m_assembler.cmpq_mr(right.offset, right.base, left); [all...] |
MacroAssemblerARM.h | 362 Jump branch32(Condition cond, RegisterID left, RegisterID right, int useConstantPool = 0) 364 m_assembler.cmp_r(left, right); 368 Jump branch32(Condition cond, RegisterID left, Imm32 right, int useConstantPool = 0) 372 m_assembler.cmp_r(left, ARMRegisters::S0); 374 m_assembler.cmp_r(left, m_assembler.getImm(right.m_value, ARMRegisters::S0)); 378 Jump branch32(Condition cond, RegisterID left, Address right) 381 return branch32(cond, left, ARMRegisters::S1); 384 Jump branch32(Condition cond, Address left, RegisterID right) 386 load32(left, ARMRegisters::S1); 390 Jump branch32(Condition cond, Address left, Imm32 right [all...] |
MacroAssemblerX86Common.h | 438 Jump branchDouble(DoubleCondition cond, FPRegisterID left, FPRegisterID right) 443 m_assembler.ucomisd_rr(left, right); 445 m_assembler.ucomisd_rr(right, left); 623 Jump branch32(Condition cond, RegisterID left, RegisterID right) 625 m_assembler.cmpl_rr(right, left); 629 Jump branch32(Condition cond, RegisterID left, Imm32 right) 632 m_assembler.testl_rr(left, left); 634 m_assembler.cmpl_ir(right.m_value, left); 638 Jump branch32(Condition cond, RegisterID left, Address right [all...] |
/frameworks/base/core/java/android/view/ |
FocusFinder.java | 75 // make up a rect at top left or bottom right of root 153 * @param direction the direction (up, down, left, right) 210 // for example, for direction left, if rect1 is to the left of the source 242 * checks whether the dest is at least partially to the direction of (e.g left of) 251 return (srcRect.right > destRect.right || srcRect.left >= destRect.right) 252 && srcRect.left > destRect.left; 254 return (srcRect.left < destRect.left || srcRect.right <= destRect.left [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
RectTest.java | 80 assertEquals(1, mRect.left); 97 assertEquals(1, mRect.left); 112 assertEquals(0, mRect.left); 119 assertEquals(0, mRect.left); 165 assertEquals(1, mRect.left); 185 assertEquals(5, mRect.left); 193 assertEquals(5, mRect.left); 208 // 1. left < right, top < bottom 209 // this.left < this.right, this.top < this.bottom 213 assertEquals(0, mRect.left); [all...] |
EmbossMaskFilterTest.java | 71 Rect left = new Rect(0, 0, CENTER_X, BITMAP_HEIGHT); local 75 assertTrue(brightness(bitmap, left) > brightness(bitmap, right)); 82 left.right = START_X; 83 assertEquals(0, brightness(bitmap, left)); 84 right.left = END_X; 95 for (int x = rect.left; x < rect.right; x++) {
|
/external/wpa_supplicant_6/wpa_supplicant/src/tls/ |
tlsv1_server_read.c | 39 size_t left, len, i, j; local 54 left = *in_len; 56 if (left < 4) 72 left -= 4; 74 if (len > left) 271 size_t left, len, list_len, cert_len, idx; local 285 left = *in_len; 287 if (left < 4) { 289 "(len=%lu)", (unsigned long) left); 298 left -= 4 678 size_t left, len; local 756 size_t left, len; local 923 size_t left; local 972 size_t left, len, hlen; local [all...] |
/bootable/recovery/edify/ |
expr.c | 190 char* left = Evaluate(state, argv[0]); local 191 if (left == NULL) return NULL; 192 if (BooleanString(left) == true) { 193 free(left); 196 return StringValue(left); 202 char* left = Evaluate(state, argv[0]); local 203 if (left == NULL) return NULL; 204 if (BooleanString(left) == false) { 205 free(left); 208 return StringValue(left); 238 char* left = Evaluate(state, argv[0]); local 253 char* left = Evaluate(state, argv[0]); local 268 Value* left = EvaluateValue(state, argv[0]); local 281 char* left; local [all...] |
/external/skia/src/core/ |
SkBlitter_Sprite.cpp | 31 void SkSpriteBlitter::setup(const SkBitmap& device, int left, int top, 35 fLeft = left; 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/webkit/WebCore/manual-tests/ |
window-open-features-parsing.html | 7 - left: reads as key:left value:no, which means 0, which means aligned to the left side of the screen 12 var sFeatures = " ,=\twidth == = = 0200px|0=height 400,1width=400,left=nO \ntoolBAR=yeS,resizable=yess, \rstatus= ,"; 23 <li> A window aligned to the left hand side of the screen.
|
/system/core/sh/ |
arith.y | 63 %left ARITH_OR 64 %left ARITH_AND 65 %left ARITH_BOR 66 %left ARITH_BXOR 67 %left ARITH_BAND 68 %left ARITH_EQ ARITH_NE 69 %left ARITH_LT ARITH_GT ARITH_GE ARITH_LE 70 %left ARITH_LSHIFT ARITH_RSHIFT 71 %left ARITH_ADD ARITH_SUB 72 %left ARITH_MUL ARITH_DIV ARITH_RE [all...] |
/external/webkit/WebCore/rendering/style/ |
BorderData.h | 36 BorderValue left; member in class:WebCore::BorderData 51 return left.nonZero(!haveImage) || right.nonZero(!haveImage) || top.nonZero(!haveImage) || bottom.nonZero(!haveImage); 69 if (!image.hasImage() && (left.style() == BNONE || left.style() == BHIDDEN)) 71 return left.width; 97 return left == o.left && right == o.right && top == o.top && bottom == o.bottom && image == o.image &&
|
/packages/apps/Camera/src/com/android/camera/ui/ |
RotatePane.java | 30 public static final int LEFT = 3; 38 boolean change, int left, int top, int right, int bottom) { 39 int width = right - left; 46 case LEFT: 62 case LEFT: 85 case LEFT: 104 case LEFT: event.setLocation(height - y, x); break;
|
GLView.java | 96 private boolean setBounds(int left, int top, int right, int bottom) { 97 boolean sizeChanged = (right - left) != (mBounds.right - mBounds.left) 99 mBounds.set(left, top, right, bottom); 160 return mBounds.right - mBounds.left; 205 int xoffset = component.mBounds.left - mScrollX; 239 int left = rect.left; local 242 event.offsetLocation(-left, -top); 244 event.offsetLocation(left, top) [all...] |
/external/zlib/examples/ |
gzjoin.c | 80 unsigned left; /* bytes remaining at next */ member in struct:__anon7060 112 in->left = 0; 126 if (in->left != 0) 130 len = (long)read(in->fd, in->buf + in->left, CHUNK - in->left); 133 in->left += (unsigned)len; 134 } while (len != 0 && in->left < CHUNK); 139 #define bget(in) (in->left ? 0 : bload(in), \ 140 in->left ? (in->left--, *(in->next)++) : 175 unsigned left; local [all...] |
/build/tools/droiddoc/templates/assets/ |
android-developer-core.css | 171 text-align:left; 194 border-left:2px solid #eee; 241 float: left; 371 float: left; 379 margin-left: 40px; 393 float: left; 402 float: left; 419 text-align:left; 429 text-align:left; 436 float: left; [all...] |
/development/samples/BrowserPlugin/jni/audio/ |
AudioPlugin.cpp | 60 inval.left = rnd16(r.left, inset); 195 clipR.left = clip.left; 225 m_trackRect.left = 1; 238 m_playRect.left = m_trackRect.left + 5; 240 m_playRect.right = m_playRect.left + buttonWidth; 245 gCanvasI.drawText(canvas, playText, sizeof(playText)-1, m_playRect.left + 5, 249 m_pauseRect.left = m_playRect.right + 20 [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xpath/operations/ |
Operation.java | 36 /** The left operand expression. 80 * Set the left and right operand expressions for this operation. 83 * @param l The left expression operand. 109 XObject left = m_left.execute(xctxt, true); local 112 XObject result = operate(left, right); 113 left.detach(); 122 * @param left non-null reference to the evaluated left operand. 129 public XObject operate(XObject left, XObject right) 135 /** @return the left operand of binary operation, as an Expression [all...] |
/frameworks/base/core/java/android/database/ |
CursorJoiner.java | 32 * case LEFT: 59 /** The row currently pointed to by the left cursor is unique */ 62 LEFT, 68 * Initializes the CursorJoiner and resets the cursors to the first row. The left and right 70 * @param cursorLeft The left cursor to compare 71 * @param columnNamesLeft The column names to compare from the left cursor 80 "you must have the same number of columns on the left and right, " 126 case LEFT: 152 * @return LEFT, if the row pointed to by the left cursor is unique, RIGH [all...] |
/frameworks/base/include/private/ui/ |
RegionHelper.h | 81 TYPE left, right; local 82 int inside = spannerInner.next(current.left, current.right); 84 if (current.left < current.right && 224 SpannerBase::lhs_head = lhs.rects->left + lhs.dx; 231 SpannerBase::rhs_head = rhs.rects->left + rhs.dx; 234 SpannerBase::lhs_head = lhs.rects->left + lhs.dx; 236 SpannerBase::rhs_head = rhs.rects->left + rhs.dx; 246 inline int next(TYPE& left, TYPE& right) 250 int inside = SpannerBase::next(left, right, more_lhs, more_rhs); 262 void advance(region& reg, TYPE& left, TYPE& right) [all...] |
/dalvik/docs/opcodes/ |
opcode.css | 40 text-align: left; 51 padding-left: 4px; 68 margin-left: 48px; 79 padding-left: 2px; 118 margin-left: 48px; 146 margin-left: 48px;
|
/external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/ |
wpa_ie.c | 58 int left; local 94 left = wpa_ie_len - sizeof(*hdr); 96 if (left >= WPA_SELECTOR_LEN) { 99 left -= WPA_SELECTOR_LEN; 100 } else if (left > 0) { 102 __func__, left); 106 if (left >= 2) { 110 left -= 2; 111 if (count == 0 || left < count * WPA_SELECTOR_LEN) { 113 "count %u left %u", __func__, count, left) [all...] |
/frameworks/base/core/res/res/layout/ |
screen_title_icons.xml | 30 <!-- The title background has 9px left padding. --> 49 also make 6dip (with the -3dip margin_left) to the icon on the left or 50 the screen left edge if no icon. This also places our left edge 3dip to 51 the left of the title text left edge. -->
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
BubbleTextView.java | 80 protected boolean setFrame(int left, int top, int right, int bottom) { 81 if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) { 84 return super.setFrame(left, top, right, bottom); 124 final int left = getCompoundPaddingLeft(); local 127 rect.set(left + layout.getLineLeft(0) - mPaddingH, 129 Math.min(left + layout.getLineRight(0) + mPaddingH, mScrollX + mRight - mLeft),
|
/dalvik/libcore/dalvik/src/main/native/ |
org_apache_harmony_dalvik_NativeTestTarget.c | 26 // This space intentionally left blank. 38 // This space intentionally left blank. 50 // This space intentionally left blank.
|