HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 1526 - 1550 of 2429) sorted by null

<<61626364656667686970>>

  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_drag_controller.cc 471 else if (create_point.x() > work_area.right())
472 create_point.set_x(work_area.right());
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
loopfilter_mmx.asm 179 psraw mm0, 11 ; sign extended shift right by 3
182 psraw mm1, 11 ; sign extended shift right by 3
492 psraw mm0, 11 ; sign extended shift right by 3
497 psraw mm1, 11 ; sign extended shift right by 3
774 psraw mm0, 11 ; sign extended shift right by 3
776 psraw mm7, 11 ; sign extended shift right by 3
786 psraw mm0, 11 ; sign extended shift right by 3
788 psraw mm7, 11 ; sign extended shift right by 3
    [all...]
  /external/icu/icu4c/source/test/perf/collperf2/
collperf2.cpp 754 UniStrCollatorComparator(const void* context, const void* left, const void* right) {
757 const UnicodeString& rightString = **(const UnicodeString**)right;
843 StringPieceCollatorComparator(const void* context, const void* left, const void* right) {
846 const StringPiece& rightString = *(const StringPiece*)right;
853 StringPieceUCollatorComparator(const void* context, const void* left, const void* right) {
856 const StringPiece& rightString = *(const StringPiece*)right;
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
loopfilter_mmx.asm 179 psraw mm0, 11 ; sign extended shift right by 3
182 psraw mm1, 11 ; sign extended shift right by 3
492 psraw mm0, 11 ; sign extended shift right by 3
497 psraw mm1, 11 ; sign extended shift right by 3
774 psraw mm0, 11 ; sign extended shift right by 3
776 psraw mm7, 11 ; sign extended shift right by 3
786 psraw mm0, 11 ; sign extended shift right by 3
788 psraw mm7, 11 ; sign extended shift right by 3
    [all...]
  /external/chromium_org/ui/login/
display_manager.js 138 * left-current-right animation.
430 * Updates a step's css classes to reflect left, current, or right position.
432 * @param {string} state one of 'left', 'current', 'right'.
438 var states = ['left', 'right', 'current'];
488 this.updateStep_(i, 'right');
497 newStep.classList.remove('right');
537 oldStep.classList.contains('right')) {
744 screen.classList.remove('right');
884 * Returns position (top, left, right, bottom) of the element.
886 * @return {!Object} Element position (top, left, right, bottom)
    [all...]
  /external/chromium_org/v8/src/
code-stubs-hydrogen.cc 1030 HValue* right = GetParameter(BinaryOpICStub::kRight); local
1131 HValue* right = GetParameter(BinaryOpWithAllocationSiteStub::kRight); local
1156 HValue* right = GetParameter(StringAddStub::kRight); local
    [all...]
factory.cc 472 Handle<String> right) {
474 if (left_length == 0) return right;
475 int right_length = right->length();
482 uint16_t c2 = right->Get(0);
493 bool right_is_one_byte = right->IsOneByteRepresentation();
501 left->HasOnlyOneByteChars() && right->HasOnlyOneByteChars();
512 DCHECK(right->IsFlat());
526 // Copy right part.
527 src = right->IsExternalString()
528 ? Handle<ExternalOneByteString>::cast(right)->GetChars(
    [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 91 int right = img_size.width-1, bottom = img_size.height-1; local
96 if( right < 0 || bottom < 0 )
100 c1 = (x1 < 0) + (x1 > right) * 2 + (y1 < 0) * 4 + (y1 > bottom) * 8;
101 c2 = (x2 < 0) + (x2 > right) * 2 + (y2 < 0) * 4 + (y2 > bottom) * 8;
112 c1 = (x1 < 0) + (x1 > right) * 2;
119 c2 = (x2 < 0) + (x2 > right) * 2;
125 a = c1 == 1 ? 0 : right;
132 a = c2 == 1 ? 0 : right;
998 int i, y, imin = 0, left = 0, right = 1, x1, x2;
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
Renderer9.cpp     [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionTest.java 138 assertEquals(3, mRegion.getBounds().right);
149 assertEquals(3, mRegion.getBounds().right);
159 assertEquals(3, mRegion.getBounds().right);
274 // Test right-top corner.
277 // Test right-bottom corner.
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
vtzone.cpp 642 // Check if the month is same or right next to the primary month
    [all...]
  /external/chromium_org/v8/src/compiler/
ast-graph-builder.cc 1111 Node* right = environment()->Pop(); local
1479 Node* right = environment()->Pop(); local
1528 Node* right = environment()->Pop(); local
    [all...]
  /external/icu/icu4c/source/i18n/
vtzone.cpp 642 // Check if the month is same or right next to the primary month
    [all...]
  /external/chromium_org/ash/shelf/
shelf_view.cc 75 // Additional spacing for the left and right side of icons.
494 view_model_->ideal_bounds(target_index).right(),
740 // Right aligned icons.
755 view_model_->ideal_bounds(last_button_index).right(),
796 view_model_->ideal_bounds(last_visible_index_).right(),
825 view_model_->ideal_bounds(index).right(),
836 view_model_->ideal_bounds(index).right(),
    [all...]
  /art/runtime/verifier/
reg_type_cache.cc 316 RegType& RegTypeCache::FromUnresolvedMerge(RegType& left, RegType& right) {
323 if (right.IsUnresolvedMergedReference()) {
324 std::set<uint16_t> right_types = (down_cast<UnresolvedMergedType*>(&right))->GetMergedTypes();
327 types.insert(right.GetId());
341 RegType* entry = new UnresolvedMergedType(left.GetId(), right.GetId(), this, entries_.size());
  /cts/tests/tests/text/src/android/text/method/cts/
ScrollingMovementMethodTest.java 610 new MyScrollingMovementMethod().right(mTextView, mSpannable);
752 mResult = method.right(mTextView, mSpannable);
760 mResult = method.right(mTextView, mSpannable);
    [all...]
  /cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
CtsUiAutomatorTest.java 344 assertTrue("UiObject swipe right 3<-4", "[ 3 ]".equals(textView.getText()));
347 assertTrue("UiObject swipe right 2<-3", "[ 2 ]".equals(textView.getText()));
350 assertTrue("UiObject swipe right 1<-2", "[ 1 ]".equals(textView.getText()));
353 UiDevice.getInstance().swipe(tb.right - 20, tb.centerY(), tb.left + 20, tb.centerY(), 50);
714 rect1.left < rect2.left && rect2.right < rect3.right);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 439 const Length& right() const { return surround->offset.right(); } function in class:blink::RenderStyle
451 bool hasAutoLeftAndRight() const { return left().isAuto() && right().isAuto(); }
478 const BorderValue& borderRight() const { return surround->border.right(); }
503 EBorderStyle borderRightStyle() const { return surround->border.right().style(); }
504 bool borderRightIsTransparent() const { return surround->border.right().isTransparent(); }
539 const Length& clipRight() const { return visual->clip.right(); }
733 void getTextShadowExtent(LayoutUnit& top, LayoutUnit& right, LayoutUnit& bottom, LayoutUnit& left) const { getShadowExtent(textShadow(), top, right, bottom, left); } local
734 void getTextShadowHorizontalExtent(LayoutUnit& left, LayoutUnit& right) const { getShadowHorizontalExtent(textShadow(), left, right); } local
802 void getBoxShadowExtent(LayoutUnit& top, LayoutUnit& right, LayoutUnit& bottom, LayoutUnit& left) const { getShadowExtent(boxShadow(), top, right, bottom, left); } local
804 void getBoxShadowHorizontalExtent(LayoutUnit& left, LayoutUnit& right) const { getShadowHorizontalExtent(boxShadow(), left, right); } local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.c 136 struct bezier left, right; /* bez poly splits */ local
147 split(bez, &left, &right); /* split in two */
149 add_if_close(&right, length, error); /* try right side */
659 struct bezier right = *bez; local
662 split_left(&right, t, &left);
  /external/chromium_org/third_party/opus/src/src/
opus_multistream_encoder.c 144 /* Position in the mix: 0 don't mix, 1: left, 2: center, 3:right */
810 int left, right; local
812 right = get_right_channel(&st->layout, s, -1);
816 pcm, st->layout.nb_channels, right, frame_size);
823 bandLogE[21+i] = bandSMR[21*right+i];
827 c2 = right;
    [all...]
  /external/chromium_org/third_party/webrtc/common_audio/resampler/
resampler.cc 447 int16_t* right = (int16_t*)malloc(lengthIn * sizeof(int16_t) / 2); local
455 right[i >> 1] = samplesIn[i + 1];
463 // Do resampling for right channel
465 res |= slave_right_->Push(right, lengthIn, out_right, maxLen / 2, actualOutLen_right);
469 free(right);
484 free(right);
    [all...]
  /external/libhevc/common/arm/
ihevc_inter_pred_filters_luma_horz.s 240 vqrshrun.s16 d20,q4,#6 @right shift and saturating narrow result 1
249 vqrshrun.s16 d8,q5,#6 @right shift and saturating narrow result 2
337 vqrshrun.s16 d8,q4,#6 @right shift and saturating narrow result 1
371 vqrshrun.s16 d10,q5,#6 @right shift and saturating narrow result 2
515 vqrshrun.s16 d8,q4,#6 @narrow right shift and saturating the result
  /external/libopus/src/
opus_multistream_encoder.c 144 /* Position in the mix: 0 don't mix, 1: left, 2: center, 3:right */
810 int left, right; local
812 right = get_right_channel(&st->layout, s, -1);
816 pcm, st->layout.nb_channels, right, frame_size);
823 bandLogE[21+i] = bandSMR[21*right+i];
827 c2 = right;
    [all...]
  /external/libpng/contrib/visupng/
VisualPng.c 468 wChild = rChild.right - rChild.left;
473 wParent = rParent.right - rParent.left;
484 rWorkArea.right = GetSystemMetrics(SM_CXSCREEN);
492 } else if ((xNew+wChild) > rWorkArea.right) {
493 xNew = rWorkArea.right - wChild;
  /external/lldb/examples/synthetic/
libcxx.py 295 # we need to make a copy of __value__ with the right name - unfortunate
366 right = property(_right_impl,None) variable in class:stdmap_iterator_node
392 while (not x.right.is_null):
393 x = x.right
406 if not node.right.is_null:
407 return self.tree_min(node.right)

Completed in 760 milliseconds

<<61626364656667686970>>