/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 | 1056 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 …]
|
D | ReversedDepthFirstAdapter.java | 1067 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/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | ExpressionTranslator.java | 226 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/angle/src/compiler/translator/ |
D | ShaderStorageBlockOutputHLSL.cpp | 64 return GetBlockLayoutInfo(binaryNode->getLeft(), true, storage, rowMajor); in GetBlockLayoutInfo() 69 return GetBlockLayoutInfo(binaryNode->getLeft(), rowMajorAlreadyAssigned, storage, in GetBlockLayoutInfo() 391 return getMatrixStride(binaryNode->getLeft(), storage, rowMajor, isRowMajorMatrix); in getMatrixStride() 423 return collectShaderStorageBlocks(binaryNode->getLeft()); in collectShaderStorageBlocks() 470 binaryNode->getLeft()->getType().getInterfaceBlock(); in traverseSSBOAccess() 543 const TType &leftType = binaryNode->getLeft()->getType(); in traverseNode() 547 TIntermSymbol *instanceArraySymbol = binaryNode->getLeft()->getAsSymbolNode(); in traverseNode() 563 ASSERT(binaryNode->getLeft()->getBasicType() != EbtInterfaceBlock); in traverseNode() 569 ASSERT(binaryNode->getLeft()->getBasicType() != EbtInterfaceBlock); in traverseNode() 570 TIntermTyped *left = traverseNode(out, binaryNode->getLeft(), blockMemberInfo); in traverseNode() [all …]
|
D | OutputHLSL.cpp | 71 return IsInStd140UniformBlock(binaryNode->getLeft()); in IsInStd140UniformBlock() 96 return binaryNode->getLeft()->getType().getInterfaceBlock(); in GetInterfaceBlockOfUniformBlockNearestIndexOperator() 216 const TStructure *structure = ancestorBinary->getLeft()->getType().getStruct(); in needStructMapping() 1400 const TStructure *structure = ancestorBinary->getLeft()->getType().getStruct(); in ancestorEvaluatesToSamplerInStruct() 1448 node->getLeft()->traverse(this); in visitBinary() 1478 node->getLeft()->traverse(this); in visitBinary() 1482 else if (IsInShaderStorageBlock(node->getLeft())) in visitBinary() 1484 mSSBOOutputHLSL->outputStoreFunctionCallPrefix(node->getLeft()); in visitBinary() 1500 node->getLeft()->traverse(this); in visitBinary() 1511 TIntermSymbol *symbolNode = node->getLeft()->getAsSymbolNode(); in visitBinary() [all …]
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | ImmutableSet.h | 60 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() 320 uint32_t X = computeDigest(getLeft(), getRight(), getValue()); in computeDigest() 434 TreeTy* getLeft(TreeTy* T) const { return T->getLeft(); } 506 TreeTy *LL = getLeft(L); [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | ImmutableSet.h | 59 ImutAVLTree *getLeft() const { return left; } in getLeft() function 81 T = T->getLeft(); in find() 101 if (const ImutAVLTree* L = getLeft()) in size() 176 if (ImutAVLTree* L = getLeft()) in foreach() 192 unsigned HL = getLeft() ? getLeft()->validateTree() : 0; in validateTree() 203 assert((!getLeft() || in validateTree() 204 ImutInfo::isLess(ImutInfo::KeyOfValue(getLeft()->getValue()), in validateTree() 319 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/llvm/include/llvm/ADT/ |
D | ImmutableSet.h | 58 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/javassist/src/main/javassist/compiler/ast/ |
D | NewExpr.java | 61 public ASTList getClassName() { return (ASTList)getLeft(); } in getClassName() 63 public ASTList getArguments() { return (ASTList)getRight().getLeft(); } in getArguments() 71 return (ArrayInit)t.getLeft(); in getInitializer()
|
D | CastExpr.java | 49 public ASTList getClassName() { return (ASTList)getLeft(); } in getClassName() 51 public ASTree getOprand() { return getRight().getLeft(); } in getOprand()
|
/external/angle/src/compiler/translator/tree_ops/gl/ |
D | RewriteRepeatedAssignToSwizzled.cpp | 74 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()
|
D | VectorizeVectorScalarArithmetic.cpp | 87 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()
|
/external/angle/src/compiler/translator/tree_util/ |
D | IntermNodePatternMatcher.cpp | 52 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/angle/src/compiler/translator/tree_ops/d3d/ |
D | RewriteExpressionsWithShaderStorageBlock.cpp | 165 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()
|
D | UnfoldShortCircuitToIf.cpp | 81 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()
|
/external/javassist/src/test/javassist/compiler/ |
D | CompTest.java | 52 Expr expr = (Expr)s.getLeft().getLeft(); in testStaticMember() 63 Expr expr = (Expr)s.getLeft().getLeft(); in testStaticMember2()
|
/external/angle/src/compiler/translator/tree_ops/ |
D | ClampIndirectIndices.cpp | 41 bool valid = ClampIndirectIndices(mCompiler, node->getLeft(), mSymbolTable); in visitBinary() 48 const TType &leftType = node->getLeft()->getType(); in visitBinary() 65 max = new TIntermUnary(EOpArrayLength, node->getLeft(), nullptr); in visitBinary()
|
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/ |
D | SelectionArea.java | 133 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/angle/src/compiler/translator/tree_ops/gl/mac/ |
D | UnfoldShortCircuitAST.cpp | 50 replacement = UnfoldOR(node->getLeft(), node->getRight()); in visitBinary() 53 replacement = UnfoldAND(node->getLeft(), node->getRight()); in visitBinary()
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | propagateNoContraction.cpp | 366 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()
|
D | reflection.cpp | 274 int stride = getArrayStride(baseType, visitNode->getLeft()->getType()); in blowUpActiveAggregate() 280 … for (int i = 0; i < std::max(visitNode->getLeft()->getType().getOuterArraySize(), 1); ++i) { in blowUpActiveAggregate() 300 int stride = getArrayStride(baseType, visitNode->getLeft()->getType()); in blowUpActiveAggregate() 317 if (topLevelArrayStride != 0 && visitNode->getLeft()->getType().isArray()) { in blowUpActiveAggregate() 325 offset += intermediate.getOffset(visitNode->getLeft()->getType(), index); in blowUpActiveAggregate() 328 … name.append((*visitNode->getLeft()->getType().getStruct())[index].type->getFieldName()); in blowUpActiveAggregate() 331 … if (visitNode->getLeft()->getType().getBasicType() != EbtBlock && terminalType->isArray()) in blowUpActiveAggregate() 562 const TType& leftType = topNode->getLeft()->getType(); in addDereferencedUniform() 612 …for (TIntermBinary* visitNode = topNode; visitNode; visitNode = visitNode->getLeft()->getAsBinaryN… in addDereferencedUniform() 613 if (isReflectionGranularity(visitNode->getLeft()->getType())) in addDereferencedUniform() [all …]
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ |
D | propagateNoContraction.cpp | 366 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()
|
D | reflection.cpp | 274 int stride = getArrayStride(baseType, visitNode->getLeft()->getType()); in blowUpActiveAggregate() 280 … for (int i = 0; i < std::max(visitNode->getLeft()->getType().getOuterArraySize(), 1); ++i) { in blowUpActiveAggregate() 300 int stride = getArrayStride(baseType, visitNode->getLeft()->getType()); in blowUpActiveAggregate() 317 if (topLevelArrayStride != 0 && visitNode->getLeft()->getType().isArray()) { in blowUpActiveAggregate() 325 offset += intermediate.getOffset(visitNode->getLeft()->getType(), index); in blowUpActiveAggregate() 328 … name.append((*visitNode->getLeft()->getType().getStruct())[index].type->getFieldName()); in blowUpActiveAggregate() 331 … if (visitNode->getLeft()->getType().getBasicType() != EbtBlock && terminalType->isArray()) in blowUpActiveAggregate() 562 const TType& leftType = topNode->getLeft()->getType(); in addDereferencedUniform() 612 …for (TIntermBinary* visitNode = topNode; visitNode; visitNode = visitNode->getLeft()->getAsBinaryN… in addDereferencedUniform() 613 if (isReflectionGranularity(visitNode->getLeft()->getType())) in addDereferencedUniform() [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
D | TypeResolver.java | 80 PExpression lhs = node.getLeft(); in caseAAddExpression() 90 PExpression lhs = node.getLeft(); in caseAEqExpression() 100 PExpression lhs = node.getLeft(); in caseANeExpression()
|