HomeSort by relevance Sort by last modified time
    Searched defs:child_begin (Results 1 - 25 of 26) sorted by null

1 2

  /external/llvm/include/llvm/ADT/
GraphTraits.h 36 // static ChildIteratorType child_begin(NodeType *)
95 static ChildIteratorType child_begin(NodeType* N) { function in struct:llvm::GraphTraits
96 return GraphTraits<T>::child_begin(N);
  /external/clang/include/clang/AST/
StmtGraphTraits.h 34 static inline ChildIteratorType child_begin(NodeType* N) { function in struct:llvm::GraphTraits
35 if (N) return N->child_begin();
61 static inline ChildIteratorType child_begin(NodeType* N) { function in struct:llvm::GraphTraits
62 if (N) return N->child_begin();
Comment.h 230 child_iterator child_begin() const;
236 return child_end() - child_begin();
283 child_iterator child_begin() const { return nullptr; } function in class:clang::comments::TextComment
341 child_iterator child_begin() const { return nullptr; } function in class:clang::comments::InlineCommandComment
474 child_iterator child_begin() const { return nullptr; } function in class:clang::comments::HTMLStartTagComment
529 child_iterator child_begin() const { return nullptr; } function in class:clang::comments::HTMLEndTagComment
578 child_iterator child_begin() const { function in class:clang::comments::ParagraphComment
648 child_iterator child_begin() const { function in class:clang::comments::BlockCommandComment
885 child_iterator child_begin() const { return nullptr; } function in class:clang::comments::ParamCommandComment::VerbatimBlockLineComment
916 child_iterator child_begin() const function in class:clang::comments::ParamCommandComment::VerbatimBlockComment
972 child_iterator child_begin() const { return nullptr; } function in class:clang::comments::ParamCommandComment::VerbatimLineComment
1117 child_iterator child_begin() const { function in class:clang::comments::ParamCommandComment::FullComment
    [all...]
  /external/llvm/unittests/ADT/
SCCIteratorTest.cpp 218 /// child_begin - Return an iterator pointing to the first child of the given
220 static ChildIterator child_begin(NodeType *Parent) {
236 static inline ChildIteratorType child_begin(NodeType *Node) { function in struct:llvm::GraphTraits
237 return Graph<N>::child_begin(Node);
  /external/llvm/include/llvm/Analysis/
Interval.h 128 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
140 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
CallGraph.h 414 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:GraphTraits
436 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:GraphTraits
LazyCallGraph.h 525 static ChildIteratorType child_begin(NodeType *N) { return N->begin(); } function in struct:llvm::GraphTraits
533 static ChildIteratorType child_begin(NodeType *N) { return N->begin(); } function in struct:llvm::GraphTraits
LoopInfo.h 170 BlockTraits::child_begin(BB),
186 InvBlockTraits::child_begin(H),
253 InvBlockTraits::child_begin(H),
780 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
793 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
  /external/llvm/include/llvm/CodeGen/
MachineLoopInfo.h 163 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
176 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
MachineDominators.h 255 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::MachineDomTreeGraphTraitsBase
MachineBasicBlock.h 801 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
814 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
834 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
848 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
    [all...]
ScheduleDAG.h 667 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::SUnit::GraphTraits
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 176 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
  /external/clang/lib/AST/
Comment.cpp 58 ASSERT_IMPLEMENTS_child_begin(&CLASS::child_begin); \
69 Comment::child_iterator Comment::child_begin() const { function in class:clang::comments::Comment
75 return static_cast<const CLASS *>(this)->child_begin();
107 for (child_iterator I = child_begin(), E = child_end(); I != E; ++I) {
  /external/llvm/include/llvm/IR/
Dominators.h 150 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::DomTreeGraphTraitsBase
CFG.h 161 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
175 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
192 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
206 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
  /external/llvm/lib/Analysis/
BlockFrequencyInfo.cpp 60 static ChildIteratorType child_begin(const NodeType *N) { function in struct:llvm::GraphTraits
BlockFrequencyInfoImpl.cpp 605 static ChildIteratorType child_begin(NodeType *N) { return N->succ_begin(); } function in struct:llvm::GraphTraits
  /external/llvm/lib/CodeGen/
MachineBlockFrequencyInfo.cpp 63 static ChildIteratorType child_begin(const NodeType *N) { function in struct:llvm::GraphTraits
  /external/clang/include/clang/Analysis/
CallGraph.h 180 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
195 static inline ChildIteratorType child_begin(NodeType *N) { return N->begin();} function in struct:llvm::GraphTraits
CFG.h 1007 static inline ChildIteratorType child_begin(NodeType* N) function in struct:clang::llvm::GraphTraits
1021 static inline ChildIteratorType child_begin(NodeType* N) function in struct:clang::llvm::GraphTraits
1035 static inline ChildIteratorType child_begin(NodeType* N) function in struct:clang::llvm::GraphTraits
1049 static inline ChildIteratorType child_begin(NodeType* N) function in struct:clang::llvm::GraphTraits
    [all...]
  /external/clang/lib/Serialization/
ModuleManager.cpp 441 static ChildIteratorType child_begin(NodeType *Node) { function in struct:llvm::GraphTraits
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 384 static inline ChildIteratorType child_begin(NodeType *N) { function in struct:llvm::GraphTraits
    [all...]
  /external/llvm/lib/Object/
Archive.cpp 274 child_iterator I = child_begin(false);
420 Archive::child_iterator Archive::child_begin(bool SkipInternal) const { function in class:Archive
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 452 static inline ChildIteratorType child_begin(NodeType* N) { function in struct:llvm::GraphTraits
478 static inline ChildIteratorType child_begin(NodeType* N) { function in struct:llvm::GraphTraits

Completed in 1132 milliseconds

1 2