HomeSort by relevance Sort by last modified time
    Searched full:right (Results 26 - 50 of 16279) sorted by null

12 3 4 5 6 7 8 91011>>

  /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
completion2-expected-completion13c.txt 4 bottom|right
completionvalues1-expected-completion27.txt 5 right
completionvalues1-expected-completion28.txt 5 right
  /external/replicaisland/src/com/replica/replicaisland/
QuickSorter.java 44 // quicksort a[left] to a[right]
45 public void quicksort(Type[] a, int left, int right, Comparator<Type> comparator) {
46 if (right <= left) return;
47 int i = partition(a, left, right, comparator);
49 quicksort(a, i + 1, right, comparator);
52 // partition a[left] to a[right], assumes left < right
53 private int partition(Type[] a, int left, int right, Comparator<Type> comparator) {
55 int j = right;
57 while (comparator.compare(a[++i], a[right]) < 0) { // find item on left to swa
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRect.java 14 public void __constructor__(int left, int top, int right, int bottom) {
17 realRect.right = right;
24 realRect.right = otherRect.right;
30 set(rect.left, rect.top, rect.right, rect.bottom);
34 public void set(int left, int top, int right, int bottom) {
37 realRect.right = right;
43 return realRect.right - realRect.left
    [all...]
  /frameworks/base/libs/hwui/
Rect.h 33 (r).left, (r).top, (r).right, (r).bottom
35 (r).left(), (r).top(), (r).right(), (r).bottom()
45 float right; member in class:android::uirenderer::Rect
57 right(0),
61 inline Rect(float left, float top, float right, float bottom):
64 right(right),
71 right(width),
78 right(rect.fRight),
91 left = top = right = bottom = 0.0f
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
mac_arabic.py 49 0x0081: 0x00a0, # NO-BREAK SPACE, right-left
60 0x008c: 0x00ab, # LEFT-POINTING DOUBLE ANGLE QUOTATION MARK, right-left
67 0x0093: 0x2026, # HORIZONTAL ELLIPSIS, right-left
72 0x0098: 0x00bb, # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK, right-left
75 0x009b: 0x00f7, # DIVISION SIGN, right-left
80 0x00a0: 0x0020, # SPACE, right-left
81 0x00a1: 0x0021, # EXCLAMATION MARK, right-left
82 0x00a2: 0x0022, # QUOTATION MARK, right-left
83 0x00a3: 0x0023, # NUMBER SIGN, right-lef
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
mac_arabic.py 49 0x0081: 0x00a0, # NO-BREAK SPACE, right-left
60 0x008c: 0x00ab, # LEFT-POINTING DOUBLE ANGLE QUOTATION MARK, right-left
67 0x0093: 0x2026, # HORIZONTAL ELLIPSIS, right-left
72 0x0098: 0x00bb, # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK, right-left
75 0x009b: 0x00f7, # DIVISION SIGN, right-left
80 0x00a0: 0x0020, # SPACE, right-left
81 0x00a1: 0x0021, # EXCLAMATION MARK, right-left
82 0x00a2: 0x0022, # QUOTATION MARK, right-left
83 0x00a3: 0x0023, # NUMBER SIGN, right-lef
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
Pair.java 23 private final R right; field in class:Pair
30 public Pair(L left, R right) {
32 this.right = right;
70 return right;
78 public static <L, R> Pair<L, R> create(L left, R right) {
79 return new Pair<L, R>(left, right);
  /external/v8/src/compiler/
machine-operator-reducer.cc 51 if (m.right().Is(0)) return Replace(m.right().node()); // x & 0 => 0
52 if (m.right().Is(-1)) return Replace(m.left().node()); // x & -1 => x
54 return ReplaceInt32(m.left().Value() & m.right().Value());
61 if (m.right().Is(0)) return Replace(m.left().node()); // x | 0 => x
62 if (m.right().Is(-1)) return Replace(m.right().node()); // x | -1 => -1
64 return ReplaceInt32(m.left().Value() | m.right().Value());
67 if (m.left().IsWord32Shl() && m.right().IsWord32Shr()) {
69 Int32BinopMatcher mright(m.right().node())
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnPOS.java 28 /** The part of speech at right side */
29 public int right = 0; field in class:WnnPOS
40 * @param right The part of speech at right side
42 public WnnPOS(int left, int right) {
44 this.right = right;
  /external/markdown/MarkdownTest/Tests_2004/
Backslash escapes.html 13 <p>Right brace: }</p>
17 <p>Right bracket: ]</p>
21 <p>Right paren: )</p>
47 Right brace: \}
51 Right bracket: \]
55 Right paren: \)
82 <p>Right brace: <code>\}</code></p>
86 <p>Right bracket: <code>\]</code></p>
90 <p>Right paren: <code>\)</code></p>
Backslash escapes.text-out 15 <p>Right brace: }</p>
17 <p>Right bracket: ]</p>
19 <p>Right paren: )</p>
38 Right brace: \}
42 Right bracket: \]
46 Right paren: \)
67 <p>Right brace: <code>\}</code></p>
69 <p>Right bracket: <code>\]</code></p>
71 <p>Right paren: <code>\)</code></p>
Backslash escapes.text-res 15 <p>Right brace: }</p>
17 <p>Right bracket: ]</p>
19 <p>Right paren: )</p>
38 Right brace: \}
42 Right bracket: \]
46 Right paren: \)
67 <p>Right brace: <code>\}</code></p>
69 <p>Right bracket: <code>\]</code></p>
71 <p>Right paren: <code>\)</code></p>
  /external/markdown/tests/markdown-test/
