HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 301 - 325 of 4231) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
RectFTest.java 62 assertEquals(5.0f, mRectF.right);
68 assertEquals(10.0f, mRectF.right);
79 assertEquals(3.0f, mRectF.right);
91 assertEquals(3.0f, mRectF.right);
103 assertEquals(3.0f, mRectF.right);
114 assertEquals(10.0f, mRectF.right);
121 assertEquals(10.0f, mRectF.right);
147 assertEquals(10.0f, mRectF.right);
154 assertEquals(10.0f, mRectF.right);
168 assertEquals(10.0f, mRectF.right);
    [all...]
EmbossMaskFilterTest.java 62 Rect right = new Rect(CENTER_X, 0, BITMAP_WIDTH, BITMAP_HEIGHT); local
65 assertTrue(brightness(bitmap, left) > brightness(bitmap, right));
72 left.right = START_X;
74 right.left = END_X;
75 assertEquals(0, brightness(bitmap, right));
85 for (int x = rect.left; x < rect.right; x++) {
  /external/chromium_org/third_party/WebKit/Source/platform/
PODRedBlackTree.h 286 Node* right() const { return m_right; } function in class:blink::PODRedBlackTree::Node
309 // given node based on the values in the left and right children. It
312 // in the left and right children. This method should return true if
339 current = current->right();
353 return treeSearchFullComparisons(current->right(), data);
357 // We may need to traverse both the left and right subtrees.
360 result = treeSearchFullComparisons(current->right(), data);
373 x = x->right();
390 if (x->right())
391 return treeMinimum(x->right());
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
BstNodeTest.java 18 import static com.google.common.collect.BstSide.RIGHT;
55 testLacksChild(leaf, RIGHT);
62 testLacksChild(node, RIGHT);
69 testChildIs(node, RIGHT, leaf);
74 SimpleNode right = new SimpleNode('c', null, null); local
75 SimpleNode node = new SimpleNode('b', left, right);
77 testChildIs(node, RIGHT, right);
96 for (SimpleNode right : GOOD_RIGHTS) {
98 new SimpleNode(MIDDLE_KEY, left, right).orderingInvariantHolds(Ordering.natural()))
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/css/
options.css 47 padding-right: 7px;
53 border-bottom-right-radius: 12px 12px;
57 border-top-right-radius: 12px 12px;
67 text-align: right;
73 padding-right: 20px;
76 float: right;
96 float: right;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
PathTraversalState.cpp 58 void split(QuadraticBezier& left, QuadraticBezier& right) const
61 right.control = midPoint(control, end);
63 FloatPoint leftControlToRightControl = midPoint(left.control, right.control);
65 right.start = leftControlToRightControl;
68 right.end = end;
70 left.splitDepth = right.splitDepth = splitDepth + 1;
100 void split(CubicBezier& left, CubicBezier& right) const
108 right.control2 = midPoint(control2, end);
109 right.control1 = midPoint(right.control2, startToControl1)
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/visualizer/static/
utility.js 16 var right = this.length - 1;
17 while (left <= right) {
18 var mid = Math.floor((left + right) / 2);
22 right = mid - 1;
32 * @param {Array.<*>} right
35 var intersectionOfSorted = function(left, right) {
38 var idx = right.indexOf(current, from);
  /external/chromium_org/third_party/webrtc/modules/video_render/mac/
video_render_mac_cocoa_impl.mm 110 const float right,
123 nsOpenGLChannel = _ptrCocoaRender->CreateNSGLChannel(streamId, zOrder, left, top, right, bottom);
145 float& right,
148 return _ptrCocoaRender->GetChannelProperties(streamId, zOrder, left, top, right, bottom);
215 const float right,
225 const float right,
244 const float right,
247 return _ptrCocoaRender->SetText(textId, text, textLength, textColorRef, backgroundColorRef, left, top, right, bottom);
255 const float right,
  /libcore/luni/src/main/java/java/util/
DualPivotQuicksort.java 96 * {@code right} index is inclusive, and it does no range checking
97 * on {@code left} or {@code right}.
101 * @param right the index of the last element, inclusive, to be sorted
103 private static void doSort(int[] a, int left, int right) {
105 if (right - left + 1 < INSERTION_SORT_THRESHOLD) {
106 for (int i = left + 1; i <= right; i++) {
115 dualPivotQuicksort(a, left, right);
125 * @param right the index of the last element, inclusive, to be sorted
127 private static void dualPivotQuicksort(int[] a, int left, int right) {
129 int sixth = (right - left + 1) / 6
    [all...]
  /external/chromium-trace/trace-viewer/src/ui/
filter_control.css 16 right: 0.5ex;
17 text-align: right;
31 margin-right: 0;
  /external/chromium_org/cc/resources/
layer_tiling_data.cc 75 int* right,
85 *right = tiling_data_.TileXIndexFromSrcCoord(content_rect.right() - 1);
104 int left, top, right, bottom; local
106 gfx::Rect(tiling_size), &left, &top, &right, &bottom); local
109 if (it->first.first > right || it->first.second > bottom)
  /external/chromium_org/chrome/browser/resources/chromeos/first_run/
step_bubble.css 20 margin-right: 20px;
27 margin-right: 20px;
37 margin-right: 18px;
  /external/chromium_org/third_party/polymer/components/core-header-panel/
core-header-panel.css 18 right: 0;
41 right: 0;
67 right: 0;
  /external/chromium_org/third_party/polymer/components-chromium/core-header-panel/
core-header-panel.css 18 right: 0;
41 right: 0;
67 right: 0;
  /external/chromium_org/third_party/webrtc/modules/video_render/android/
video_render_android_impl.h 60 const float right, const float bottom);
69 float& right, float& bottom) const;
97 const float right, const float bottom);
104 const float right, const float bottom);
117 const float top, const float right,
127 const float right,
  /external/chromium_org/third_party/webrtc/modules/video_render/include/
video_render.h 96 * right - position of the stream in the window, [0.0f, 1.0f]
105 const float right, const float bottom) = 0;
133 * right - [out] position of the stream in the window, [0.0f, 1.0f]
140 float& right, float& bottom) const = 0;
230 const float right,
247 const float right,
258 const float right, const float bottom) = 0;
266 const float right, const float bottom) = 0;
  /external/chromium_org/third_party/webrtc/modules/video_render/
