Home
last modified time | relevance | path

Searched refs:getRight (Results 1 – 25 of 68) 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/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/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/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/chromium_org/third_party/angle/src/compiler/
DUnfoldShortCircuit.cpp37 if (!node->getRight()->hasSideEffects()) in visitBinary()
63 node->getRight()->traverse(this); in visitBinary()
66 node->getRight()->traverse(mOutputHLSL); in visitBinary()
94 node->getRight()->traverse(this); in visitBinary()
97 node->getRight()->traverse(mOutputHLSL); in visitBinary()
DForLoopUnroll.cpp61 ASSERT(declInit->getRight() != NULL); in FillLoopIndexInfo()
62 TIntermConstantUnion* initNode = declInit->getRight()->getAsConstantUnion(); in FillLoopIndexInfo()
72 ASSERT(binOp->getRight() != NULL); in FillLoopIndexInfo()
73 ASSERT(binOp->getRight()->getAsConstantUnion() != NULL); in FillLoopIndexInfo()
77 binOp->getRight()->getAsConstantUnion()); in FillLoopIndexInfo()
177 ASSERT(binOp->getRight() != NULL); in getLoopIncrement()
178 incrementNode = binOp->getRight()->getAsConstantUnion(); in getLoopIncrement()
DValidateLimitations.cpp123 if ((node->getLeft() != NULL) && (node->getRight() != NULL) && in visitBinary()
128 node->getRight()->traverse(&validate); in visitBinary()
278 if (!isConstExpr(declInit->getRight())) { in validateForLoopInit()
333 if (!isConstExpr(binOp->getRight())) { in validateForLoopCond()
404 if (!isConstExpr(binOp->getRight())) { in validateForLoopExpr()
493 TIntermTyped* index = node->getRight(); in validateIndexing()
DUnfoldShortCircuitAST.cpp43 replacement = UnfoldOR(node->getLeft(), node->getRight()); in visitBinary()
46 replacement = UnfoldAND(node->getLeft(), node->getRight()); in visitBinary()
/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/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/chromium/chrome/browser/resources/net_internals/
Dresizableverticalsplitview.js71 this.sizerView_.setGeometry(this.leftView_.getRight(), top,
73 this.rightView_.setGeometry(this.sizerView_.getRight(), top,
/external/chromium_org/third_party/angle/src/compiler/depgraph/
DDependencyGraphBuilder.cpp129 if (TIntermTyped* intermRight = intermAssignment->getRight()) { in visitAssignment()
159 if (TIntermTyped* intermRight = intermLogicalOp->getRight()) { in visitLogicalOp()
170 if (TIntermTyped* intermRight = intermBinary->getRight()) { in visitBinaryChildren()
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
DRequiredThisAnnotationCheck.java73 if (assignment.getRight() == functionNode) { in getFunctionNameNode()
89 if (assignment.getRight() == functionNode) { in getJsDoc()
/external/chromium_org/chrome/browser/resources/net_internals/
Dresizable_vertical_split_view.js100 this.sizerView_.setGeometry(this.leftView_.getRight(), top,
102 this.rightView_.setGeometry(this.sizerView_.getRight(), top,
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DTwoColumnOutput.java75 twoOut.getRight().write(s2); in toString()
149 public Writer getRight() { in getRight() method in TwoColumnOutput
/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/robolectric/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/skia/include/views/animated/
DSkBorderView.h23 SkScalar getRight() const { return fRight; } in getRight() function
/external/chromium_org/third_party/skia/include/views/animated/
DSkBorderView.h23 SkScalar getRight() const { return fRight; } in getRight() function

123