HomeSort by: relevance | last modified time | path
    Searched refs:child_begin (Results 1 - 25 of 60) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtGraphTraits.h 30 static ChildIteratorType child_begin(NodeRef N) { function in struct:llvm::GraphTraits
31 if (N) return N->child_begin();
56 static ChildIteratorType child_begin(NodeRef N) { function in struct:llvm::GraphTraits
57 if (N) return N->child_begin();
Comment.h 224 child_iterator child_begin() const;
230 return child_end() - child_begin();
277 child_iterator child_begin() const { return nullptr; } function in class:clang::comments::TextComment
336 child_iterator child_begin() const { return nullptr; } function in class:clang::comments::InlineCommandComment
468 child_iterator child_begin() const { return nullptr; } function in class:clang::comments::HTMLStartTagComment
523 child_iterator child_begin() const { return nullptr; } function in class:clang::comments::HTMLEndTagComment
572 child_iterator child_begin() const { function in class:clang::comments::ParagraphComment
642 child_iterator child_begin() const { function in class:clang::comments::BlockCommandComment
879 child_iterator child_begin() const { return nullptr; } function in class:clang::comments::ParamCommandComment::VerbatimBlockLineComment
910 child_iterator child_begin() const function in class:clang::comments::ParamCommandComment::VerbatimBlockComment
966 child_iterator child_begin() const { return nullptr; } function in class:clang::comments::ParamCommandComment::VerbatimLineComment
1111 child_iterator child_begin() const { function in class:clang::comments::ParamCommandComment::FullComment
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
GraphTraits.h 46 // static ChildIteratorType child_begin(NodeRef)
122 return make_range(GraphTraits<GraphType>::child_begin(G),
129 return make_range(GraphTraits<Inverse<GraphType>>::child_begin(G),
PostOrderIterator.h 113 VisitStack.push_back(std::make_pair(BB, GT::child_begin(BB)));
122 VisitStack.push_back(std::make_pair(BB, GT::child_begin(BB)));
136 VisitStack.push_back(std::make_pair(BB, GT::child_begin(BB)));
SCCIterator.h 150 VisitStack.push_back(StackElement(N, GT::child_begin(N), visitNum));
220 for (ChildItTy CI = GT::child_begin(N), CE = GT::child_end(N); CI != CE;
BreadthFirstIterator.h 87 ChildIt.emplace(GT::child_begin(Node));
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
Interval.h 123 static ChildIteratorType child_begin(NodeRef N) { return succ_begin(N); } function in struct:llvm::GraphTraits
132 static ChildIteratorType child_begin(NodeRef N) { return pred_begin(N); } function in struct:llvm::GraphTraits
RegionInfoImpl.h 167 for (BlockT *Pred : make_range(InvBlockTraits::child_begin(entry),
188 for (PredIterTy PI = InvBlockTraits::child_begin(exit),
211 for (BlockT *Pred : make_range(InvBlockTraits::child_begin(exit),
262 make_range(BlockTraits::child_begin(BB), BlockTraits::child_end(BB))) {
269 for (BlockT *Pred : make_range(InvBlockTraits::child_begin(BB),
287 make_range(BlockTraits::child_begin(BB), BlockTraits::child_end(BB))) {
468 for (BlockT *Pred : make_range(InvBlockTraits::child_begin(getExit()),
473 return new RegionT(getEntry(), *BlockTraits::child_begin(exit), RI, DT);
480 for (BlockT *Pred : make_range(InvBlockTraits::child_begin(getExit()),
568 for (BlockT *P : make_range(InvBlockTraits::child_begin(BB)
    [all...]
CFG.h 163 for (NodeT Succ : make_range(GT::child_begin(Node), GT::child_end(Node))) {
RegionIterator.h 111 BItor(BlockTraits::child_begin(node->getEntry())) {
191 : Node(node), Itor(BlockTraits::child_begin(node->getEntry())) {
262 // NodeT can either be region node or const region node, otherwise child_begin
270 static inline ChildIteratorType child_begin(NodeRef N) { \
282 static inline ChildIteratorType child_begin(NodeRef N) { \
IntervalIterator.h 184 for (typename GT::ChildIteratorType I = GT::child_begin(Node),
214 for (typename IGT::ChildIteratorType I = IGT::child_begin(Node),
235 for (typename GT::ChildIteratorType It = GT::child_begin(Node),
LoopInfoImpl.h 180 typename BlockTraits::ChildIteratorType SI = BlockTraits::child_begin(Out);
307 assert(std::any_of(GraphTraits<BlockT *>::child_begin(BB),
312 assert(std::any_of(GraphTraits<Inverse<BlockT *>>::child_begin(BB),
318 std::for_each(GraphTraits<Inverse<BlockT *>>::child_begin(BB),
454 InvBlockTraits::child_begin(PredBB),
CallGraph.h 430 static ChildIteratorType child_begin(NodeRef N) { function in struct:GraphTraits
451 static ChildIteratorType child_begin(NodeRef N) { function in struct:GraphTraits
LoopIterator.h 76 static ChildIteratorType child_begin(NodeRef Node) { function in struct:llvm::LoopBodyTraits
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineLoopInfo.h 187 static ChildIteratorType child_begin(NodeRef N) { return N->begin(); } function in struct:llvm::GraphTraits
196 static ChildIteratorType child_begin(NodeRef N) { return N->begin(); } function in struct:llvm::GraphTraits
MachineBasicBlock.h 1138 static ChildIteratorType child_begin(NodeRef N) { return N->succ_begin(); } function in struct:llvm::GraphTraits
1147 static ChildIteratorType child_begin(NodeRef N) { return N->succ_begin(); } function in struct:llvm::GraphTraits
1165 static ChildIteratorType child_begin(NodeRef N) { return N->pred_begin(); } function in struct:llvm::GraphTraits
1177 static ChildIteratorType child_begin(NodeRef N) { return N->pred_begin(); } function in struct:llvm::GraphTraits
  /src/external/apache2/llvm/dist/clang/lib/AST/
Comment.cpp 71 ASSERT_IMPLEMENTS_child_begin(&CLASS::child_begin); \
82 Comment::child_iterator Comment::child_begin() const { function in class:clang::comments::Comment
88 return static_cast<const CLASS *>(this)->child_begin();
120 for (child_iterator I = child_begin(), E = child_end(); I != E; ++I) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
GraphWriter.h 85 child_iterator EI = GTraits::child_begin(Node);
226 child_iterator EI = GTraits::child_begin(Node);
244 (unsigned)std::distance(GTraits::child_begin(TargetNode), TargetIt);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
CFG.h 306 static ChildIteratorType child_begin(NodeRef N) { return succ_begin(N); } function in struct:llvm::GraphTraits
316 static ChildIteratorType child_begin(NodeRef N) { return succ_begin(N); } function in struct:llvm::GraphTraits
330 static ChildIteratorType child_begin(NodeRef N) { return pred_begin(N); } function in struct:llvm::GraphTraits
339 static ChildIteratorType child_begin(NodeRef N) { return pred_begin(N); } function in struct:llvm::GraphTraits
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
CallGraph.h 249 static ChildIteratorType child_begin(NodeType *N) { return N->begin(); } function in struct:llvm::GraphTraits
259 static ChildIteratorType child_begin(NodeType *N) { return N->begin();} function in struct:llvm::GraphTraits
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Archive.h 239 child_iterator child_begin(Error &Err, bool SkipInternal = true) const;
243 return make_range(child_begin(Err, SkipInternal), child_end());
  /src/external/apache2/llvm/dist/clang/lib/Index/
CommentToXML.cpp 100 for (Comment::child_iterator I = C->child_begin(), E = C->child_end();
325 for (Comment::child_iterator I = C->child_begin(), E = C->child_end();
492 for (Comment::child_iterator I = C->child_begin(), E = C->child_end();
698 for (Comment::child_iterator I = C->child_begin(), E = C->child_end();
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
ProfiledCallGraph.h 135 static ChildIteratorType child_begin(NodeRef N) { return N->Callees.begin(); } function in struct:llvm::GraphTraits
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 524 static ChildIteratorType child_begin(NodeRef N) { function in struct:llvm::GraphTraits
526 return child_begin(*N->succ_begin());
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
Dominators.h 285 static ChildIteratorType child_begin(NodeRef N) { return N->begin(); } function in struct:llvm::GraphTraits

Completed in 36 milliseconds

1 2 3