HomeSort by relevance Sort by last modified time
    Searched refs:nodes_iterator (Results 1 - 16 of 16) sorted by null

  /external/clang/include/clang/AST/
StmtGraphTraits.h 30 typedef llvm::df_iterator<clang::Stmt*> nodes_iterator; typedef in struct:llvm::GraphTraits
44 static nodes_iterator nodes_begin(clang::Stmt* S) {
48 static nodes_iterator nodes_end(clang::Stmt* S) {
57 typedef llvm::df_iterator<const clang::Stmt*> nodes_iterator; typedef in struct:llvm::GraphTraits
71 static nodes_iterator nodes_begin(const clang::Stmt* S) {
75 static nodes_iterator nodes_end(const clang::Stmt* S) {
  /external/llvm/include/llvm/Analysis/
RegionIterator.h 292 typedef df_iterator<NodeType*> nodes_iterator; \
296 static nodes_iterator nodes_begin(RegionT* R) { \
297 return nodes_iterator::begin(getEntryNode(R)); \
299 static nodes_iterator nodes_end(RegionT* R) { \
300 return nodes_iterator::end(getEntryNode(R)); \
306 GraphTraits<FlatIt<NodeType*> > > nodes_iterator; \
310 static nodes_iterator nodes_begin(RegionT* R) { \
311 return nodes_iterator::begin(getEntryNode(R)); \
313 static nodes_iterator nodes_end(RegionT* R) { \
314 return nodes_iterator::end(getEntryNode(R));
327 GraphTraits<FlatIt<NodeType*> > > nodes_iterator; typedef in struct:llvm::GraphTraits
    [all...]
PostDominators.h 92 static nodes_iterator nodes_begin(PostDominatorTree *N) {
99 static nodes_iterator nodes_end(PostDominatorTree *N) {
CallGraph.h 348 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
349 typedef mapped_iterator<CallGraph::iterator, DerefFun> nodes_iterator; typedef in struct:GraphTraits
350 static nodes_iterator nodes_begin(CallGraph *CG) {
353 static nodes_iterator nodes_end (CallGraph *CG) {
367 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
368 typedef CallGraph::const_iterator nodes_iterator; typedef in struct:GraphTraits
369 static nodes_iterator nodes_begin(const CallGraph *CG) { return CG->begin(); }
370 static nodes_iterator nodes_end (const CallGraph *CG) { return CG->end(); }
Dominators.h 664 for (typename TraitsTy::nodes_iterator I = TraitsTy::nodes_begin(&F),
892 typedef df_iterator<DomTreeNode*> nodes_iterator; typedef in struct:llvm::GraphTraits
894 static nodes_iterator nodes_begin(DomTreeNode *N) {
898 static nodes_iterator nodes_end(DomTreeNode *N) {
909 static nodes_iterator nodes_begin(DominatorTree *N) {
913 static nodes_iterator nodes_end(DominatorTree *N) {
  /external/clang/include/clang/Analysis/
CallGraph.h 92 typedef llvm::SetVector<CallGraphNode *>::iterator nodes_iterator; typedef in class:clang::CallGraph
94 nodes_iterator parentless_begin() { return ParentlessNodes.begin(); }
95 nodes_iterator parentless_end() { return ParentlessNodes.end(); }
217 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
218 typedef mapped_iterator<clang::CallGraph::iterator, DerefFun> nodes_iterator; typedef in struct:llvm::GraphTraits
220 static nodes_iterator nodes_begin(clang::CallGraph *CG) {
223 static nodes_iterator nodes_end (clang::CallGraph *CG) {
242 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
244 DerefFun> nodes_iterator; typedef in struct:llvm::GraphTraits
246 static nodes_iterator nodes_begin(const clang::CallGraph *CG)
    [all...]
CFG.h 889 typedef ::clang::CFG::graph_iterator nodes_iterator; typedef in struct:clang::llvm::GraphTraits
892 static nodes_iterator nodes_begin(::clang::CFG* F) { return F->nodes_begin();}
893 static nodes_iterator nodes_end(::clang::CFG* F) { return F->nodes_end(); }
900 typedef ::clang::CFG::const_graph_iterator nodes_iterator; typedef in struct:clang::llvm::GraphTraits
905 static nodes_iterator nodes_begin( const ::clang::CFG* F) {
908 static nodes_iterator nodes_end( const ::clang::CFG* F)
919 typedef ::clang::CFG::graph_iterator nodes_iterator; typedef in struct:clang::llvm::GraphTraits
929 typedef ::clang::CFG::const_graph_iterator nodes_iterator; typedef in struct:clang::llvm::GraphTraits
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 185 typedef df_iterator< ::clang::DomTreeNode* > nodes_iterator; typedef in struct:llvm::GraphTraits
187 static nodes_iterator nodes_begin(::clang::DomTreeNode *N) {
191 static nodes_iterator nodes_end(::clang::DomTreeNode *N) {
202 static nodes_iterator nodes_begin(::clang::DominatorTree *N) {
206 static nodes_iterator nodes_end(::clang::DominatorTree *N) {
  /external/llvm/include/llvm/Support/
CFG.h 319 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
320 typedef Function::iterator nodes_iterator; typedef in struct:llvm::GraphTraits
321 static nodes_iterator nodes_begin(Function *F) { return F->begin(); }
322 static nodes_iterator nodes_end (Function *F) { return F->end(); }
329 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
330 typedef Function::const_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
331 static nodes_iterator nodes_begin(const Function *F) { return F->begin(); }
332 static nodes_iterator nodes_end (const Function *F) { return F->end(); }
GraphWriter.h 59 typedef typename GTraits::nodes_iterator node_iterator;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 437 typedef llvm::df_iterator<NodeType*> nodes_iterator; typedef in struct:llvm::GraphTraits
451 static inline nodes_iterator nodes_begin(NodeType* N) {
455 static inline nodes_iterator nodes_end(NodeType* N) {
463 typedef llvm::df_iterator<NodeType*> nodes_iterator; typedef in struct:llvm::GraphTraits
477 static inline nodes_iterator nodes_begin(NodeType* N) {
481 static inline nodes_iterator nodes_end(NodeType* N) {
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 445 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
446 typedef MachineFunction::iterator nodes_iterator;
447 static nodes_iterator nodes_begin(MachineFunction *F) { return F->begin(); }
448 static nodes_iterator nodes_end (MachineFunction *F) { return F->end(); }
457 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
458 typedef MachineFunction::const_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
459 static nodes_iterator nodes_begin(const MachineFunction *F) {
462 static nodes_iterator nodes_end (const MachineFunction *F) {
ScheduleDAG.h 651 typedef std::vector<SUnit>::iterator nodes_iterator; typedef in struct:llvm::GraphTraits
652 static nodes_iterator nodes_begin(ScheduleDAG *G) {
655 static nodes_iterator nodes_end(ScheduleDAG *G) {
SelectionDAG.h 1082 typedef SelectionDAG::allnodes_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
    [all...]
  /external/clang/lib/Serialization/
ModuleManager.cpp 217 typedef ModuleManager::ModuleConstIterator nodes_iterator; typedef in struct:llvm::GraphTraits
227 static nodes_iterator nodes_begin(const ModuleManager &Manager) {
231 static nodes_iterator nodes_end(const ModuleManager &Manager) {
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 382 for (CallGraph::nodes_iterator TI = CG.parentless_begin(),

Completed in 175 milliseconds