HomeSort by relevance Sort by last modified time
    Searched refs:nodes_iterator (Results 1 - 15 of 15) 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 97 static nodes_iterator nodes_begin(PostDominatorTree *N) {
104 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),
891 typedef df_iterator<DomTreeNode*> nodes_iterator; typedef in struct:llvm::GraphTraits
893 static nodes_iterator nodes_begin(DomTreeNode *N) {
897 static nodes_iterator nodes_end(DomTreeNode *N) {
908 static nodes_iterator nodes_begin(DominatorTree *N) {
912 static nodes_iterator nodes_end(DominatorTree *N) {
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 184 typedef df_iterator< ::clang::DomTreeNode* > nodes_iterator; typedef in struct:llvm::GraphTraits
186 static nodes_iterator nodes_begin(::clang::DomTreeNode *N) {
190 static nodes_iterator nodes_end(::clang::DomTreeNode *N) {
201 static nodes_iterator nodes_begin(::clang::DominatorTree *N) {
205 static nodes_iterator nodes_end(::clang::DominatorTree *N) {
  /external/clang/include/clang/Analysis/
CallGraph.h 86 typedef llvm::SetVector<CallGraphNode *>::iterator nodes_iterator; typedef in class:clang::CallGraph
207 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
208 typedef mapped_iterator<clang::CallGraph::iterator, DerefFun> nodes_iterator; typedef in struct:llvm::GraphTraits
210 static nodes_iterator nodes_begin(clang::CallGraph *CG) {
213 static nodes_iterator nodes_end (clang::CallGraph *CG) {
232 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
234 DerefFun> nodes_iterator; typedef in struct:llvm::GraphTraits
236 static nodes_iterator nodes_begin(const clang::CallGraph *CG) {
239 static nodes_iterator nodes_end(const clang::CallGraph *CG) {
CFG.h 926 typedef ::clang::CFG::graph_iterator nodes_iterator; typedef in struct:clang::llvm::GraphTraits
937 typedef ::clang::CFG::const_graph_iterator nodes_iterator; typedef in struct:clang::llvm::GraphTraits
956 typedef ::clang::CFG::graph_iterator nodes_iterator; typedef in struct:clang::llvm::GraphTraits
966 typedef ::clang::CFG::const_graph_iterator nodes_iterator; typedef in struct:clang::llvm::GraphTraits
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 447 typedef llvm::df_iterator<NodeType*> nodes_iterator; typedef in struct:llvm::GraphTraits
461 static inline nodes_iterator nodes_begin(NodeType* N) {
465 static inline nodes_iterator nodes_end(NodeType* N) {
473 typedef llvm::df_iterator<NodeType*> nodes_iterator; typedef in struct:llvm::GraphTraits
487 static inline nodes_iterator nodes_begin(NodeType* N) {
491 static inline nodes_iterator nodes_end(NodeType* N) {
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 478 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
479 typedef MachineFunction::iterator nodes_iterator;
480 static nodes_iterator nodes_begin(MachineFunction *F) { return F->begin(); }
481 static nodes_iterator nodes_end (MachineFunction *F) { return F->end(); }
490 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
491 typedef MachineFunction::const_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
492 static nodes_iterator nodes_begin(const MachineFunction *F) {
495 static nodes_iterator nodes_end (const MachineFunction *F) {
ScheduleDAG.h 662 typedef std::vector<SUnit>::iterator nodes_iterator; typedef in struct:llvm::GraphTraits
663 static nodes_iterator nodes_begin(ScheduleDAG *G) {
666 static nodes_iterator nodes_end(ScheduleDAG *G) {
SelectionDAG.h 1102 typedef SelectionDAG::allnodes_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
    [all...]
  /external/llvm/include/llvm/Support/
CFG.h 327 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
328 typedef Function::iterator nodes_iterator; typedef in struct:llvm::GraphTraits
329 static nodes_iterator nodes_begin(Function *F) { return F->begin(); }
330 static nodes_iterator nodes_end (Function *F) { return F->end(); }
337 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
338 typedef Function::const_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
339 static nodes_iterator nodes_begin(const Function *F) { return F->begin(); }
340 static nodes_iterator nodes_end (const Function *F) { return F->end(); }
GraphWriter.h 64 typedef typename GTraits::nodes_iterator node_iterator;
  /external/clang/lib/Serialization/
ModuleManager.cpp 407 typedef ModuleManager::ModuleConstIterator nodes_iterator; typedef in struct:llvm::GraphTraits
417 static nodes_iterator nodes_begin(const ModuleManager &Manager) {
421 static nodes_iterator nodes_end(const ModuleManager &Manager) {

Completed in 317 milliseconds