/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | IntermNode.h | 108 virtual TIntermNode *getChildNode(size_t index) const = 0; 200 TIntermNode *getChildNode(size_t index) const final; 234 TIntermNode *getChildNode(size_t index) const final; 271 TIntermNode *getChildNode(size_t index) const final; 346 TIntermNode *getChildNode(size_t index) const final; 420 TIntermNode *getChildNode(size_t index) const final; 471 TIntermNode *getChildNode(size_t index) const final; 521 TIntermNode *getChildNode(size_t index) const final; 600 TIntermNode *getChildNode(size_t index) const final; 669 TIntermNode *getChildNode(size_t index) const final; [all …]
|
D | IntermNode.cpp | 211 TIntermNode *TIntermSymbol::getChildNode(size_t index) const in getChildNode() function in sh::TIntermSymbol 222 TIntermNode *TIntermConstantUnion::getChildNode(size_t index) const in getChildNode() function in sh::TIntermConstantUnion 233 TIntermNode *TIntermLoop::getChildNode(size_t index) const in getChildNode() function in sh::TIntermLoop 276 TIntermNode *TIntermBranch::getChildNode(size_t index) const in getChildNode() function in sh::TIntermBranch 294 TIntermNode *TIntermSwizzle::getChildNode(size_t index) const in getChildNode() function in sh::TIntermSwizzle 313 TIntermNode *TIntermBinary::getChildNode(size_t index) const in getChildNode() function in sh::TIntermBinary 335 TIntermNode *TIntermUnary::getChildNode(size_t index) const in getChildNode() function in sh::TIntermUnary 354 TIntermNode *TIntermInvariantDeclaration::getChildNode(size_t index) const in getChildNode() function in sh::TIntermInvariantDeclaration 372 TIntermNode *TIntermFunctionDefinition::getChildNode(size_t index) const in getChildNode() function in sh::TIntermFunctionDefinition 394 TIntermNode *TIntermAggregate::getChildNode(size_t index) const in getChildNode() function in sh::TIntermAggregate [all …]
|
D | ValidateAST.cpp | 92 TIntermNode *child = node->getChildNode(i); in visitNode() 123 if (node->getChildNode(i) == nullptr) in expectNonNullChildren()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | IntermNode.h | 113 virtual TIntermNode *getChildNode(size_t index) const = 0; 224 TIntermNode *getChildNode(size_t index) const final; 263 TIntermNode *getChildNode(size_t index) const final; 305 TIntermNode *getChildNode(size_t index) const final; 381 TIntermNode *getChildNode(size_t index) const final; 457 TIntermNode *getChildNode(size_t index) const final; 510 TIntermNode *getChildNode(size_t index) const final; 556 TIntermNode *getChildNode(size_t index) const final; 638 TIntermNode *getChildNode(size_t index) const final; 694 TIntermNode *getChildNode(size_t index) const final; [all …]
|
D | IntermNode.cpp | 221 TIntermNode *TIntermSymbol::getChildNode(size_t index) const in getChildNode() function in sh::TIntermSymbol 232 TIntermNode *TIntermConstantUnion::getChildNode(size_t index) const in getChildNode() function in sh::TIntermConstantUnion 243 TIntermNode *TIntermLoop::getChildNode(size_t index) const in getChildNode() function in sh::TIntermLoop 290 TIntermNode *TIntermBranch::getChildNode(size_t index) const in getChildNode() function in sh::TIntermBranch 308 TIntermNode *TIntermSwizzle::getChildNode(size_t index) const in getChildNode() function in sh::TIntermSwizzle 327 TIntermNode *TIntermBinary::getChildNode(size_t index) const in getChildNode() function in sh::TIntermBinary 349 TIntermNode *TIntermUnary::getChildNode(size_t index) const in getChildNode() function in sh::TIntermUnary 368 TIntermNode *TIntermGlobalQualifierDeclaration::getChildNode(size_t index) const in getChildNode() function in sh::TIntermGlobalQualifierDeclaration 387 TIntermNode *TIntermFunctionDefinition::getChildNode(size_t index) const in getChildNode() function in sh::TIntermFunctionDefinition 409 TIntermNode *TIntermAggregate::getChildNode(size_t index) const in getChildNode() function in sh::TIntermAggregate [all …]
|
D | OutputSPIRV.cpp | 1451 const TType &arg0Type = node->getChildNode(0)->getAsTyped()->getType(); in createConstructorScalarFromNonScalar() 1502 const TType &arg0Type = node->getChildNode(0)->getAsTyped()->getType(); in createConstructorVectorFromMatrix() 1835 ¶m, node->getChildNode(paramIndex)->getAsTyped()->getType(), ¶mTypeId); in loadAllParams() 2046 const TType &argType = node->getChildNode(paramIndex)->getAsTyped()->getType(); in createFunctionCall() 2114 const TType &argType = node->getChildNode(paramIndex)->getAsTyped()->getType(); in createFunctionCall() 2218 return node->getChildNode(1)->getAsTyped()->hasSideEffects(); in IsShortCircuitNeeded() 2277 TIntermTyped *firstChild = node->getChildNode(0)->getAsTyped(); in visitOperator() 2278 TIntermTyped *secondChild = childCount > 1 ? node->getChildNode(1)->getAsTyped() : nullptr; in visitOperator() 2459 binarySwapOperands = node->getChildNode(1)->getAsTyped()->getType().isVector(); in visitOperator() 2654 if (node->getChildNode(childCount - 1)->getAsTyped()->getType().getBasicType() == in visitOperator() [all …]
|
D | ValidateAST.cpp | 166 TIntermNode *child = node->getChildNode(i); in visitNode() 588 if (node->getChildNode(i) == nullptr) in expectNonNullChildren()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
D | FindPreciseNodes.cpp | 143 lvalueAccessChain.build(node->getChildNode(0)->getAsTyped()); in GetAssignmentAccessChain() 596 node->getChildNode(selectedFieldIndex)->traverse(this); in visitAggregate() 619 node->getChildNode(paramIndex)->traverse(this); in visitAggregate() 651 propagator.propagatePrecise(returnNode->getChildNode(0), {}); in FindPreciseNodes()
|
D | IntermTraverse.cpp | 43 node->getChildNode(childIndex)->traverse(this); in traverse()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
D | ToposortStructs.cpp | 220 TIntermNode &childNode = *declNode->getChildNode(0); in GetAsDeclaredStructure() 317 TIntermNode &stmtNode = *root.getChildNode(i); in ToposortStructs()
|
D | ReduceInterfaceBlocks.cpp | 38 TIntermNode &node = *declNode.getChildNode(0); in visitDeclarationPre()
|
D | EmitMetal.cpp | 2033 TIntermNode &operandNode = *aggregateNode->getChildNode(0); in visitAggregate() 2049 TIntermNode &leftNode = *aggregateNode->getChildNode(0); in visitAggregate() 2050 TIntermNode &rightNode = *aggregateNode->getChildNode(1); in visitAggregate() 2139 TIntermNode &childNode = *declNode->getChildNode(0); in NewlinePad() 2175 TIntermNode &stmtNode = *blockNode->getChildNode(i); in visitBlock() 2223 TIntermNode &node = *declNode->getChildNode(0); in visitDeclaration()
|
D | AstHelpers.cpp | 21 TIntermNode *childNode = declNode.getChildNode(0); in ViewDeclaration() 184 TIntermNode *arg = call.getChildNode(index); in GetArg()
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
D | ReplaceVariable.cpp | 118 TIntermNode *param = node->getChildNode(paramIndex); in convertASTFunction()
|
D | IntermTraverse.cpp | 40 node->getChildNode(childIndex)->traverse(this); in traverse()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
D | RewriteDfdy.cpp | 164 TIntermTyped *operand = node->getChildNode(0)->getAsTyped(); in visitAggregateWithRotation()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/vulkan/ |
D | RewriteR32fImages.cpp | 89 TIntermTyped *rewritten = block.getChildNode(0)->getAsTyped(); in RewriteExpression()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | tznames_impl.h | 156 CharacterNode* getChildNode(CharacterNode *parent, UChar c) const;
|
D | tznames_impl.cpp | 346 TextTrieMap::getChildNode(CharacterNode *parent, UChar c) const { in getChildNode() function in TextTrieMap 430 node = getChildNode(node, c); in search() 438 node = getChildNode(node, c); in search()
|
/third_party/icu/icu4c/source/i18n/ |
D | tznames_impl.h | 156 CharacterNode* getChildNode(CharacterNode *parent, UChar c) const;
|
D | tznames_impl.cpp | 346 TextTrieMap::getChildNode(CharacterNode *parent, UChar c) const { in getChildNode() function in TextTrieMap 430 node = getChildNode(node, c); in search() 438 node = getChildNode(node, c); in search()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | tznames_impl.h | 156 CharacterNode* getChildNode(CharacterNode *parent, UChar c) const;
|
D | tznames_impl.cpp | 344 TextTrieMap::getChildNode(CharacterNode *parent, UChar c) const { in getChildNode() function in TextTrieMap 426 node = getChildNode(node, c); in search() 434 node = getChildNode(node, c); in search()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | tznames_impl.h | 156 CharacterNode* getChildNode(CharacterNode *parent, UChar c) const;
|
D | tznames_impl.cpp | 346 TextTrieMap::getChildNode(CharacterNode *parent, UChar c) const { in getChildNode() function in TextTrieMap 430 node = getChildNode(node, c); in search() 438 node = getChildNode(node, c); in search()
|