Home
last modified time | relevance | path

Searched refs:getChildNode (Results 1 – 25 of 27) sorted by relevance

12

/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DIntermNode.h108 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 …]
DIntermNode.cpp211 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 …]
DValidateAST.cpp92 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/
DIntermNode.h113 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 …]
DIntermNode.cpp221 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 …]
DOutputSPIRV.cpp1451 const TType &arg0Type = node->getChildNode(0)->getAsTyped()->getType(); in createConstructorScalarFromNonScalar()
1502 const TType &arg0Type = node->getChildNode(0)->getAsTyped()->getType(); in createConstructorVectorFromMatrix()
1835 &param, node->getChildNode(paramIndex)->getAsTyped()->getType(), &paramTypeId); 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 …]
DValidateAST.cpp166 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/
DFindPreciseNodes.cpp143 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()
DIntermTraverse.cpp43 node->getChildNode(childIndex)->traverse(this); in traverse()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
DToposortStructs.cpp220 TIntermNode &childNode = *declNode->getChildNode(0); in GetAsDeclaredStructure()
317 TIntermNode &stmtNode = *root.getChildNode(i); in ToposortStructs()
DReduceInterfaceBlocks.cpp38 TIntermNode &node = *declNode.getChildNode(0); in visitDeclarationPre()
DEmitMetal.cpp2033 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()
DAstHelpers.cpp21 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/
DReplaceVariable.cpp118 TIntermNode *param = node->getChildNode(paramIndex); in convertASTFunction()
DIntermTraverse.cpp40 node->getChildNode(childIndex)->traverse(this); in traverse()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DRewriteDfdy.cpp164 TIntermTyped *operand = node->getChildNode(0)->getAsTyped(); in visitAggregateWithRotation()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/vulkan/
DRewriteR32fImages.cpp89 TIntermTyped *rewritten = block.getChildNode(0)->getAsTyped(); in RewriteExpression()
/third_party/skia/third_party/externals/icu/source/i18n/
Dtznames_impl.h156 CharacterNode* getChildNode(CharacterNode *parent, UChar c) const;
Dtznames_impl.cpp346 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/
Dtznames_impl.h156 CharacterNode* getChildNode(CharacterNode *parent, UChar c) const;
Dtznames_impl.cpp346 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/
Dtznames_impl.h156 CharacterNode* getChildNode(CharacterNode *parent, UChar c) const;
Dtznames_impl.cpp344 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/
Dtznames_impl.h156 CharacterNode* getChildNode(CharacterNode *parent, UChar c) const;
Dtznames_impl.cpp346 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()

12