HomeSort by relevance Sort by last modified time
    Searched full:right (Results 1 - 25 of 21084) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/
diamond_right.h 3 double right(double *);
6 int left, right; member in struct:left_and_right
  /bionic/libstdc++/include/
typeinfo 20 bool operator==(type_info const & right) const;
21 bool operator!=(type_info const & right) const;
22 bool before(type_info const & right) const;
25 type_info(type_info const & right);
26 type_info & operator=(type_info const & right);
  /ndk/sources/cxx-stl/system/include/
typeinfo 20 bool operator==(type_info const & right) const;
21 bool operator!=(type_info const & right) const;
22 bool before(type_info const & right) const;
25 type_info(type_info const & right);
26 type_info & operator=(type_info const & right);
  /prebuilts/ndk/current/sources/cxx-stl/system/include/
typeinfo 20 bool operator==(type_info const & right) const;
21 bool operator!=(type_info const & right) const;
22 bool before(type_info const & right) const;
25 type_info(type_info const & right);
26 type_info & operator=(type_info const & right);
  /external/markdown/MarkdownTest/Tests_2004/
Backslash escapes.text 13 Right brace: \}
17 Right bracket: \]
21 Right paren: \)
49 Right brace: \}
53 Right bracket: \]
57 Right paren: \)
84 Right brace: `\}`
88 Right bracket: `\]`
92 Right paren: `\)`
  /external/markdown/tests/markdown-test/
backlash-escapes.txt 13 Right brace: \}
17 Right bracket: \]
21 Right paren: \)
49 Right brace: \}
53 Right bracket: \]
57 Right paren: \)
84 Right brace: `\}`
88 Right bracket: `\]`
92 Right paren: `\)`
  /external/clang/test/Modules/Inputs/va_list/
module.modulemap 5 module right { header "right.h" }
  /art/test/535-deopt-and-inlining/
info.txt 2 stack visitor uses the right ArtMethod when deopting.
  /art/test/974-verify-interface-super/
info.txt 1 Test that we do the right thing with invoke-super on interfaces when there are
  /external/libunwind/scripts/
kernel-diff.sh 7 right=$(eval echo $r)
8 # echo $left $right
9 diff -up $left $right
  /external/skia/src/core/
SkScalar.cpp 22 int right = 0; local
23 while (right < length && searchKey > keys[right])
24 right++;
27 if (length == right)
29 if (0 == right)
31 // Otherwise, interpolate between right - 1 and right.
32 SkScalar rightKey = keys[right];
33 SkScalar leftKey = keys[right-1]
    [all...]
  /frameworks/base/test-runner/src/junit/runner/