video_render_impl.h 73 const float right, const float bottom);
94 float& right, float& bottom) const;
178 const float right, const float bottom);
183 const float right, const float bottom);
193 const float right, const float bottom);
201 const float right, const float bottom);
  /external/chromium_org/ui/login/account_picker/
screen_account_picker.css 21 right: -50%;
26 right: auto;
44 right: -50%;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
sobeloperator.cpp 46 const int right = (j < width - 1) ? 4 : 0; local
53 (*(dataPtr + curr + c + right) - *(dataPtr + curr + c + left)) * 2 +
54 *(dataPtr + above + c + right) - *(dataPtr + above + c + left) +
55 *(dataPtr + below + c + right) - *(dataPtr + below + c + left);
59 *(dataPtr + right + c + below) - *(dataPtr + right + c + above);
  /packages/apps/Calendar/src/com/android/calendar/
ColorChipView.java 96 int right = getWidth() - 1; local
105 c.drawRect(0, 0, right, bottom, mPaint);
120 lines [ptr++] = right;
124 lines [ptr++] = right;
130 lines [ptr++] = right - halfBorderWidth;
132 lines [ptr++] = right - halfBorderWidth;
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_region.cc 19 DesktopRegion::RowSpan::RowSpan(int32_t left, int32_t right)
20 : left(left), right(right) {
131 AddSpanToRow(row->second, rect.left(), rect.right());
243 if (it1->right <= it2->left) {
249 int32_t right = std::min(it1->right, it2->right); local
250 assert(left < right);
252 output->push_back(RowSpan(left, right));
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
sort.c 58 sort__thread_cmp(struct hist_entry *left, struct hist_entry *right)
60 return right->thread->tid - left->thread->tid;
80 sort__comm_cmp(struct hist_entry *left, struct hist_entry *right)
82 return right->thread->tid - left->thread->tid;
86 sort__comm_collapse(struct hist_entry *left, struct hist_entry *right)
89 char *comm_r = right->thread->comm;
134 sort__dso_cmp(struct hist_entry *left, struct hist_entry *right)
136 return _sort__dso_cmp(left->ms.map, right->ms.map);
183 sort__sym_cmp(struct hist_entry *left, struct hist_entry *right)
185 if (!left->ms.sym && !right->ms.sym
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
Intermediate.cpp 47 TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &line)
85 if (left->getBasicType() != right->getBasicType())
92 // one and promote it to the right type.
98 node->setRight(right);
106 TIntermConstantUnion *rightTempConstant = right->getAsConstantUnion();
125 TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &line)
127 if (left->getType().getStruct() || right->getType().getStruct())
129 if (left->getType() != right->getType())
139 node->setRight(right);
148 // of an array or struct, and the right node is a direct or indirect offset
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropDrawingUtils.java 44 canvas.drawLine(bounds.left, y, bounds.right, y, p);
71 r.set(bounds.right,bounds.top,w,bounds.bottom);
91 drawIndicator(canvas, cropIndicator, indicatorSize, bounds.right, bounds.top);
97 drawIndicator(canvas, cropIndicator, indicatorSize, bounds.right, bounds.bottom);
110 drawIndicator(canvas, cropIndicator, indicatorSize, bounds.right, bounds.centerY());
134 path.lineTo(r1.right, r1.top);
138 path.lineTo(r1.right, r1.bottom);
139 path.moveTo(r1.right, r1.top);
140 path.lineTo(r1.right, r1.bottom);
142 path.lineTo(r2.right, r2.top)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_render/windows/
video_render_windows_impl.cc 100 const float right,
112 top, right, bottom);
138 float& right,
145 right = 0;
155 top, right, bottom);
248 const float right,
258 error = _ptrRendererWin->SetCropping(streamId, 0, left, top, right,
269 const float right,
280 top, right, bottom);
309 const float right,
    [all...]

Completed in 546 milliseconds

<<11121314151617181920>>