Home
last modified time | relevance | path

Searched refs:getRight (Results 1 – 25 of 65) sorted by relevance

123

/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DExpressionEvaluator.java139 executeFunction("==", node.getLeft(), node.getRight()); in caseAEqExpression()
144 executeFunction("#==", node.getLeft(), node.getRight()); in caseANumericEqExpression()
149 executeFunction("!=", node.getLeft(), node.getRight()); in caseANeExpression()
154 executeFunction("#!=", node.getLeft(), node.getRight()); in caseANumericNeExpression()
159 executeFunction("<", node.getLeft(), node.getRight()); in caseALtExpression()
164 executeFunction(">", node.getLeft(), node.getRight()); in caseAGtExpression()
169 executeFunction("<=", node.getLeft(), node.getRight()); in caseALteExpression()
174 executeFunction(">=", node.getLeft(), node.getRight()); in caseAGteExpression()
179 executeFunction("&&", node.getLeft(), node.getRight()); in caseAAndExpression()
184 executeFunction("||", node.getLeft(), node.getRight()); in caseAOrExpression()
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DDepthFirstAdapter.java1060 if(node.getRight() != null) in caseACommaExpression()
1062 node.getRight().apply(this); in caseACommaExpression()
1085 if(node.getRight() != null) in caseAEqExpression()
1087 node.getRight().apply(this); in caseAEqExpression()
1110 if(node.getRight() != null) in caseANumericEqExpression()
1112 node.getRight().apply(this); in caseANumericEqExpression()
1135 if(node.getRight() != null) in caseANeExpression()
1137 node.getRight().apply(this); in caseANeExpression()
1160 if(node.getRight() != null) in caseANumericNeExpression()
1162 node.getRight().apply(this); in caseANumericNeExpression()
[all …]
DReversedDepthFirstAdapter.java1063 if(node.getRight() != null) in caseACommaExpression()
1065 node.getRight().apply(this); in caseACommaExpression()
1088 if(node.getRight() != null) in caseAEqExpression()
1090 node.getRight().apply(this); in caseAEqExpression()
1113 if(node.getRight() != null) in caseANumericEqExpression()
1115 node.getRight().apply(this); in caseANumericEqExpression()
1138 if(node.getRight() != null) in caseANeExpression()
1140 node.getRight().apply(this); in caseANeExpression()
1163 if(node.getRight() != null) in caseANumericNeExpression()
1165 node.getRight().apply(this); in caseANumericNeExpression()
[all …]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
DPair.java50 && Objects.equal(getRight(), other.getRight()); in equals()
56 int hRight = getRight() == null ? 0 : getRight().hashCode(); in hashCode()
69 public R getRight() { in getRight() method in Pair
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DExpressionTranslator.java227 JavaExpression right = cast(Type.STRING, node.getRight()); in caseAEqExpression()
233 setResult(infix(Type.BOOLEAN, Type.INT, "==", node.getLeft(), node.getRight())); in caseANumericEqExpression()
239 JavaExpression right = cast(Type.STRING, node.getRight()); in caseANeExpression()
245 setResult(infix(Type.BOOLEAN, Type.INT, "!=", node.getLeft(), node.getRight())); in caseANumericNeExpression()
250 setResult(infix(Type.BOOLEAN, Type.INT, "<", node.getLeft(), node.getRight())); in caseALtExpression()
255 setResult(infix(Type.BOOLEAN, Type.INT, ">", node.getLeft(), node.getRight())); in caseAGtExpression()
260 setResult(infix(Type.BOOLEAN, Type.INT, "<=", node.getLeft(), node.getRight())); in caseALteExpression()
265 setResult(infix(Type.BOOLEAN, Type.INT, ">=", node.getLeft(), node.getRight())); in caseAGteExpression()
270 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "&&", node.getLeft(), node.getRight())); in caseAAndExpression()
275 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "||", node.getLeft(), node.getRight())); in caseAOrExpression()
[all …]
/external/llvm/include/llvm/ADT/
DImmutableSet.h62 ImutAVLTree *getRight() const { return right; } in getRight() function
82 T = T->getRight(); in find()
91 ImutAVLTree *Right = T->getRight(); in getMaxElement()
92 while (Right) { T = Right; Right = T->getRight(); } in getMaxElement()
102 if (const ImutAVLTree* R = getRight()) in size()
180 if (ImutAVLTree* R = getRight()) in foreach()
192 unsigned HR = getRight() ? getRight()->validateTree() : 0; in validateTree()
208 assert(!(getRight() || in validateTree()
210 ImutInfo::KeyOfValue(getRight()->getValue()))) && in validateTree()
320 uint32_t X = computeDigest(getLeft(), getRight(), getValue()); in computeDigest()
[all …]
/external/javassist/src/main/javassist/compiler/ast/
DNewExpr.java60 public ASTList getArguments() { return (ASTList)getRight().getLeft(); } in getArguments()
65 ASTree t = getRight().getRight(); in getInitializer()
DCastExpr.java48 public ASTree getOprand() { return getRight().getLeft(); } in getOprand()
50 public void setOprand(ASTree t) { getRight().setLeft(t); } in setOprand()
DExpr.java61 public ASTree oprand2() { return getRight().getLeft(); } in oprand2()
64 getRight().setLeft(expr); in setOprand2()
DASTree.java29 public ASTree getRight() { return null; } in getRight() method in ASTree
DPair.java46 public ASTree getRight() { return right; } in getRight() method in Pair
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
DSelectionArea.java142 public int getRight() { in getRight() method in SelectionArea
147 int size = (getRight() - getLeft() + 1) * (getBottom() - getTop() + 1); in copyFrom()
154 for (int x = getLeft(); x <= getRight(); x++) { in copyFrom()
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
DTypeResolver.java81 PExpression rhs = node.getRight(); in caseAAddExpression()
91 PExpression rhs = node.getRight(); in caseAEqExpression()
101 PExpression rhs = node.getRight(); in caseANeExpression()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowTextView.java562 if (getRight() != that.getRight()) return false; in equals()
572 result = 31 * result + getRight(); in hashCode()
582 ", right=" + getRight() + in toString()
595 public int getRight() { in getRight() method in ShadowTextView.CompoundDrawables
/external/dexmaker/src/dx/java/com/android/dx/util/
DTwoColumnOutput.java71 twoOut.getRight().write(s2); in toString()
145 public Writer getRight() { in getRight() method in TwoColumnOutput
/external/skia/include/views/animated/
DSkBorderView.h23 SkScalar getRight() const { return fRight; } in getRight() function
/external/llvm/tools/llvm-diff/
DDiffLog.cpp53 Instruction *DiffLogBuilder::getRight(unsigned I) const { return Diff[I].second; } in getRight() function in DiffLogBuilder
DDiffLog.h79 Instruction *getRight(unsigned I) const;
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
DANumericEqExpression.java67 public PExpression getRight() in getRight() method in ANumericEqExpression
DASubtractExpression.java67 public PExpression getRight() in getRight() method in ASubtractExpression
DAOrExpression.java67 public PExpression getRight() in getRight() method in AOrExpression
DACommaExpression.java67 public PExpression getRight() in getRight() method in ACommaExpression
DAMultiplyExpression.java67 public PExpression getRight() in getRight() method in AMultiplyExpression
DANumericNeExpression.java67 public PExpression getRight() in getRight() method in ANumericNeExpression
DAGtExpression.java67 public PExpression getRight() in getRight() method in AGtExpression

123