Home
last modified time | relevance | path

Searched refs:getLeft (Results 1 – 25 of 136) sorted by relevance

123456

/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.java1056 if(node.getLeft() != null) in caseACommaExpression()
1058 node.getLeft().apply(this); in caseACommaExpression()
1081 if(node.getLeft() != null) in caseAEqExpression()
1083 node.getLeft().apply(this); in caseAEqExpression()
1106 if(node.getLeft() != null) in caseANumericEqExpression()
1108 node.getLeft().apply(this); in caseANumericEqExpression()
1131 if(node.getLeft() != null) in caseANeExpression()
1133 node.getLeft().apply(this); in caseANeExpression()
1156 if(node.getLeft() != null) in caseANumericNeExpression()
1158 node.getLeft().apply(this); in caseANumericNeExpression()
[all …]
DReversedDepthFirstAdapter.java1067 if(node.getLeft() != null) in caseACommaExpression()
1069 node.getLeft().apply(this); in caseACommaExpression()
1092 if(node.getLeft() != null) in caseAEqExpression()
1094 node.getLeft().apply(this); in caseAEqExpression()
1117 if(node.getLeft() != null) in caseANumericEqExpression()
1119 node.getLeft().apply(this); in caseANumericEqExpression()
1142 if(node.getLeft() != null) in caseANeExpression()
1144 node.getLeft().apply(this); in caseANeExpression()
1167 if(node.getLeft() != null) in caseANumericNeExpression()
1169 node.getLeft().apply(this); in caseANumericNeExpression()
[all …]
/external/angle/src/compiler/translator/
DShaderStorageBlockOutputHLSL.cpp63 return GetBlockLayoutInfo(binaryNode->getLeft(), true, storage, rowMajor); in GetBlockLayoutInfo()
68 return GetBlockLayoutInfo(binaryNode->getLeft(), rowMajorAlreadyAssigned, storage, in GetBlockLayoutInfo()
298 if (binaryNode->getLeft()->getType().isArrayOfArrays()) in IsInArrayOfArraysChain()
401 return setMatrixStride(binaryNode->getLeft(), storage, rowMajor); in setMatrixStride()
571 if (!IsInShaderStorageBlock(node->getLeft())) in visitBinary()
576 const TType &leftType = node->getLeft()->getType(); in visitBinary()
582 TIntermSymbol *instanceArraySymbol = node->getLeft()->getAsSymbolNode(); in visitBinary()
607 if (!IsInShaderStorageBlock(node->getLeft())) in visitBinary()
613 ASSERT(node->getLeft()->getBasicType() != EbtInterfaceBlock); in visitBinary()
619 if (!IsInShaderStorageBlock(node->getLeft())) in visitBinary()
[all …]
DValidateLimitations.cpp26 TIntermSymbol *symbol = declInit->getLeft()->getAsSymbolNode(); in GetLoopSymbolId()
239 TIntermSymbol *symbol = declInit->getLeft()->getAsSymbolNode(); in validateForLoopInit()
282 TIntermSymbol *symbol = binOp->getLeft()->getAsSymbolNode(); in validateForLoopCond()
350 symbol = binOp->getLeft()->getAsSymbolNode(); in validateForLoopExpr()
420 TIntermTyped *operand = node->getLeft(); in validateIndexing()
DOutputHLSL.cpp71 return IsInStd140UniformBlock(binaryNode->getLeft()); in IsInStd140UniformBlock()
95 return IsInstanceUniformBlock(binaryNode->getLeft()); in IsInstanceUniformBlock()
213 const TStructure *structure = ancestorBinary->getLeft()->getType().getStruct(); in needStructMapping()
1391 const TStructure *structure = ancestorBinary->getLeft()->getType().getStruct(); in ancestorEvaluatesToSamplerInStruct()
1439 node->getLeft()->traverse(this); in visitBinary()
1469 node->getLeft()->traverse(this); in visitBinary()
1473 else if (IsInShaderStorageBlock(node->getLeft())) in visitBinary()
1475 mSSBOOutputHLSL->outputStoreFunctionCallPrefix(node->getLeft()); in visitBinary()
1491 node->getLeft()->traverse(this); in visitBinary()
1502 TIntermSymbol *symbolNode = node->getLeft()->getAsSymbolNode(); in visitBinary()
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DExpressionTranslator.java226 JavaExpression left = cast(Type.STRING, node.getLeft()); in caseAEqExpression()
233 setResult(infix(Type.BOOLEAN, Type.INT, "==", node.getLeft(), node.getRight())); in caseANumericEqExpression()
238 JavaExpression left = cast(Type.STRING, node.getLeft()); 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DImmutableSet.h60 ImutAVLTree *getLeft() const { return left; } in getLeft() function
82 T = T->getLeft(); in find()
102 if (const ImutAVLTree* L = getLeft()) in size()
177 if (ImutAVLTree* L = getLeft()) in foreach()
193 unsigned HL = getLeft() ? getLeft()->validateTree() : 0; in validateTree()
204 assert((!getLeft() || in validateTree()
205 ImutInfo::isLess(ImutInfo::KeyOfValue(getLeft()->getValue()), in validateTree()
321 uint32_t X = computeDigest(getLeft(), getRight(), getValue()); in computeDigest()
429 TreeTy* getLeft(TreeTy* T) const { return T->getLeft(); } in getLeft() function
501 TreeTy *LL = getLeft(L); in balanceTree()
[all …]
/external/llvm/include/llvm/ADT/
DImmutableSet.h58 ImutAVLTree *getLeft() const { return left; } in getLeft() function
80 T = T->getLeft(); in find()
100 if (const ImutAVLTree* L = getLeft()) in size()
175 if (ImutAVLTree* L = getLeft()) in foreach()
191 unsigned HL = getLeft() ? getLeft()->validateTree() : 0; in validateTree()
202 assert((!getLeft() || in validateTree()
203 ImutInfo::isLess(ImutInfo::KeyOfValue(getLeft()->getValue()), in validateTree()
320 uint32_t X = computeDigest(getLeft(), getRight(), getValue()); in computeDigest()
427 TreeTy* getLeft(TreeTy* T) const { return T->getLeft(); } in getLeft() function
499 TreeTy *LL = getLeft(L); in balanceTree()
[all …]
/external/angle/src/compiler/translator/tree_ops/
DRewriteRepeatedAssignToSwizzled.cpp74 if (parentBlock && node->isAssignment() && node->getLeft()->getAsSwizzleNode() && rightBinary && in visitBinary()
79 TIntermTyped *rightAssignmentTargetCopy = rightBinary->getLeft()->deepCopy(); in visitBinary()
81 new TIntermBinary(EOpAssign, node->getLeft(), rightAssignmentTargetCopy); in visitBinary()
DRewriteExpressionsWithShaderStorageBlock.cpp165 bool leftSSBO = IsInShaderStorageBlock(node->getLeft()); in visitBinary()
194 insertInitStatementAndReturnTempSymbol(node->getLeft()->deepCopy(), &insertions); in visitBinary()
201 new TIntermBinary(EOpAssign, node->getLeft(), tempSymbol->deepCopy()); in visitBinary()
208 new TIntermBinary(node->getOp(), node->getLeft(), rightNode->deepCopy()); in visitBinary()
224 TIntermTyped *leftNode = node->getLeft(); in visitBinary()
232 leftNode = insertInitStatementAndReturnTempSymbol(node->getLeft(), &insertions); in visitBinary()
DUnfoldShortCircuitToIf.cpp81 ASSERT(node->getLeft()->getType() == *boolType); in visitBinary()
82 insertions.push_back(CreateTempInitDeclarationNode(resultVariable, node->getLeft())); in visitBinary()
108 ASSERT(node->getLeft()->getType() == *boolType); in visitBinary()
109 insertions.push_back(CreateTempInitDeclarationNode(resultVariable, node->getLeft())); in visitBinary()
DVectorizeVectorScalarArithmetic.cpp87 TIntermTyped *left = node->getLeft(); in visitBinary()
139 TIntermTyped *left = argBinary->getLeft(); in replaceMathInsideConstructor()
168 TIntermTyped *left = argBinary->getLeft(); in replaceAssignInsideConstructor()
252 if (!argBinary->getLeft()->hasSideEffects()) in visitAggregate()
DUnfoldShortCircuitAST.cpp50 replacement = UnfoldOR(node->getLeft(), node->getRight()); in visitBinary()
53 replacement = UnfoldAND(node->getLeft(), node->getRight()); in visitBinary()
DWrapSwitchStatementsInBlocks.cpp98 EOpAssign, declaratorAsBinary->getLeft(), declaratorAsBinary->getRight()); in visitSwitch()
103 declarationInBlock->appendDeclarator(declaratorAsBinary->getLeft()->deepCopy()); in visitSwitch()
DRemoveDynamicIndexing.cpp333 arguments->push_back(node->getLeft()); in CreateIndexFunctionCall()
350 arguments->push_back(node->getLeft()->deepCopy()); in CreateIndexedWriteFunctionCall()
404 const TType &type = node->getLeft()->getType(); in visitBinary()
431 if (node->getLeft()->hasSideEffects()) in visitBinary()
441 TIntermBinary *leftBinary = node->getLeft()->getAsBinaryNode(); in visitBinary()
458 GetIndexFunctionName(node->getLeft()->getType(), true)); in visitBinary()
DSeparateExpressionsReturningArrays.cpp55 return new TIntermBinary(node->getOp(), node->getLeft(), node->getRight()); in CopyAssignmentNode()
78 DeclareTempVariable(mSymbolTable, node->getLeft(), EvqTemporary, &arrayVariableDeclaration); in visitBinary()
/external/angle/src/compiler/translator/tree_util/
DIntermNodePatternMatcher.cpp52 return IsDynamicIndexingOfVectorOrMatrix(node) && !IsInShaderStorageBlock(node->getLeft()); in IsDynamicIndexingOfNonSSBOVectorOrMatrix()
58 return node->getOp() == EOpIndexIndirect && !node->getLeft()->isArray() && in IsDynamicIndexingOfVectorOrMatrix()
59 node->getLeft()->getBasicType() != EbtStruct; in IsDynamicIndexingOfVectorOrMatrix()
65 return IsDynamicIndexingOfVectorOrMatrix(node) && node->getLeft()->getAsSwizzleNode(); in IsDynamicIndexingOfSwizzledVector()
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
DSelectionArea.java133 public int getLeft() { in getLeft() 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/deqp-deps/glslang/glslang/MachineIndependent/
DpropagateNoContraction.cpp366 node->getLeft()->traverse(this); in visitBinary()
375 if (isPreciseObjectNode(node->getLeft())) { in visitBinary()
496 assert(accesschain_mapping_.count(BN->getLeft())); in getPrecisenessAndRemainedAccessChain()
500 BN->getLeft()->traverse(this); in getPrecisenessAndRemainedAccessChain()
503 if (isPreciseObjectNode(BN->getLeft())) { in getPrecisenessAndRemainedAccessChain()
509 assignee_object = accesschain_mapping_.at(BN->getLeft()); in getPrecisenessAndRemainedAccessChain()
578 node->getLeft()->traverse(this); in visitBinary()
588 if (isPreciseObjectNode(node->getLeft())) { in visitBinary()
Dreflection.cpp257 int stride = getArrayStride(baseType, visitNode->getLeft()->getType()); in blowUpActiveAggregate()
263 … for (int i = 0; i < std::max(visitNode->getLeft()->getType().getOuterArraySize(), 1); ++i) { in blowUpActiveAggregate()
282 int stride = getArrayStride(baseType, visitNode->getLeft()->getType()); in blowUpActiveAggregate()
303 offset += intermediate.getOffset(visitNode->getLeft()->getType(), index); in blowUpActiveAggregate()
306 … name.append((*visitNode->getLeft()->getType().getStruct())[index].type->getFieldName()); in blowUpActiveAggregate()
507 const TType& leftType = topNode->getLeft()->getType(); in addDereferencedUniform()
605 …for (TIntermBinary* visitNode = topNode; visitNode; visitNode = visitNode->getLeft()->getAsBinaryN… in addDereferencedUniform()
606 if (isReflectionGranularity(visitNode->getLeft()->getType())) in addDereferencedUniform()
616 … if (isReflectionGranularity(topNode->getLeft()->getType()) && topNode->getLeft()->isArray()) { in addDereferencedUniform()
668 TIntermSymbol *base = node->getLeft()->getAsSymbolNode(); in findBase()
[all …]
/external/angle/third_party/glslang/src/glslang/MachineIndependent/
DpropagateNoContraction.cpp366 node->getLeft()->traverse(this); in visitBinary()
375 if (isPreciseObjectNode(node->getLeft())) { in visitBinary()
496 assert(accesschain_mapping_.count(BN->getLeft())); in getPrecisenessAndRemainedAccessChain()
500 BN->getLeft()->traverse(this); in getPrecisenessAndRemainedAccessChain()
503 if (isPreciseObjectNode(BN->getLeft())) { in getPrecisenessAndRemainedAccessChain()
509 assignee_object = accesschain_mapping_.at(BN->getLeft()); in getPrecisenessAndRemainedAccessChain()
578 node->getLeft()->traverse(this); in visitBinary()
588 if (isPreciseObjectNode(node->getLeft())) { in visitBinary()
Dreflection.cpp257 int stride = getArrayStride(baseType, visitNode->getLeft()->getType()); in blowUpActiveAggregate()
263 … for (int i = 0; i < std::max(visitNode->getLeft()->getType().getOuterArraySize(), 1); ++i) { in blowUpActiveAggregate()
282 int stride = getArrayStride(baseType, visitNode->getLeft()->getType()); in blowUpActiveAggregate()
303 offset += intermediate.getOffset(visitNode->getLeft()->getType(), index); in blowUpActiveAggregate()
306 … name.append((*visitNode->getLeft()->getType().getStruct())[index].type->getFieldName()); in blowUpActiveAggregate()
507 const TType& leftType = topNode->getLeft()->getType(); in addDereferencedUniform()
605 …for (TIntermBinary* visitNode = topNode; visitNode; visitNode = visitNode->getLeft()->getAsBinaryN… in addDereferencedUniform()
606 if (isReflectionGranularity(visitNode->getLeft()->getType())) in addDereferencedUniform()
616 … if (isReflectionGranularity(topNode->getLeft()->getType()) && topNode->getLeft()->isArray()) { in addDereferencedUniform()
668 TIntermSymbol *base = node->getLeft()->getAsSymbolNode(); in findBase()
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
DTypeResolver.java80 PExpression lhs = node.getLeft(); in caseAAddExpression()
90 PExpression lhs = node.getLeft(); in caseAEqExpression()
100 PExpression lhs = node.getLeft(); in caseANeExpression()
/external/swiftshader/src/OpenGL/compiler/
DValidateLimitations.cpp122 validateOperation(node, node->getLeft()); in visitBinary()
258 TIntermSymbol* symbol = declInit->getLeft()->getAsSymbolNode(); in validateForLoopInit()
300 TIntermSymbol* symbol = binOp->getLeft()->getAsSymbolNode(); in validateForLoopCond()
364 symbol = binOp->getLeft()->getAsSymbolNode(); in validateForLoopExpr()
496 TIntermTyped* operand = node->getLeft(); in validateIndexing()

123456