Home
last modified time | relevance | path

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

1234567

/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/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-project/llvm/include/llvm/ADT/
DImmutableSet.h64 ImutAVLTree *getRight() const { return right; } in getRight() function
84 T = T->getRight(); in find()
93 ImutAVLTree *Right = T->getRight(); in getMaxElement()
94 while (Right) { T = Right; Right = T->getRight(); } in getMaxElement()
104 if (const ImutAVLTree* R = getRight()) in size()
182 if (ImutAVLTree* R = getRight()) in foreach()
194 unsigned HR = getRight() ? getRight()->validateTree() : 0; in validateTree()
209 assert((!getRight() || in validateTree()
211 ImutInfo::KeyOfValue(getRight()->getValue()))) && in validateTree()
320 uint32_t X = computeDigest(getLeft(), getRight(), getValue()); in computeDigest()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DImmutableSet.h63 ImutAVLTree *getRight() const { return right; } in getRight() function
83 T = T->getRight(); in find()
92 ImutAVLTree *Right = T->getRight(); in getMaxElement()
93 while (Right) { T = Right; Right = T->getRight(); } in getMaxElement()
103 if (const ImutAVLTree* R = getRight()) in size()
181 if (ImutAVLTree* R = getRight()) in foreach()
193 unsigned HR = getRight() ? getRight()->validateTree() : 0; in validateTree()
208 assert((!getRight() || in validateTree()
210 ImutInfo::KeyOfValue(getRight()->getValue()))) && in validateTree()
319 uint32_t X = computeDigest(getLeft(), getRight(), getValue()); in computeDigest()
[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/angle/src/compiler/translator/tree_ops/d3d/
DUnfoldShortCircuitToIf.cpp65 ASSERT(node->getRight()->hasSideEffects()); in visitBinary()
85 ASSERT(node->getRight()->getType() == *boolType); in visitBinary()
87 CreateTempAssignmentNode(resultVariable, node->getRight())); in visitBinary()
112 ASSERT(node->getRight()->getType() == *boolType); in visitBinary()
114 CreateTempAssignmentNode(resultVariable, node->getRight())); in visitBinary()
DRewriteExpressionsWithShaderStorageBlock.cpp164 bool rightSSBO = IsInShaderStorageBlock(node->getRight()); in visitBinary()
190 insertInitStatementAndReturnTempSymbol(node->getRight(), &insertions); in visitBinary()
223 TIntermTyped *rightNode = node->getRight(); in visitBinary()
228 rightNode = insertInitStatementAndReturnTempSymbol(node->getRight(), &insertions); in visitBinary()
/external/angle/src/compiler/translator/tree_ops/
DClampIndirectIndices.cpp43 valid = ClampIndirectIndices(mCompiler, node->getRight(), mSymbolTable); in visitBinary()
49 const TType &rightType = node->getRight()->getType(); in visitBinary()
85 TIntermTyped *index = node->getRight(); in visitBinary()
114 queueReplacementWithParent(node, node->getRight(), clamped, OriginalNode::IS_DROPPED); in visitBinary()
DEmulatePrecision.cpp450 if (binaryParent && binaryParent->getOp() == EOpComma && (binaryParent->getRight() != node)) in ParentUsesResult()
546 node->getRight()->getType().getBuiltInTypeNameString())); in visitBinary()
548 node->getLeft(), node->getRight(), "add"); in visitBinary()
556 node->getRight()->getType().getBuiltInTypeNameString())); in visitBinary()
558 node->getLeft(), node->getRight(), "sub"); in visitBinary()
570 node->getRight()->getType().getBuiltInTypeNameString())); in visitBinary()
572 node->getLeft(), node->getRight(), "mul"); in visitBinary()
580 node->getRight()->getType().getBuiltInTypeNameString())); in visitBinary()
582 node->getLeft(), node->getRight(), "div"); in visitBinary()
DRemoveDynamicIndexing.cpp369 ASSERT(node->getRight()->hasSideEffects()); in visitBinary()
376 TVariable *indexVariable = DeclareTempVariable(mSymbolTable, node->getRight(), in visitBinary()
383 queueReplacementWithParent(node, node->getRight(), tempIndex, OriginalNode::IS_DROPPED); in visitBinary()
484 TIntermTyped *indexInitializer = EnsureSignedInt(node->getRight()); in visitBinary()
517 node, EnsureSignedInt(node->getRight()), indexingFunction); in visitBinary()
DDeferGlobalInitializers.cpp54 TIntermTyped *expression = init->getRight(); in GetDeferredInitializers()
75 new TIntermBinary(EOpAssign, symbolNode->deepCopy(), init->getRight()); in GetDeferredInitializers()
/external/javassist/src/main/javassist/compiler/ast/
DNewExpr.java63 public ASTList getArguments() { return (ASTList)getRight().getLeft(); } in getArguments()
68 ASTree t = getRight().getRight(); in getInitializer()
DCastExpr.java51 public ASTree getOprand() { return getRight().getLeft(); } in getOprand()
53 public void setOprand(ASTree t) { getRight().setLeft(t); } in setOprand()
DExpr.java64 public ASTree oprand2() { return getRight().getLeft(); } in oprand2()
67 getRight().setLeft(expr); in setOprand2()
/external/angle/src/compiler/translator/tree_util/
DRewriteSampleMaskVariable.cpp81 const TConstantUnion *constIdx = node->getRight()->getConstantValue(); in visitBinary()
84 if (node->getRight()->hasSideEffects()) in visitBinary()
86 insertStatementInParentBlock(node->getRight()); in visitBinary()
89 queueReplacementWithParent(node, node->getRight(), in visitBinary()
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
DSelectionArea.java141 public int getRight() { in getRight() method in SelectionArea
146 int size = (getRight() - getLeft() + 1) * (getBottom() - getTop() + 1); in copyFrom()
153 for (int x = getLeft(); x <= getRight(); x++) { in copyFrom()
/external/angle/src/compiler/translator/tree_ops/gl/mac/
DUnfoldShortCircuitAST.cpp50 replacement = UnfoldOR(node->getLeft(), node->getRight()); in visitBinary()
53 replacement = UnfoldAND(node->getLeft(), node->getRight()); in visitBinary()
/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/angle/src/compiler/translator/
DOutputHLSL.cpp144 TIntermAggregate *aggregateNode = node.getRight()->getAsAggregate(); in IsAtomicFunctionForSharedVariableDirectAssign()
218 ancestorBinary->getRight()->getAsConstantUnion(); in needStructMapping()
1402 ancestorBinary->getRight()->getAsConstantUnion(); in ancestorEvaluatesToSamplerInStruct()
1443 TIntermAggregate *rightAgg = node->getRight()->getAsAggregate(); in visitBinary()
1468 TIntermAggregate *atomicFunctionNode = node->getRight()->getAsAggregate(); in visitBinary()
1486 if (IsInShaderStorageBlock(node->getRight())) in visitBinary()
1488 mSSBOOutputHLSL->outputLoadFunctionCall(node->getRight()); in visitBinary()
1492 node->getRight()->traverse(this); in visitBinary()
1498 else if (IsInShaderStorageBlock(node->getRight())) in visitBinary()
1502 mSSBOOutputHLSL->outputLoadFunctionCall(node->getRight()); in visitBinary()
[all …]
DValidateLimitations.cpp253 if (!isConstExpr(declInit->getRight())) in validateForLoopInit()
309 if (!isConstExpr(binOp->getRight())) in validateForLoopCond()
396 if (!isConstExpr(binOp->getRight())) in validateForLoopExpr()
427 TIntermTyped *index = node->getRight(); in validateIndexing()
/external/angle/src/compiler/translator/tree_ops/gl/
DVectorizeVectorScalarArithmetic.cpp88 TIntermTyped *right = node->getRight(); in visitBinary()
140 TIntermTyped *right = argBinary->getRight(); in replaceMathInsideConstructor()
169 TIntermTyped *right = argBinary->getRight(); in replaceAssignInsideConstructor()
/external/swiftshader/src/OpenGL/compiler/
DValidateLimitations.cpp271 if (!isConstExpr(declInit->getRight())) { in validateForLoopInit()
326 if (!isConstExpr(binOp->getRight())) { in validateForLoopCond()
397 if (!isConstExpr(binOp->getRight())) { in validateForLoopExpr()
486 TIntermTyped* index = node->getRight(); in validateIndexing()
/external/angle/src/compiler/translator/tree_ops/vulkan/
DMonomorphizeUnsupportedFunctionsInVulkanGLSL.cpp112 TIntermTyped *index = asBinary->getRight(); in ExtractSideEffects()
171 TIntermTyped *index = asBinary->getRight(); in CreateMonomorphizedFunctionCallArgs()
220 TIntermTyped *index = asBinary->getRight(); in MonomorphizeFunction()
229 asBinary->replaceChildNode(asBinary->getRight(), new TIntermSymbol(param)); in MonomorphizeFunction()

1234567