/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | StmtOpenMP.h | 650 void setTaskReductionRefExpr(Expr *E) { Data->getChildren()[0] = E; } in setTaskReductionRefExpr() 682 return cast_or_null<Expr>(Data->getChildren()[0]); in getTaskReductionRefExpr() 1085 &Data->getChildren()[getArraysOffset(getDirectiveKind())]); in getCounters() 1092 &Data->getChildren()[getArraysOffset(getDirectiveKind()) + in getPrivateCounters() 1100 &Data->getChildren()[getArraysOffset(getDirectiveKind()) + in getInits() 1108 &Data->getChildren()[getArraysOffset(getDirectiveKind()) + in getUpdates() 1116 &Data->getChildren()[getArraysOffset(getDirectiveKind()) + in getFinals() 1124 &Data->getChildren()[getArraysOffset(getDirectiveKind()) + in getDependentCounters() 1132 &Data->getChildren()[getArraysOffset(getDirectiveKind()) + in getDependentInits() 1140 &Data->getChildren()[getArraysOffset(getDirectiveKind()) + in getFinalsConditions() [all …]
|
H A D | DeclOpenMP.h | 120 auto **Storage = reinterpret_cast<Expr **>(Data->getChildren().data()); in getVars() 125 auto **Storage = reinterpret_cast<Expr **>(Data->getChildren().data()); in getVars() 144 bool varlist_empty() const { return Data->getChildren().empty(); } in varlist_empty() 349 Expr *getMapperVarRef() { return cast_or_null<Expr>(Data->getChildren()[0]); } in getMapperVarRef() 351 return cast_or_null<Expr>(Data->getChildren()[0]); in getMapperVarRef() 355 Data->getChildren()[0] = MapperVarRefE; in setMapperVarRef() 484 auto **Storage = reinterpret_cast<Expr **>(Data->getChildren().data()); in getVars() 489 auto **Storage = reinterpret_cast<Expr **>(Data->getChildren().data()); in getVars() 512 bool varlist_empty() const { return Data->getChildren().empty(); } in varlist_empty()
|
H A D | OpenMPClause.h | 9113 MutableArrayRef<Stmt *> getChildren(); 9114 ArrayRef<Stmt *> getChildren() const { in getChildren() function 9115 return const_cast<OMPChildren *>(this)->getChildren(); in getChildren()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
H A D | Tree.cpp | 22 for (const syntax::Node &C : T->getChildren()) in traverse() 200 for (const syntax::Node &It : T->getChildren()) { in dumpNode() 249 for (const Node &C : T->getChildren()) { in assertInvariants() 264 for (const Node &C : T->getChildren()) { in assertInvariants() 284 for (const Node &C : getChildren()) { in findFirstLeaf() 304 for (const Node &C : getChildren()) { in findChild() 318 for (Node &C : getChildren()) { in getElementsAsNodesAndDelimiters() 363 for (Node &C : getChildren()) { in getElementsAsNodes()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | GenericDomTreeConstruction.h | 108 static SmallVector<NodePtr, 8> getChildren(NodePtr N, BatchUpdatePtr BUI) { in getChildren() function 110 return BUI->PreViewCFG.template getChildren<Inversed>(N); in getChildren() 111 return getChildren<Inversed>(N); in getChildren() 115 static SmallVector<NodePtr, 8> getChildren(NodePtr N) { in getChildren() function 198 auto Successors = getChildren<Direction>(BB, BatchUpdates); 325 return !getChildren<false>(N, BUI).empty(); in HasForwardSuccessors() 397 for (const auto Succ : getChildren<false>(Node, SNCA.BatchUpdates)) in FindRoots() 777 for (const NodePtr Succ : getChildren<IsPostDom>(TN->getBlock(), BUI)) { in InsertReachable() 907 auto Successors = getChildren<IsPostDom>(Of, BUI); in DeleteEdge() 995 for (const NodePtr Pred : getChildren<!IsPostDom>(TNB, BUI)) { in HasProperSupport()
|
H A D | CFGDiff.h | 53 // a getChildren method to get a Node's children based on the additional updates 135 template <bool InverseEdge> VectRet getChildren(NodePtr N) const { in getChildren() function
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Syntax/ |
H A D | Tree.h | 205 llvm::iterator_range<ChildIterator> getChildren() { in getChildren() function 208 llvm::iterator_range<ConstChildIterator> getChildren() const { in getChildren() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | IteratedDominanceFrontier.h | 76 return GD->template getChildren<IsPostDom>(N);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCPseudoProbe.h | 241 InlinedProbeTreeMap &getChildren() { return Children; } in getChildren() function 242 const InlinedProbeTreeMap &getChildren() const { return Children; } in getChildren() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | LexicalScopes.h | 65 SmallVectorImpl<LexicalScope *> &getChildren() { return Children; } in getChildren() function
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCPseudoProbe.cpp | 232 for (const auto &Child : Root.getChildren()) in emit() 429 Index = Cur->getChildren().size(); in buildAddress2ProbeMap()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUMachineCFGStructurizer.cpp | 530 SetVector<MRT *> *getChildren() { return &Children; } in getChildren() function in __anon3d3c1dbc0211::RegionMRT 804 auto Children = Region->getChildren(); in storeLiveOuts() 1300 auto Children = Region->getChildren(); in regionIsSequence() 1312 auto Children = Region->getChildren(); in fixupRegionExits() 2559 for (MRT *C : llvm::reverse(*Region->getChildren())) in containsNewBackedge() 2584 SetVector<MRT *> *Children = Region->getChildren(); in structurizeComplexRegion() 2724 auto Children = Region->getChildren(); in structurizeRegions() 2777 for (auto *CI : *Region->getChildren()) in initializeSelectRegisters()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | LexicalScopes.cpp | 245 const SmallVectorImpl<LexicalScope *> &Children = WS->getChildren(); in constructScopeNest()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | MemorySSAUpdater.cpp | 855 for (auto *Pi : GD->template getChildren</*InverseEdge=*/true>(BB)) { in applyInsertUpdates() 949 for (auto *Pi : GD->template getChildren</*InverseEdge=*/true>(BB)) { in applyInsertUpdates() 1100 for (auto *Pi : GD->template getChildren</*InverseEdge=*/true>(BBIDF)) in applyInsertUpdates()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DebugHandlerBase.cpp | 120 const SmallVectorImpl<LexicalScope *> &Children = S->getChildren(); in identifyScopeMarkers()
|
H A D | CodeViewDebug.cpp | 3031 collectLexicalBlockInfo(Scope.getChildren(), in collectLexicalBlockInfo() 3060 collectLexicalBlockInfo(Scope.getChildren(), in endFunctionImpl()
|
H A D | DwarfCompileUnit.cpp | 1155 for (LexicalScope *LS : Scope->getChildren()) { in createAndAddScopeChildren()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
H A D | LVScope.h | 210 const LVElements *getChildren() const { return Children.get(); } in getChildren() function
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/ |
H A D | InstrRefBasedImpl.cpp | 3493 WorkStack.push_back({TopScope, TopScope->getChildren().size() - 1}); in makeDepthFirstEjectionMap() 3500 const SmallVectorImpl<LexicalScope *> &Children = WS->getChildren(); in makeDepthFirstEjectionMap() 3506 std::make_pair(ChildScope, ChildScope->getChildren().size() - 1)); in makeDepthFirstEjectionMap() 3608 const SmallVectorImpl<LexicalScope *> &Children = WS->getChildren(); in depthFirstVLocAndEmit()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
H A D | LVScope.cpp | 1649 if (const LVElements *Elements = Scope->getChildren()) in printMatchedElements()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | StmtOpenMP.cpp | 33 MutableArrayRef<Stmt *> OMPChildren::getChildren() { in getChildren() function in OMPChildren
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 7907 AddStmt(Data->getChildren()[I]); in writeOMPChildren()
|
H A D | ASTReader.cpp | 11864 Data->getChildren()[I] = readStmt(); in readOMPChildren()
|