/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
syntax.go | 17 Right *Node 193 OADD // Left + Right 194 OSUB // Left - Right 195 OOR // Left | Right 196 OXOR // Left ^ Right 197 OADDSTR // Left + Right (string addition) 199 OANDAND // Left && Right 207 OAS // Left = Right or (if Colas=true) Left := Right 213 OASOP // Left Etype= Right (x += y [all...] |
/art/test/543-env-long-ref/ |
info.txt | 2 the right dex register in debuggable when a new value
|
/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/webrtc/talk/app/webrtc/objc/ |
.clang-format | 6 PointerAlignment: Right
|
/prebuilts/go/darwin-x86/misc/chrome/gophertool/ |
README.txt | 4 2) click "[+] Developer Mode" in top right
|
/prebuilts/go/linux-x86/misc/chrome/gophertool/ |
README.txt | 4 2) click "[+] Developer Mode" in top right
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion2-expected-completion13c.txt | 4 bottom|right
|
completionvalues1-expected-completion27.txt | 5 right
|
completionvalues1-expected-completion28.txt | 5 right
|
drawable1-expected-completion49.txt | 4 android:right : Right coordinate of the layer. [dimension]
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
x86-64-unwind.s | 1 # First create .eh_frame with the right type.
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/ |
cons-2.s | 2 # that we get the right output with this test.
|
/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);
|
/external/eigen/doc/snippets/ |
Tutorial_solve_multiple_rhs.cpp | 7 cout << "The solution with right-hand side (3,3,4) is:" << endl; 9 cout << "The solution with right-hand side (1,1,1) is:" << endl;
|
Tutorial_solve_reuse_decomposition.cpp | 8 cout << "The solution with right-hand side (3,3,4) is:" << endl; 12 cout << "The solution with right-hand side (1,1,1) is:" << endl;
|
/external/guava/guava/src/com/google/common/collect/ |
ComparisonChain.java | 75 Comparable left, Comparable right) { 76 return classify(left.compareTo(right)); 79 @Nullable T left, @Nullable T right, Comparator<T> comparator) { 80 return classify(comparator.compare(left, right)); 82 @Override public ComparisonChain compare(int left, int right) { 83 return classify(Ints.compare(left, right)); 85 @Override public ComparisonChain compare(long left, long right) { 86 return classify(Longs.compare(left, right)); 88 @Override public ComparisonChain compare(float left, float right) { 89 return classify(Float.compare(left, right)); [all...] |
/external/skia/tests/ |
CanvasStateHelpers.cpp | 17 float right, float bottom, int32_t spacer) { 22 SkRect rect = SkRect::MakeLTRB(left, top, right, bottom); 29 float left, float top, float right, float bottom, int32_t spacer) { 34 complex_layers_draw(canvas, left, top, right, bottom, spacer); 40 int32_t right, int32_t bottom, int32_t clipOp, const SkRegion& localRegion) { 43 SkIntToScalar(right), SkIntToScalar(bottom)); 53 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp, 67 complex_clips_draw(canvas, left, top, right, bottom, clipOp, localRegion);
|
/external/javassist/src/main/javassist/compiler/ast/ |
Pair.java | 25 protected ASTree left, right; field in class:Pair 29 right = _right; 39 sbuf.append(right == null ? "<null>" : right.toString()); 46 public ASTree getRight() { return right; } 50 public void setRight(ASTree _right) { right = _right; }
|
ASTList.java | 22 * The right subtree must be an ASTList object or null. 26 private ASTList right; field in class:ASTList 30 right = _tail; 35 right = null; 44 public ASTree getRight() { return right; } 49 right = (ASTList)_right; 64 public ASTList tail() { return right; } 67 right = _tail; 82 list = list.right; 102 list = list.right; [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Insets.java | 33 public final int right; field in class:Insets 36 private Insets(int left, int top, int right, int bottom) { 39 this.right = right; 50 * @param right the right inset 55 public static Insets of(int left, int top, int right, int bottom) { 56 if (left == 0 && top == 0 && right == 0 && bottom == 0) { 59 return new Insets(left, top, right, bottom); 70 return (r == null) ? NONE : of(r.left, r.top, r.right, r.bottom) [all...] |
/external/avahi/avahi-core/ |
prioq.c | 67 n = n->right; 100 a->parent->right = a; 109 r = a->right; 110 if ((a->right = b->right)) 111 a->right->parent = a; 112 if ((b->right = r)) 113 b->right->parent = b; 116 if ((b->right = a->right)) [all...] |
/external/v8/test/mjsunit/tools/ |
splaytree.js | 66 right: { key: 20, value: 20, 68 left: null, right: null }, 69 right: null } }, 70 right: { key: 40, value: 40, left: null, right: null } }, 71 right: { key: 60, value: 60, left: null, 72 right: { key: 90, value: 90, 74 right: { key: 80, value: 80, 75 left: null, right: null } }, 76 right: { key: 100, value: 100 [all...] |
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/ |
MockRectF.java | 28 //public float right;
42 it.right = rhs.right;
47 public void $init(float left, float top, float right, float bottom) {
50 it.right = right;
62 it.right = it.right + dx;
71 it.right = left + width();
87 return it.right - it.left; [all...] |