backlash-escapes.html 7 <p>Right brace: }</p>
9 <p>Right bracket: ]</p>
11 <p>Right paren: )</p>
29 Right brace: \}
33 Right bracket: \]
37 Right paren: \)
57 <p>Right brace: <code>\}</code></p>
59 <p>Right bracket: <code>\]</code></p>
61 <p>Right paren: <code>\)</code></p>
  /frameworks/base/graphics/java/android/graphics/
RectF.java 27 * represented by the coordinates of its 4 edges (left, top, right bottom).
30 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
35 public float right; field in class:RectF
45 * checking is performed, so the caller must ensure that left <= right and
50 * @param right The X coordinate of the right side of the rectangle
53 public RectF(float left, float top, float right, float bottom) {
56 this.right = right;
69 left = top = right = bottom = 0.0f
    [all...]
Rect.java 29 * represented by the coordinates of its 4 edges (left, top, right bottom).
32 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
37 public int right; field in class:Rect
62 * checking is performed, so the caller must ensure that left <= right and
67 * @param right The X coordinate of the right side of the rectangle
70 public Rect(int left, int top, int right, int bottom) {
73 this.right = right;
86 left = top = right = bottom = 0
    [all...]
  /external/clang/test/Modules/Inputs/
macros_right.h 2 #define RIGHT unsigned short
  /external/clang/test/Preprocessor/
macro_rparen_scan.c 3 /* Right paren scanning, hard case. Should expand to 3. */
  /external/lzma/CPP/Common/
MyVector.h 81 int FindInSorted(const T& item, int left, int right) const
83 while (left != right)
85 int mid = (left + right) / 2;
90 right = mid;
99 int left = 0, right = Size(); local
100 while (left != right)
102 int mid = (left + right) / 2;
107 right = mid;
116 int left = 0, right = Size(); local
117 while (left != right)
223 int left = 0, right = Size(); local
239 int left = 0, right = Size(); local
    [all...]
  /external/toybox/kconfig/
expr.c 39 e->right.expr = e2;
49 e->right.sym = s2;
86 e->right.sym = org->right.sym;
92 e->right.expr = expr_copy(org->right.expr);
121 expr_free(e->right.expr);
139 __expr_eliminate_eq(type, &e1->right.expr, &e2);
144 __expr_eliminate_eq(type, &e1, &e2->right.expr);
203 return e1->left.sym == e2->left.sym && e1->right.sym == e2->right.sym
    [all...]
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
Utilities.java 11 int right = left + w; local
13 d.setBounds(left, top, right, bottom);

Completed in 328 milliseconds

12 3 4 5 6 7 8 91011>>