Sorter.java 13 public void swap(Vector values, int left, int right);
16 public static void sortStrings(Vector values , int left, int right, Swapper swapper) {
18 int oright= right;
19 String mid= (String)values.elementAt((left + right) / 2);
23 while (mid.compareTo((String)(values.elementAt(right))) < 0)
24 right--;
25 if (left <= right) {
26 swapper.swap(values, left, right);
28 right--;
30 } while (left <= right);
    [all...]
  /external/llvm/test/Transforms/MergeFunc/
functions.ll 7 ; CHECK-LABEL: call void @right(i64 %p)
10 call void @right(i64 %p)
11 call void @right(i64 %p)
12 call void @right(i64 %p)
13 call void @right(i64 %p)
17 ; CHECK-LABEL: @right
20 define void @right(i64 %p) {
crash2.ll 21 call void @right(i64 %p)
22 call void @right(i64 %p)
23 call void @right(i64 %p)
24 call void @right(i64 %p)
30 call void @right(i64 %p)
31 call void @right(i64 %p)
32 call void @right(i64 %p)
33 call void @right(i64 %p)
40 call void @right(i64 %p)
41 call void @right(i64 %p
    [all...]
  /prebuilts/go/darwin-x86/test/chan/
goroutines.go 17 func f(left, right chan int) {
18 left <- <-right
32 right := leftmost
35 right = make(chan int)
36 go f(left, right)
37 left = right
39 go func(c chan int) { c <- 1 }(right)
  /prebuilts/go/linux-x86/test/chan/
goroutines.go 17 func f(left, right chan int) {
18 left <- <-right
32 right := leftmost
35 right = make(chan int)
36 go f(left, right)
37 left = right
39 go func(c chan int) { c <- 1 }(right)
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
SelectionRenderer.java 24 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom,
26 canvas.drawRect(left, top, right, top + stroke, paint);
27 canvas.drawRect(left, bottom - stroke, right, bottom, paint);
29 canvas.drawRect(right - stroke, top, right, bottom, paint);
32 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom,
34 canvas.drawRect(left, top, right, top + stroke, selectPaint);
35 canvas.drawRect(left, bottom - stroke, right, bottom, selectPaint);
37 canvas.drawRect(right - stroke, top, right, bottom, selectPaint)
    [all...]
  /external/v8/test/webkit/
order-of-operations.js 29 function right() { function
30 leftRight = leftRight + "Right";
33 shouldBe('(function(){ leftRight = ""; left() > right(); return leftRight; })()', '"LeftRight"');
34 shouldBe('(function(){ leftRight = ""; left() >= right(); return leftRight; })()', '"LeftRight"');
35 shouldBe('(function(){ leftRight = ""; left() < right(); return leftRight; })()', '"LeftRight"');
36 shouldBe('(function(){ leftRight = ""; left() <= right(); return leftRight; })()', '"LeftRight"');
37 shouldBe('(function(){ leftRight = ""; left() + right(); return leftRight; })()', '"LeftRight"');
38 shouldBe('(function(){ leftRight = ""; left() - right(); return leftRight; })()', '"LeftRight"');
39 shouldBe('(function(){ leftRight = ""; left() / right(); return leftRight; })()', '"LeftRight"');
40 shouldBe('(function(){ leftRight = ""; left() * right(); return leftRight; })()', '"LeftRight"')
    [all...]
order-of-operations-expected.txt 24 PASS (function(){ leftRight = ""; left() > right(); return leftRight; })() is "LeftRight"
25 PASS (function(){ leftRight = ""; left() >= right(); return leftRight; })() is "LeftRight"
26 PASS (function(){ leftRight = ""; left() < right(); return leftRight; })() is "LeftRight"
27 PASS (function(){ leftRight = ""; left() <= right(); return leftRight; })() is "LeftRight"
28 PASS (function(){ leftRight = ""; left() + right(); return leftRight; })() is "LeftRight"
29 PASS (function(){ leftRight = ""; left() - right(); return leftRight; })() is "LeftRight"
30 PASS (function(){ leftRight = ""; left() / right(); return leftRight; })() is "LeftRight"
31 PASS (function(){ leftRight = ""; left() * right(); return leftRight; })() is "LeftRight"
32 PASS (function(){ leftRight = ""; left() % right(); return leftRight; })() is "LeftRight"
33 PASS (function(){ leftRight = ""; left() << right(); return leftRight; })() is "LeftRight
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/js/
property-interpolation.js 10 var right = tests[i][2];
11 interpolation = webAnimations1.propertyInterpolation(property, left, right);
15 assert.equal(interpolation(0.5), right);
16 assert.equal(interpolation(0.55), right);
17 assert.equal(interpolation(1), right);
18 assert.equal(interpolation(2), right);
  /external/llvm/docs/_templates/
layout.html 5 table.right { float: right; margin-left: 20px; }
6 table.right td { border: 1px solid #ccc; }
  /external/clang/test/CXX/temp/temp.param/
p15.cpp 6 X<X<int>> *x2; // expected-error{{a space is required between consecutive right angle brackets (use '> >')}}
8 X<X<X<X<int>> // expected-error{{a space is required between consecutive right angle brackets (use '> >')}}
9 >> *x3; // expected-error{{a space is required between consecutive right angle brackets (use '> >')}}
12 Y<1 >> 2> *y2; // expected-warning{{use of right-shift operator ('>>') in template argument will require parentheses in C++11}}
  /external/markdown/MarkdownTest/Tests_2007/
Backslash escapes.text 13 Right brace: \}
17 Right bracket: \]
21 Right paren: \)
49 Right brace: \}
53 Right bracket: \]
57 Right paren: \)
84 Right brace: `\}`
88 Right bracket: `\]`
92 Right paren: `\)`
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion2-expected-completion13a.txt 5 right
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
loc-2.s 1 # Check that a LOC before any code gets translated into the right

Completed in 724 milliseconds

1 2 3 4 5 6 7 8 91011>>