Searched refs:ChildIteratorType (Results 1 - 25 of 43) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmtGraphTraits.h25 using ChildIteratorType = clang::Stmt::child_iterator;
30 static ChildIteratorType child_begin(NodeRef N) {
32 else return ChildIteratorType();
35 static ChildIteratorType child_end(NodeRef N) {
37 else return ChildIteratorType();
51 using ChildIteratorType = clang::Stmt::const_child_iterator;
56 static ChildIteratorType child_begin(NodeRef N) {
58 else return ChildIteratorType();
61 static ChildIteratorType child_end(NodeRef N) {
63 else return ChildIteratorType();
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInterval.h121 using ChildIteratorType = Interval::succ_iterator;
126 static ChildIteratorType child_begin(NodeRef N) { return succ_begin(N); }
127 static ChildIteratorType child_end(NodeRef N) { return succ_end(N); }
132 using ChildIteratorType = Interval::pred_iterator;
135 static ChildIteratorType child_begin(NodeRef N) { return pred_begin(N); }
136 static ChildIteratorType child_end(NodeRef N) { return pred_end(N); }
H A DCallGraph.h414 using ChildIteratorType =
417 static ChildIteratorType child_begin(NodeRef N) {
418 return ChildIteratorType(N->begin(), &CGNGetValue);
421 static ChildIteratorType child_end(NodeRef N) {
422 return ChildIteratorType(N->end(), &CGNGetValue);
434 using ChildIteratorType =
438 static ChildIteratorType child_begin(NodeRef N) {
439 return ChildIteratorType(N->begin(), &CGNGetValue);
442 static ChildIteratorType child_end(NodeRef N) {
443 return ChildIteratorType(
[all...]
H A DRegionIterator.h43 using SuccIterTy = typename BlockTraits::ChildIteratorType;
170 using SuccIterTy = typename BlockTraits::ChildIteratorType;
261 using ChildIteratorType = RNSuccIterator<NodeRef, BlockT, RegionT>; \
263 static inline ChildIteratorType child_begin(NodeRef N) { \
266 static inline ChildIteratorType child_end(NodeRef N) { \
272 using ChildIteratorType = \
275 static inline ChildIteratorType child_begin(NodeRef N) { \
278 static inline ChildIteratorType child_end(NodeRef N) { \
H A DDDG.h440 using ChildIteratorType =
445 static ChildIteratorType child_begin(NodeRef N) {
446 return ChildIteratorType(N->begin(), &DDGGetTargetNode);
448 static ChildIteratorType child_end(NodeRef N) {
449 return ChildIteratorType(N->end(), &DDGGetTargetNode);
480 using ChildIteratorType =
485 static ChildIteratorType child_begin(NodeRef N) {
486 return ChildIteratorType(N->begin(), &DDGGetTargetNode);
488 static ChildIteratorType child_end(NodeRef N) {
489 return ChildIteratorType(
[all...]
H A DIntervalIterator.h184 for (typename GT::ChildIteratorType I = GT::child_begin(Node),
214 for (typename IGT::ChildIteratorType I = IGT::child_begin(Node),
237 for (typename GT::ChildIteratorType It = GT::child_begin(Node),
H A DLoopIterator.h71 using ChildIteratorType =
76 static ChildIteratorType child_begin(NodeRef Node) {
84 static ChildIteratorType child_end(NodeRef Node) {
H A DRegionInfo.h270 using SuccIterTy = typename BlockTraits::ChildIteratorType;
271 using PredIterTy = typename InvBlockTraits::ChildIteratorType;
690 using SuccIterTy = typename BlockTraits::ChildIteratorType;
691 using PredIterTy = typename InvBlockTraits::ChildIteratorType;
H A DLazyCallGraph.h1241 using ChildIteratorType = LazyCallGraph::EdgeSequence::iterator;
1244 static ChildIteratorType child_begin(NodeRef N) { return (*N)->begin(); }
1245 static ChildIteratorType child_end(NodeRef N) { return (*N)->end(); }
1249 using ChildIteratorType = LazyCallGraph::EdgeSequence::iterator;
1252 static ChildIteratorType child_begin(NodeRef N) { return (*N)->begin(); }
1253 static ChildIteratorType child_end(NodeRef N) { return (*N)->end(); }
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineLoopInfo.h178 using ChildIteratorType = MachineLoopInfo::iterator;
181 static ChildIteratorType child_begin(NodeRef N) { return N->begin(); }
182 static ChildIteratorType child_end(NodeRef N) { return N->end(); }
187 using ChildIteratorType = MachineLoopInfo::iterator;
190 static ChildIteratorType child_begin(NodeRef N) { return N->begin(); }
191 static ChildIteratorType child_end(NodeRef N) { return N->end(); }
H A DMachineBasicBlock.h872 using ChildIteratorType = MachineBasicBlock::succ_iterator;
875 static ChildIteratorType child_begin(NodeRef N) { return N->succ_begin(); }
876 static ChildIteratorType child_end(NodeRef N) { return N->succ_end(); }
881 using ChildIteratorType = MachineBasicBlock::const_succ_iterator;
884 static ChildIteratorType child_begin(NodeRef N) { return N->succ_begin(); }
885 static ChildIteratorType child_end(NodeRef N) { return N->succ_end(); }
896 using ChildIteratorType = MachineBasicBlock::pred_iterator;
902 static ChildIteratorType child_begin(NodeRef N) { return N->pred_begin(); }
903 static ChildIteratorType child_end(NodeRef N) { return N->pred_end(); }
908 using ChildIteratorType
[all...]
H A DMachineDominators.h261 using ChildIteratorType = ChildIterator;
264 static ChildIteratorType child_begin(NodeRef N) { return N->begin(); }
265 static ChildIteratorType child_end(NodeRef N) { return N->end(); }
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DCFG.h300 using ChildIteratorType = succ_iterator;
303 static ChildIteratorType child_begin(NodeRef N) { return succ_begin(N); }
304 static ChildIteratorType child_end(NodeRef N) { return succ_end(N); }
309 using ChildIteratorType = succ_const_iterator;
313 static ChildIteratorType child_begin(NodeRef N) { return succ_begin(N); }
314 static ChildIteratorType child_end(NodeRef N) { return succ_end(N); }
324 using ChildIteratorType = pred_iterator;
327 static ChildIteratorType child_begin(NodeRef N) { return pred_begin(N); }
328 static ChildIteratorType child_end(NodeRef N) { return pred_end(N); }
333 using ChildIteratorType
[all...]
H A DCFGDiff.h177 using ChildIteratorType =
181 static ChildIteratorType child_begin(NodeRef N) {
196 static ChildIteratorType child_end(NodeRef N) {
231 using ChildIteratorType =
235 static ChildIteratorType child_begin(NodeRef N) {
250 static ChildIteratorType child_end(NodeRef N) {
H A DDominators.h193 using ChildIteratorType = ChildIterator;
197 static ChildIteratorType child_begin(NodeRef N) { return N->begin(); }
198 static ChildIteratorType child_end(NodeRef N) { return N->end(); }
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DGraphTraits.h40 // typedef ChildIteratorType - Type used to iterate over children in graph,
46 // static ChildIteratorType child_begin(NodeRef)
47 // static ChildIteratorType child_end (NodeRef)
120 iterator_range<typename GraphTraits<GraphType>::ChildIteratorType>
127 iterator_range<typename GraphTraits<Inverse<GraphType>>::ChildIteratorType>
H A DBreadthFirstIterator.h53 using ChildItTy = typename GT::ChildIteratorType;
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DCallGraph.h188 using ChildIteratorType = NodeType::iterator;
191 static ChildIteratorType child_begin(NodeType *N) { return N->begin(); }
192 static ChildIteratorType child_end(NodeType *N) { return N->end(); }
198 using ChildIteratorType = NodeType::const_iterator;
201 static ChildIteratorType child_begin(NodeType *N) { return N->begin();}
202 static ChildIteratorType child_end(NodeType *N) { return N->end(); }
H A DCFG.h1474 using ChildIteratorType = ::clang::CFGBlock::succ_iterator;
1477 static ChildIteratorType child_begin(NodeRef N) { return N->succ_begin(); }
1478 static ChildIteratorType child_end(NodeRef N) { return N->succ_end(); }
1486 using ChildIteratorType = ::clang::CFGBlock::const_succ_iterator;
1489 static ChildIteratorType child_begin(NodeRef N) { return N->succ_begin(); }
1490 static ChildIteratorType child_end(NodeRef N) { return N->succ_end(); }
1498 using ChildIteratorType = ::clang::CFGBlock::const_pred_iterator;
1504 static ChildIteratorType child_begin(NodeRef N) { return N->pred_begin(); }
1505 static ChildIteratorType child_end(NodeRef N) { return N->pred_end(); }
1513 using ChildIteratorType
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineBlockFrequencyInfo.cpp90 using ChildIteratorType = MachineBasicBlock::const_succ_iterator;
97 static ChildIteratorType child_begin(const NodeRef N) {
101 static ChildIteratorType child_end(const NodeRef N) { return N->succ_end(); }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfo.cpp101 using ChildIteratorType = succ_const_iterator;
108 static ChildIteratorType child_begin(const NodeRef N) {
112 static ChildIteratorType child_end(const NodeRef N) { return succ_end(N); }
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DDominators.h354 using ChildIteratorType = ::clang::DomTreeNode::iterator;
357 static ChildIteratorType child_begin(NodeRef N) { return N->begin(); }
358 static ChildIteratorType child_end(NodeRef N) { return N->end(); }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h1233 using ChildIteratorType = SmallVectorImpl<VPBlockBase *>::iterator;
1237 static inline ChildIteratorType child_begin(NodeRef N) {
1241 static inline ChildIteratorType child_end(NodeRef N) {
1248 using ChildIteratorType = SmallVectorImpl<VPBlockBase *>::const_iterator;
1252 static inline ChildIteratorType child_begin(NodeRef N) {
1256 static inline ChildIteratorType child_end(NodeRef N) {
1265 using ChildIteratorType = SmallVectorImpl<VPBlockBase *>::iterator;
1269 static inline ChildIteratorType child_begin(NodeRef N) {
1273 static inline ChildIteratorType child_end(NodeRef N) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
H A DModuleManager.cpp465 using ChildIteratorType = llvm::SetVector<ModuleFile *>::const_iterator;
468 static ChildIteratorType child_begin(NodeRef Node) {
472 static ChildIteratorType child_end(NodeRef Node) {
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h513 using ChildIteratorType = clang::ento::ExplodedNode::succ_iterator;
524 static ChildIteratorType child_begin(NodeRef N) {
530 static ChildIteratorType child_end(NodeRef N) {

Completed in 340 milliseconds

12