/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ |
Pair.java | 50 && Objects.equal(getRight(), other.getRight());
56 int hRight = getRight() == null ? 0 : getRight().hashCode();
69 public R getRight() {
|
/external/javassist/src/main/javassist/compiler/ast/ |
CastExpr.java | 48 public ASTree getOprand() { return getRight().getLeft(); } 50 public void setOprand(ASTree t) { getRight().setLeft(t); }
|
NewExpr.java | 60 public ASTList getArguments() { return (ASTList)getRight().getLeft(); } 65 ASTree t = getRight().getRight();
|
ASTree.java | 24 * and <code>getRight()</code> returns null. 29 public ASTree getRight() { return null; }
|
Expr.java | 61 public ASTree oprand2() { return getRight().getLeft(); } 64 getRight().setLeft(expr);
|
Pair.java | 46 public ASTree getRight() { return right; }
|
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
ExpressionEvaluator.java | 139 executeFunction("==", node.getLeft(), node.getRight()); 144 executeFunction("#==", node.getLeft(), node.getRight()); 149 executeFunction("!=", node.getLeft(), node.getRight()); 154 executeFunction("#!=", node.getLeft(), node.getRight()); 159 executeFunction("<", node.getLeft(), node.getRight()); 164 executeFunction(">", node.getLeft(), node.getRight()); 169 executeFunction("<=", node.getLeft(), node.getRight()); 174 executeFunction(">=", node.getLeft(), node.getRight()); 179 executeFunction("&&", node.getLeft(), node.getRight()); 184 executeFunction("||", node.getLeft(), node.getRight()); [all...] |
/external/chromium_org/third_party/angle/src/compiler/ |
UnfoldShortCircuit.cpp | 37 if (!node->getRight()->hasSideEffects()) 63 node->getRight()->traverse(this); 66 node->getRight()->traverse(mOutputHLSL); 94 node->getRight()->traverse(this); 97 node->getRight()->traverse(mOutputHLSL);
|
NodeSearch.h | 63 if (node->getRight()->hasSideEffects())
|
ForLoopUnroll.cpp | 61 ASSERT(declInit->getRight() != NULL); 62 TIntermConstantUnion* initNode = declInit->getRight()->getAsConstantUnion(); 72 ASSERT(binOp->getRight() != NULL); 73 ASSERT(binOp->getRight()->getAsConstantUnion() != NULL); 77 binOp->getRight()->getAsConstantUnion()); 177 ASSERT(binOp->getRight() != NULL); 178 incrementNode = binOp->getRight()->getAsConstantUnion();
|
UnfoldShortCircuitAST.cpp | 43 replacement = UnfoldOR(node->getLeft(), node->getRight()); 46 replacement = UnfoldAND(node->getLeft(), node->getRight());
|
/external/chromium_org/third_party/skia/include/views/animated/ |
SkBorderView.h | 23 SkScalar getRight() const { return fRight; }
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
ExpressionTranslator.java | 227 JavaExpression right = cast(Type.STRING, node.getRight()); 233 setResult(infix(Type.BOOLEAN, Type.INT, "==", node.getLeft(), node.getRight())); 239 JavaExpression right = cast(Type.STRING, node.getRight()); 245 setResult(infix(Type.BOOLEAN, Type.INT, "!=", node.getLeft(), node.getRight())); 250 setResult(infix(Type.BOOLEAN, Type.INT, "<", node.getLeft(), node.getRight())); 255 setResult(infix(Type.BOOLEAN, Type.INT, ">", node.getLeft(), node.getRight())); 260 setResult(infix(Type.BOOLEAN, Type.INT, "<=", node.getLeft(), node.getRight())); 265 setResult(infix(Type.BOOLEAN, Type.INT, ">=", node.getLeft(), node.getRight())); 270 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "&&", node.getLeft(), node.getRight())); 275 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "||", node.getLeft(), node.getRight())); [all...] |
/external/skia/include/views/animated/ |
SkBorderView.h | 23 SkScalar getRight() const { return fRight; }
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
PagedViewWidgetImageView.java | 42 getScrollX() + getRight() - getLeft() - getPaddingRight(),
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
PagedViewWidgetImageView.java | 42 getScrollX() + getRight() - getLeft() - getPaddingRight(),
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/ |
DepthFirstAdapter.java | 1060 if(node.getRight() != null) 1062 node.getRight().apply(this); 1085 if(node.getRight() != null) 1087 node.getRight().apply(this); 1110 if(node.getRight() != null) 1112 node.getRight().apply(this); 1135 if(node.getRight() != null) 1137 node.getRight().apply(this); 1160 if(node.getRight() != null) 1162 node.getRight().apply(this) [all...] |
ReversedDepthFirstAdapter.java | 1063 if(node.getRight() != null) 1065 node.getRight().apply(this); 1088 if(node.getRight() != null) 1090 node.getRight().apply(this); 1113 if(node.getRight() != null) 1115 node.getRight().apply(this); 1138 if(node.getRight() != null) 1140 node.getRight().apply(this); 1163 if(node.getRight() != null) 1165 node.getRight().apply(this) [all...] |
/development/samples/ApiDemos/tests/src/com/example/android/apis/view/ |
Focus2ActivityTest.java | 78 mLeftButton.getRight() < mCenterButton.getLeft()); 80 mCenterButton.getRight() < mRightButton.getLeft());
|
Focus2AndroidTest.java | 95 mLeftButton.getRight() < mCenterButton.getLeft()); 97 mCenterButton.getRight() < mRightButton.getLeft());
|
/external/llvm/include/llvm/ADT/ |
ImmutableSet.h | 62 ImutAVLTree *getRight() const { return right; } 82 T = T->getRight(); 91 ImutAVLTree *Right = T->getRight(); 92 while (Right) { T = Right; Right = T->getRight(); } 102 if (const ImutAVLTree* R = getRight()) 180 if (ImutAVLTree* R = getRight()) 192 unsigned HR = getRight() ? getRight()->validateTree() : 0; 208 assert(!(getRight() || 210 ImutInfo::KeyOfValue(getRight()->getValue()))) & [all...] |
/external/llvm/tools/llvm-diff/ |
DiffLog.h | 75 Instruction *getRight(unsigned I) const;
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/focus/ |
ListButtonsDiagonalAcrossItemsTest.java | 64 mLeftButton.getRight() 68 mCenterButton.getRight()
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
TypeResolver.java | 81 PExpression rhs = node.getRight(); 91 PExpression rhs = node.getRight(); 101 PExpression rhs = node.getRight();
|
/cts/tests/tests/widget/src/android/widget/cts/ |
LinearLayoutTest.java | 259 assertEquals(centerView.getLeft(), topView.getRight()); 264 assertEquals(topView.getRight(), centerView.getLeft()); 265 assertEquals(bottomView.getLeft(), centerView.getRight()); 269 assertEquals(centerView.getRight(), bottomView.getLeft()); 270 assertEquals(parent.getWidth(), bottomView.getRight()); 316 assertEquals(leftView.getWidth(), leftView.getRight()); 322 assertEquals(offset + centerView.getWidth(), centerView.getRight()); 327 assertEquals(parent.getWidth(), rightView.getRight());
|