/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
D | ExpressionEvaluator.java | 139 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/ |
D | DepthFirstAdapter.java | 1060 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 …]
|
D | ReversedDepthFirstAdapter.java | 1063 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/ |
D | Pair.java | 50 && 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/ |
D | ExpressionTranslator.java | 227 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/ |
D | ImmutableSet.h | 62 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/ |
D | NewExpr.java | 60 public ASTList getArguments() { return (ASTList)getRight().getLeft(); } in getArguments() 65 ASTree t = getRight().getRight(); in getInitializer()
|
D | CastExpr.java | 48 public ASTree getOprand() { return getRight().getLeft(); } in getOprand() 50 public void setOprand(ASTree t) { getRight().setLeft(t); } in setOprand()
|
D | Expr.java | 61 public ASTree oprand2() { return getRight().getLeft(); } in oprand2() 64 getRight().setLeft(expr); in setOprand2()
|
D | ASTree.java | 29 public ASTree getRight() { return null; } in getRight() method in ASTree
|
D | Pair.java | 46 public ASTree getRight() { return right; } in getRight() method in Pair
|
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/ |
D | SelectionArea.java | 142 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/ |
D | TypeResolver.java | 81 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/ |
D | ShadowTextView.java | 562 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/ |
D | TwoColumnOutput.java | 71 twoOut.getRight().write(s2); in toString() 145 public Writer getRight() { in getRight() method in TwoColumnOutput
|
/external/skia/include/views/animated/ |
D | SkBorderView.h | 23 SkScalar getRight() const { return fRight; } in getRight() function
|
/external/llvm/tools/llvm-diff/ |
D | DiffLog.cpp | 53 Instruction *DiffLogBuilder::getRight(unsigned I) const { return Diff[I].second; } in getRight() function in DiffLogBuilder
|
D | DiffLog.h | 79 Instruction *getRight(unsigned I) const;
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
D | ANumericEqExpression.java | 67 public PExpression getRight() in getRight() method in ANumericEqExpression
|
D | ASubtractExpression.java | 67 public PExpression getRight() in getRight() method in ASubtractExpression
|
D | AOrExpression.java | 67 public PExpression getRight() in getRight() method in AOrExpression
|
D | ACommaExpression.java | 67 public PExpression getRight() in getRight() method in ACommaExpression
|
D | AMultiplyExpression.java | 67 public PExpression getRight() in getRight() method in AMultiplyExpression
|
D | ANumericNeExpression.java | 67 public PExpression getRight() in getRight() method in ANumericNeExpression
|
D | AGtExpression.java | 67 public PExpression getRight() in getRight() method in AGtExpression
|