/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentSkipListMap.java | 80 * +-+ right +-+ +-+ 285 * Index: q, r, d for index node, right, down. 514 volatile Index<K,V> right; field in class:ConcurrentSkipListMap.Index 519 Index(Node<K,V> node, Index<K,V> down, Index<K,V> right) { 522 this.right = right; 526 * compareAndSet right field 550 newSucc.right = succ; 555 * Tries to CAS right field to skip over apparent successor 562 return !indexesDeletedNode() && casRight(succ, succ.right); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ast.py | 306 self.assertEqual(x._fields, ('left', 'op', 'right')) 318 self.assertEqual(x.right, n3) 323 self.assertEqual(x.right, 3) 328 self.assertEqual(x.right, 3) 341 x = ast.BinOp(left=1, op=2, right=3, lineno=0) 344 self.assertEqual(x.right, 3) 414 src.body.right = ast.copy_location(ast.Num(2), src.body.right) 417 'op=Add(), right=Num(n=2, lineno=1, col_offset=4), lineno=1, ' 442 'op=Add(), right=Num(n=1, lineno=4, col_offset=4), lineno=4, [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ast.py | 306 self.assertEqual(x._fields, ('left', 'op', 'right')) 318 self.assertEqual(x.right, n3) 323 self.assertEqual(x.right, 3) 328 self.assertEqual(x.right, 3) 341 x = ast.BinOp(left=1, op=2, right=3, lineno=0) 344 self.assertEqual(x.right, 3) 414 src.body.right = ast.copy_location(ast.Num(2), src.body.right) 417 'op=Add(), right=Num(n=2, lineno=1, col_offset=4), lineno=1, ' 442 'op=Add(), right=Num(n=1, lineno=4, col_offset=4), lineno=4, [all...] |
/external/chromium_org/styleguide/c++/ |
c++11.css | 85 margin-right: 100px; 137 p .right { 139 float:right; 448 figure.right { 449 float:right; 478 float:right; 642 margin-right:16px;
|
/external/chromium_org/third_party/webrtc/modules/video_render/mac/ |
video_render_agl.cc | 996 if (_windowWidth != (_windowRect.right - _windowRect.left) 1005 _windowWidth = _windowRect.right - _windowRect.left; 1063 globalBounds.right = contentBounds.right; 1068 windowWidth = globalBounds.right - globalBounds.left; 1120 contentBounds.top, contentBounds.right, contentBounds.bottom, contentBounds.left); [all...] |
/external/chromium_org/ui/file_manager/gallery/js/ |
ribbon.js | 133 // Pull back a vanishing node from the right. 136 // Push a new item at the right end. 140 // No items to the right, move the window to the left. 180 var right = Math.floor((fullItems - 1) / 2); 185 var lastIndex = selectedIndex + right; 224 // Sliding to the right. 250 ImageUtil.setClass(this, 'fade-right',
|
/external/doclava/res/assets/templates/assets/ |
doclava-developer-core.css | 223 right:0; 225 text-align:right; 370 margin-right: 20px; 377 margin-right: 70px; 405 padding-right: 50px; 524 padding-right: 6px; 625 text-align: right;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
RenderStyle.cpp | 156 // because setStyle will do the right thing with anything else. 346 || a.right().type() != b.right().type() 354 if (!a.left().isIntrinsicOrAuto() && !a.right().isIntrinsicOrAuto()) 358 // If our width is auto and left or right is specified and changed then this 362 || (!a.right().isIntrinsicOrAuto() && a.right() != b.right()))) 477 // In addition we need to solve the floating object issue when layers come and go. Right now 1325 LayoutUnit right = 0; local [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
MapsTest.java | 354 assertEquals("not equal: only on right={1=2}", diff.toString()); 370 Map<Integer, String> right = ImmutableMap.of( local 373 MapDifference<Integer, String> diff1 = Maps.difference(left, right); 382 assertEquals("not equal: only on left={2=b, 4=d}: only on right={6=z}: " 385 MapDifference<Integer, String> diff2 = Maps.difference(right, left); 394 assertEquals("not equal: only on left={6=z}: only on right={2=b, 4=d}: " 401 Map<Integer, String> right = ImmutableMap.of( local 405 MapDifference<Integer, String> original = Maps.difference(left, right); 406 MapDifference<Integer, String> same = Maps.difference(left, right); 407 MapDifference<Integer, String> reverse = Maps.difference(right, left) 420 Map<Integer, String> right = ImmutableMap.of( local 508 SortedMap<Integer, String> right = local 546 SortedMap<Integer, String> right = local 582 SortedMap<Integer, String> right = local [all...] |
/external/javassist/src/main/javassist/compiler/ |
CodeGen.java | 744 ASTree right = expr.oprand2(); local 748 right, doDup); 753 atArrayAssign(expr, op, (Expr)left, right, doDup); 758 atFieldAssign(expr, op, left, right, doDup); 777 Declarator d, ASTree right, 789 if (expr == null && right instanceof ArrayInit) 790 atArrayVariableAssign((ArrayInit)right, varType, varArray, varClass); 792 atAssignCore(expr, op, right, varType, varArray, varClass); 822 ASTree right, boolean doDup) throws CompileError 835 atAssignCore(expr, op, right, aType, aDim, cname) 964 ASTree right = expr.oprand2(); local [all...] |
/external/chromium_org/v8/src/mips/ |
lithium-codegen-mips.cc | 1541 Register right = ToRegister(right_op); local 1699 LOperand* right = instr->right(); local 1889 LOperand* right = instr->right(); local 1927 LOperand* right = instr->right(); local 1988 DoubleRegister right = ToDoubleRegister(instr->right()); local 2290 LOperand* right = instr->right(); local 2353 Register right = ToRegister(instr->right()); local [all...] |
/external/chromium_org/v8/src/ia32/ |
lithium-codegen-ia32.cc | 1478 LOperand* right = instr->right(); local 1563 LOperand* right = instr->right(); local 1610 LOperand* right = instr->right(); local 1686 LOperand* right = instr->right(); local 1893 LOperand* right = instr->right(); local 1920 LOperand* right = instr->right(); local 1982 XMMRegister right = ToDoubleRegister(instr->right()); local 2004 __ movsd(Operand(esp, 1 * kDoubleSize), right); local 2246 LOperand* right = instr->right(); local 2288 Handle<Object> right = ToHandle(LConstantOperand::cast(instr->right())); local 2291 Operand right = ToOperand(instr->right()); local [all...] |
/hardware/qcom/display/msm8226/libhwcomposer/ |
hwc_mdpcomp.cpp | 78 "Right: [%d, %d, %d, %d] \n", 80 ctx->listStats[mDpy].lRoi.right, 83 ctx->listStats[mDpy].rRoi.right, 88 ctx->listStats[mDpy].lRoi.right, 347 int crop_w = rotated90 ? crop.bottom - crop.top : crop.right - crop.left; 348 int crop_h = rotated90 ? crop.right - crop.left : crop.bottom - crop.top; 349 int dst_w = dst.right - dst.left; 533 ctx->listStats[mDpy].lRoi.right, ctx->listStats[mDpy].lRoi.bottom); 667 ctx->listStats[mDpy].lRoi.right, ctx->listStats[mDpy].lRoi.bottom, 669 ctx->listStats[mDpy].rRoi.right, ctx->listStats[mDpy].rRoi.bottom) [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/ |
abstract_tts.js | 542 '\u2192': 'right arrow', 546 '\u21d2': 'right double arrow', 550 '\u21e8': 'right arrow', 559 '\u25b6': 'right triangle', 560 '\u25b7': 'right triangle', 561 '\u25b8': 'right triangle', 562 '\u25b9': 'right triangle', 563 '\u25ba': 'right pointer', 564 '\u25bb': 'right pointer',
|
/external/chromium_org/ui/keyboard/resources/ |
touch_fuzzing.js | 104 this.right = this.left + parseFloat(style.width); 129 var max = line.rotated ? this.bottom : this.right; 141 'width': this.right - this.left, 173 // Key already provides an intersect method. If the key is to the right of 190 * The test whether to proceed in the left or right branch. 271 * determine whether to search in the left or right subtree. 283 * Tests whether the key belongs in the left or right branch of this node. 285 * @return {boolean} Whether it belongs in the right branch. 344 return orientation == Orientation.HORIZONTAL ? key.bottom : key.right;
|
/frameworks/base/services/core/java/com/android/server/wm/ |
WindowState.java | 605 Math.min(mContentFrame.right, mFrame.right), 610 Math.min(mVisibleFrame.right, mFrame.right), 615 Math.min(mStableFrame.right, mFrame.right), 620 Math.max(mFrame.right - mOverscanFrame.right, 0), 625 mFrame.right - mContentFrame.right, [all...] |
/external/chromium_org/chrome/browser/extensions/ |
display_info_provider_chromeos_unittest.cc | 57 "%d,%d,%d,%d", insets.top, insets.left, insets.bottom, insets.right); 751 info.overscan->right = -200; 761 info.overscan->right = 0; 772 info.overscan->right = 0; 783 info.overscan->right = 0; 804 info.overscan->right = 101; 826 info.overscan->right = 101; 846 info.overscan->right = 130; 863 EXPECT_EQ(130, overscan.right()); 878 info.overscan->right = 20 [all...] |
/external/chromium_org/net/third_party/nss/ssl/ |
dtlscon.c | 244 * If it's the complete next message we accept it right away. 1027 records->right = DTLS_RECVD_RECORDS_WINDOW - 1; 1048 /* Out of range to the right; since we advance the window on 1051 if (seq > records->right) 1071 if (seq > records->right) { 1074 PRUint64 right; local 1076 /* Slide to the right; this is the tricky part [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
StylePropertySerializer.cpp | 114 // FIXME: Deal with cases where only some of border-(top|right|bottom|left) are specified. 427 // Assume the properties are in the usual order top, right, bottom, left. 437 StylePropertySet::PropertyReference right = m_propertySet.propertyAt(rightValueIndex); local 442 if (!top.value() || !right.value() || !bottom.value() || !left.value()) 445 if (top.isInherited() && right.isInherited() && bottom.isInherited() && left.isInherited()) 448 if (top.value()->isInitialValue() || right.value()->isInitialValue() || bottom.value()->isInitialValue() || left.value()->isInitialValue()) { 449 if (top.value()->isInitialValue() && right.value()->isInitialValue() && bottom.value()->isInitialValue() && left.value()->isInitialValue() && !top.isImplicit()) { 455 if (top.isImportant() != right.isImportant() || right.isImportant() != bottom.isImportant() || bottom.isImportant() != left.isImportant()) 458 bool showLeft = !right.value()->equals(*left.value()) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
fakemediaengine.h | 371 virtual bool SetOutputScaling(uint32 ssrc, double left, double right) { 376 it->second.right = right; 381 output_scalings_[ssrc].right = right; 386 virtual bool GetOutputScaling(uint32 ssrc, double* left, double* right) { 390 *right = output_scalings_[ssrc].right; 419 OutputScaling() : left(1.0), right(1.0) {} 420 double left, right; member in struct:cricket::FakeVoiceMediaChannel::OutputScaling [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/neon/ |
fastquantizeb_neon.asm | 40 ;right shift 15 to get sign, all 0 if it is positive, all 1 if it is negative 74 vshr.s16 q4, #1 ; right shift 1 after vqdmulh 82 vshr.s16 q10, #1 ; right shift 1 after vqdmulh 173 ;right shift 15 to get sign, all 0 if it is positive, all 1 if it is negative 195 vshr.s16 q12, #1 ; right shift 1 after vqdmulh
|
/external/jemalloc/include/jemalloc/internal/ |
rb.h | 6 * bit of right-child pointers (if RB_COMPACT is defined), thus making node 15 * #define RB_COMPACT // (Optional, embed color bits in right-child pointers.) 56 /* Right accessors. */ 83 /* Right accessors. */ 488 a_type *right = pathp[1].node; \ 489 rbtn_right_set(a_type, a_field, cnode, right); \ 490 if (rbtn_red_get(a_type, a_field, right)) { \ 495 rbtn_black_set(a_type, a_field, right); \ 556 /* If node's successor is its right child, the following code */\ 557 /* will do the wrong thing for the right child pointer. */ [all...] |
/external/libvpx/libvpx/vp8/encoder/arm/neon/ |
fastquantizeb_neon.asm | 40 ;right shift 15 to get sign, all 0 if it is positive, all 1 if it is negative 74 vshr.s16 q4, #1 ; right shift 1 after vqdmulh 82 vshr.s16 q10, #1 ; right shift 1 after vqdmulh 173 ;right shift 15 to get sign, all 0 if it is positive, all 1 if it is negative 195 vshr.s16 q12, #1 ; right shift 1 after vqdmulh
|
/external/skia/src/effects/ |
SkMatrixConvolutionImageFilter.cpp | 296 SkIRect top = SkIRect::MakeLTRB(bounds.left(), bounds.top(), bounds.right(), interior.top()); 298 bounds.right(), bounds.bottom()); 301 SkIRect right = SkIRect::MakeLTRB(interior.right(), interior.top(), local 302 bounds.right(), interior.bottom()); 306 filterBorderPixels(src, result, right, bounds); 568 float right = (float) bounds.right() / texture.width(); local 571 uman.set4f(fBoundsUni, left, 1.0f - bottom, right, 1.0f - top); 573 uman.set4f(fBoundsUni, left, top, right, bottom) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/neon/ |
fastquantizeb_neon.asm | 40 ;right shift 15 to get sign, all 0 if it is positive, all 1 if it is negative 74 vshr.s16 q4, #1 ; right shift 1 after vqdmulh 82 vshr.s16 q10, #1 ; right shift 1 after vqdmulh 173 ;right shift 15 to get sign, all 0 if it is positive, all 1 if it is negative 195 vshr.s16 q12, #1 ; right shift 1 after vqdmulh
|