/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);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
drawable1-expected-completion49.txt | 4 android:right : Right coordinate of the layer. [dimension]
|
/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...] |
DoubleConst.java | 44 public ASTree compute(int op, ASTree right) { 45 if (right instanceof IntConst) 46 return compute0(op, (IntConst)right); 47 else if (right instanceof DoubleConst) 48 return compute0(op, (DoubleConst)right); 53 private DoubleConst compute0(int op, DoubleConst right) { 56 || right.type == TokenId.DoubleConstant) 61 return compute(op, this.value, right.value, newType); 64 private DoubleConst compute0(int op, IntConst right) { 65 return compute(op, this.value, (double)right.value, this.type) [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/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...] |
/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/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...] |
/external/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/v8/benchmarks/spinning-balls/ |
splay-tree.js | 79 node.right = this.root_.right; 80 this.root_.right = null; 82 node.right = this.root_; 108 this.root_ = this.root_.right; 110 var right = this.root_.right; 112 // Splay to make sure that the new root has an empty right child. 114 // Insert the original right child as the right child of the ne [all...] |
/bionic/libc/upstream-openbsd/lib/libc/stdlib/ |
tsearch.c | 20 struct node_t *left, *right; member in struct:node_t 41 &(*rootp)->right; /* T4: follow right branch */ 47 q->left = q->right = (struct node_t *)0; 70 &(*rootp)->right; /* follow right branch */ 74 r = (*rootp)->right; /* D1: */ 77 else if (r != (struct node_t *)0) { /* Right link is null? */ 84 r->left = q->right; 86 q->right = (*rootp)->right [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/ |
TestExpressionFeatures.g3 | 116 | e '^'<assoc=right>^ e 121 | e ('='<assoc=right>^ 122 |'+='<assoc=right>^ 123 |'-='<assoc=right>^ 124 |'*='<assoc=right>^ 125 |'/='<assoc=right>^ 126 |'&='<assoc=right>^ 127 |'|='<assoc=right>^ 128 |'^='<assoc=right>^ 129 |'>>='<assoc=right> [all...] |
/external/markdown/tests/extensions-x-tables/ |
tables.html | 42 <th align="right">Value</th> 48 <td align="right">$1600</td> 52 <td align="right">$12</td> 56 <td align="right">$1</td> 83 <th align="right">baz</th> 90 <td align="right" /> 95 <td align="right">W</td>
|
/external/chromium-trace/trace-viewer/tracing/tracing/extras/importer/v8/ |
splaytree.html | 62 node.right = this.root_.right; 63 this.root_.right = null; 65 node.right = this.root_; 91 this.root_ = this.root_.right; 93 var right = this.root_.right; 95 // Splay to make sure that the new root has an empty right child. 97 // Insert the original right child as the right child of the ne [all...] |
/external/v8/tools/ |
splaytree.js | 81 node.right = this.root_.right; 82 this.root_.right = null; 84 node.right = this.root_; 110 this.root_ = this.root_.right; 112 var right = this.root_.right; 114 // Splay to make sure that the new root has an empty right child. 116 // Insert the original right child as the right child of the ne [all...] |
/external/lldb/www/cpp_reference/html/ |
namespacelldb.html | 35 <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBAddress.html">SBAddress</a></td></tr> 36 <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBBlock.html">SBBlock</a></td></tr> 37 <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBBreakpoint.html">SBBreakpoint</a></td></tr> 38 <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBBreakpointLocation.html">SBBreakpointLocation</a></td></tr> 39 <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBBroadcaster.html">SBBroadcaster</a></td></tr> 40 <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBCommandInterpreter.html">SBCommandInterpreter</a></td></tr> 41 <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBCommandPluginInterface.html">SBCommandPluginInterface</a></td></tr> 42 <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBCommand.html">SBCommand</a></td></tr> 43 <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBCommandReturnObject.html">SBCommandReturnObject</a></td></tr> 44 <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classl (…) [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
GravityTest.java | 53 assertEquals(21, mOutRect.right); 58 assertEquals(26, mOutRect.right); 63 assertEquals(21, mOutRect.right); 68 assertEquals(21, mOutRect.right); 74 assertEquals(21, mOutRect.right); 79 assertEquals(26, mOutRect.right); 84 assertEquals(21, mOutRect.right); 89 assertEquals(21, mOutRect.right); 95 assertEquals(12, mOutRect.right); 100 assertEquals(17, mOutRect.right); [all...] |
/external/icu/icu4c/source/common/ |
uarrsort.h | 31 * @param right Pointer to the "right" item. 33 * <0 if left<right 34 * ==0 if left==right 35 * >0 if left>right 40 UComparator(const void *context, const void *left, const void *right); 68 uprv_uint16Comparator(const void *context, const void *left, const void *right); 75 uprv_int32Comparator(const void *context, const void *left, const void *right); 82 uprv_uint32Comparator(const void *context, const void *left, const void *right);
|
/external/icu/icu4c/source/i18n/ |
dtrule.cpp | 69 DateTimeRule::operator=(const DateTimeRule& right) { 70 if (this != &right) { 71 fMonth = right.fMonth; 72 fDayOfMonth = right.fDayOfMonth; 73 fDayOfWeek = right.fDayOfWeek; 74 fWeekInMonth = right.fWeekInMonth; 75 fMillisInDay = right.fMillisInDay; 76 fDateRuleType = right.fDateRuleType; 77 fTimeRuleType = right.fTimeRuleType;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
UCharacterDirection.java | 44 return "Left-to-Right"; 46 return "Right-to-Left"; 66 return "Left-to-Right Embedding"; 68 return "Left-to-Right Override"; 70 return "Right-to-Left Arabic"; 72 return "Right-to-Left Embedding"; 74 return "Right-to-Left Override"; 84 return "Left-to-Right Isolate"; 86 return "Right-to-Left Isolate";
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
UCharacterDirectionTest.java | 49 String name[] = {"Left-to-Right", 50 "Right-to-Left", 60 "Left-to-Right Embedding", 61 "Left-to-Right Override", 62 "Right-to-Left Arabic", 63 "Right-to-Left Embedding", 64 "Right-to-Left Override", 69 "Left-to-Right Isolate", 70 "Right-to-Left Isolate",
|