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

<<11121314151617181920>>

  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.cpp 17 int left = 0, mid = _streamIndex, right = Streams.Size(); local
22 right = mid;
30 mid = (left + right) / 2;
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
splay.js 58 right: GeneratePayloadTree(depth - 1, tag)
97 // Verify that the splay tree has the right size.
174 node.right = this.root_.right;
175 this.root_.right = null;
177 node.right = this.root_;
203 this.root_ = this.root_.right;
205 var right = this.root_.right;
207 // Splay to make sure that the new root has an empty right child
    [all...]
  /external/chromium_org/cc/layers/
tiled_layer.h 92 int right,
98 int right,
105 int right,
112 int right,
119 int right,
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-splay.js 53 right: GeneratePayloadTree(depth - 1, tag)
92 // Verify that the splay tree has the right size.
169 node.right = this.root_.right;
170 this.root_.right = null;
172 node.right = this.root_;
198 this.root_ = this.root_.right;
200 var right = this.root_.right;
202 // Splay to make sure that the new root has an empty right child
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
OverviewGrid.js 111 * @param {number} right
113 setWindow: function(left, right)
115 this._window._setWindow(left, right);
182 this._rightResizeElement = parentElement.createChild("div", "overview-grid-window-resizer overview-grid-window-resizer-right");
183 this._rightResizeElement.style.right = 0;
201 this._overviewWindowBordersElement.style.right = "0%";
357 var right = windowRight;
366 right = ((windowRight + windowLeft) + width * factor) / 2;
372 this._rightResizeElement.style.left = right * 100 + "%";
376 this._overviewWindowElement.style.width = (right - left) * 100 + "%"
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
tztrans.cpp 55 TimeZoneTransition::operator=(const TimeZoneTransition& right) {
56 if (this != &right) {
57 fTime = right.fTime;
58 setFrom(*right.fFrom);
59 setTo(*right.fTo);
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_region.h 34 RowSpan(int32_t left, int32_t right);
38 return left == that.left && right == that.right;
42 int32_t right; member in struct:webrtc::DesktopRegion::RowSpan
134 // Comparison functions used for std::lower_bound(). Compare left or right
140 static void AddSpanToRow(Row* row, int32_t left, int32_t right);
differ.cc 28 // One additional row/column is added as a boundary on the right & bottom.
54 // Calc size of partial blocks which may be present on right and bottom edge.
145 // We've found a modified block. Look at blocks to the right and below
153 // Group with blocks to the right.
156 uint8_t* right = diff_info + 1; local
157 while (*right) {
158 *right++ = 0;
170 right = bottom;
172 if (*right++ == 0) {
182 right = bottom
    [all...]
  /external/chromium_org/v8/benchmarks/
splay.js 58 right: GeneratePayloadTree(depth - 1, tag)
97 // Verify that the splay tree has the right size.
174 node.right = this.root_.right;
175 this.root_.right = null;
177 node.right = this.root_;
203 this.root_ = this.root_.right;
205 var right = this.root_.right;
207 // Splay to make sure that the new root has an empty right child
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInts.java 128 // For pre-sizing a builder, just get the right order of magnitude
157 public int compare(int[] left, int[] right) {
158 int minLength = Math.min(left.length, right.length);
160 if (left[i] != right[i]) {
161 return UnsignedInts.compare(left[i], right[i]);
164 return left.length - right.length;
  /external/icu/icu4c/source/i18n/
tztrans.cpp 55 TimeZoneTransition::operator=(const TimeZoneTransition& right) {
56 if (this != &right) {
57 fTime = right.fTime;
58 setFrom(*right.fFrom);
59 setTo(*right.fTo);
  /external/llvm/docs/_static/
llvm.css 11 address img { float: right; width: 88px; height: 31px; }
12 address { clear: right; }
16 margin-right: 1em; margin-bottom: 1em; }
54 .doc_text { text-align: left; padding-left: 20pt; padding-right: 10pt }
81 h2+div, h2+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
82 h3+div, h3+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
83 h4+div, h4+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
98 tr.layout, td.layout, td.left, td.right
101 td.right { text-align: right }
    [all...]
  /external/openfst/src/lib/
symbol-table-ops.cc 21 SymbolTable *MergeSymbolTable(const SymbolTable &left, const SymbolTable &right,
24 // copied version of SymbolTable of left or right if either symbol table is
27 right.Name());
34 int64 key = right.Find(liter.Symbol());
47 return right.Copy();
49 // add all symbols we can from right symbol table
51 SymbolTableIterator riter(right);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/renderers/
GLArrowSensorTestRenderer.java 200 * @param right the right operand of the cross product
203 public static void crossProduct(float[] left, float[] right, float[] out) {
204 out[0] = left[1] * right[2] - left[2] * right[1];
205 out[1] = left[2] * right[0] - left[0] * right[2];
206 out[2] = left[0] * right[1] - left[1] * right[0];
213 * @param right the second dot product operan
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
BstTesting.java 19 import static com.google.common.collect.BstSide.RIGHT;
39 SimpleNode(Character key, @Nullable SimpleNode left, @Nullable SimpleNode right) {
40 super(key, left, right);
54 && Objects.equal(childOrNull(RIGHT), node.childOrNull(RIGHT));
61 return Objects.hashCode(getKey(), childOrNull(LEFT), childOrNull(RIGHT));
68 SimpleNode source, @Nullable SimpleNode left, @Nullable SimpleNode right) {
69 return new SimpleNode(source.getKey(), left, right);
76 @Nullable SimpleNode left, @Nullable SimpleNode right) {
77 return checkNotNull(nodeFactory).createNode(source, left, right);
    [all...]
  /external/chromium_org/v8/src/compiler/ia32/
instruction-selector-ia32.cc 177 if (g.CanBeImmediate(m.right().node())) {
179 inputs[input_count++] = g.UseImmediate(m.right().node());
182 inputs[input_count++] = g.Use(m.right().node());
228 if (m.right().Is(-1)) {
241 Node* right = node->InputAt(1); local
244 if (g.CanBeImmediate(right)) {
246 g.UseImmediate(right));
249 if (m.right().IsWord32And()) {
250 Int32BinopMatcher mright(right);
251 if (mright.right().Is(0x1F))
300 Node* right = node->InputAt(1); local
464 Node* right = node->InputAt(1); local
503 Node* right = node->InputAt(1); local
    [all...]
  /external/chromium_org/ash/wm/dock/
docked_window_resizer_unittest.cc 220 // Drag the window left or right to the edge (or almost to it).
224 dx += work_area.right() - 1 - initial_location_in_screen.x();
268 // The window should be docked at the right edge.
269 EXPECT_EQ(window->GetRootWindow()->GetBoundsInScreen().right(),
270 window->GetBoundsInScreen().right());
283 // The window should be docked at the right edge.
284 EXPECT_EQ(window->GetRootWindow()->GetBoundsInScreen().right(),
285 window->GetBoundsInScreen().right());
306 // The window right should be past the screen edge but not docked.
307 // Initial touch point is 70px to the right which helps to find where the edg
    [all...]
docked_window_layout_manager_unittest.cc 193 // Drag the window left or right to the edge (or almost to it).
197 dx += work_area.right() - 1 - initial_location_in_screen.x();
232 // The window should be attached and docked at the right edge.
234 EXPECT_EQ(window->GetRootWindow()->bounds().right(),
235 window->GetBoundsInScreen().right());
250 // The window should be attached and snapped to the right side of the screen.
280 // |window1| should be flush left and |window2| flush right.
290 // Tests that with a window docked on the right the auto-placing logic in
300 // The window should be attached and snapped to the right side of the screen.
301 EXPECT_EQ(window->GetRootWindow()->bounds().right(),
    [all...]
  /external/fio/lib/
prio_tree.c 142 old->parent->right = node;
151 node->right = old->right;
152 old->right->parent = node;
213 cur->right = node;
217 cur = cur->right;
256 cur = cur->right;
261 get_index(cur->right, &r_index, &h_index_right);
271 cur = cur->right;
280 if (cur->parent->right == cur
    [all...]
  /external/chromium_org/printing/
page_setup_unittest.cc 25 margins.right = rand() % kMax;
51 effective_margins.right = std::max(margins.right,
53 printable_area.right());
59 page_size.width() - effective_margins.right -
94 EXPECT_EQ(effective_margins.right, setup.effective_margins().right) << seed <<
109 margins.right = 4;
128 effective_margins.right = 4;
159 EXPECT_EQ(effective_margins.right, setup.effective_margins().right) <
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-splay.js 53 right: GeneratePayloadTree(depth - 1, key)
91 // Verify that the splay tree has the right size.
168 node.right = this.root_.right;
169 this.root_.right = null;
171 node.right = this.root_;
197 this.root_ = this.root_.right;
199 var right = this.root_.right;
201 // Splay to make sure that the new root has an empty right child
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-splay.js 53 right: GeneratePayloadTree(depth - 1, key)
91 // Verify that the splay tree has the right size.
168 node.right = this.root_.right;
169 this.root_.right = null;
171 node.right = this.root_;
197 this.root_ = this.root_.right;
199 var right = this.root_.right;
201 // Splay to make sure that the new root has an empty right child
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
splitView.css 60 right: 0;
104 .split-view button.right-sidebar-show-hide-button {
106 right:2px;
109 .split-view button.right-sidebar-show-hide-button:active {
111 right: 1px;
116 right: 1px;
121 right: 0;
132 .split-view button.right-sidebar-show-hide-button.toggled-show > .glyph {
136 .split-view button.right-sidebar-show-hide-button.toggled-hide > .glyph {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/
main.css 62 right: 0;
104 padding-right: 1em;
109 margin-right: 1em;
138 float: right;
204 right: 0;
242 float: right;
246 margin-right: 1em;
273 padding-right: 1em;
286 float: right;
  /external/iproute2/tc/
em_meta.c 281 struct tcf_meta_val *right = obj; local
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);
296 } else if (can_adopt(left) && can_adopt(right)) {
    [all...]

Completed in 294 milliseconds

<<11121314151617181920>>