HomeSort by relevance Sort by last modified time
    Searched defs:nodes_iterator (Results 1 - 25 of 25) 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/clang/include/clang/Analysis/Analyses/
Dominators.h 183 typedef df_iterator< ::clang::DomTreeNode* > nodes_iterator; typedef in struct:llvm::GraphTraits
185 static nodes_iterator nodes_begin(::clang::DomTreeNode *N) {
189 static nodes_iterator nodes_end(::clang::DomTreeNode *N) {
200 static nodes_iterator nodes_begin(::clang::DominatorTree *N) {
204 static nodes_iterator nodes_end(::clang::DominatorTree *N) {
  /external/llvm/include/llvm/Analysis/
RegionIterator.h 279 typedef df_iterator<NodeType*> nodes_iterator; \
283 static nodes_iterator nodes_begin(RegionT* R) { \
284 return nodes_iterator::begin(getEntryNode(R)); \
286 static nodes_iterator nodes_end(RegionT* R) { \
287 return nodes_iterator::end(getEntryNode(R)); \
293 GraphTraits<FlatIt<NodeType*> > > nodes_iterator; \
297 static nodes_iterator nodes_begin(RegionT* R) { \
298 return nodes_iterator::begin(getEntryNode(R)); \
300 static nodes_iterator nodes_end(RegionT* R) { \
301 return nodes_iterator::end(getEntryNode(R));
314 GraphTraits<FlatIt<NodeType*> > > nodes_iterator; typedef in struct:llvm::GraphTraits
330 GraphTraits<FlatIt<NodeType*> > > nodes_iterator; typedef in struct:llvm::GraphTraits
    [all...]
CallGraph.h 464 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
465 typedef mapped_iterator<CallGraph::iterator, DerefFun> nodes_iterator; typedef in struct:GraphTraits
466 static nodes_iterator nodes_begin(CallGraph *CG) {
469 static nodes_iterator nodes_end(CallGraph *CG) {
487 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
488 typedef mapped_iterator<CallGraph::const_iterator, DerefFun> nodes_iterator; typedef in struct:GraphTraits
489 static nodes_iterator nodes_begin(const CallGraph *CG) {
492 static nodes_iterator nodes_end(const CallGraph *CG) {
  /external/llvm/include/llvm/CodeGen/
MachineRegionInfo.h 146 GraphTraits<FlatIt<NodeType*> > > nodes_iterator; typedef in struct:llvm::GraphTraits
151 static nodes_iterator nodes_begin(MachineRegionInfo* RI) {
152 return nodes_iterator::begin(getEntryNode(RI));
154 static nodes_iterator nodes_end(MachineRegionInfo *RI) {
155 return nodes_iterator::end(getEntryNode(RI));
162 GraphTraits<FlatIt<NodeType*> > > nodes_iterator; typedef in struct:llvm::GraphTraits
167 static nodes_iterator nodes_begin(MachineRegionInfoPass* RI) {
170 static nodes_iterator nodes_end(MachineRegionInfoPass *RI) {
MachineFunction.h 620 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
621 typedef MachineFunction::iterator nodes_iterator;
622 static nodes_iterator nodes_begin(MachineFunction *F) { return F->begin(); }
623 static nodes_iterator nodes_end (MachineFunction *F) { return F->end(); }
632 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
633 typedef MachineFunction::const_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
634 static nodes_iterator nodes_begin(const MachineFunction *F) {
637 static nodes_iterator nodes_end (const MachineFunction *F) {
ScheduleDAG.h 694 typedef std::vector<SUnit>::iterator nodes_iterator; typedef in struct:llvm::SUnit::GraphTraits
695 static nodes_iterator nodes_begin(ScheduleDAG *G) {
698 static nodes_iterator nodes_end(ScheduleDAG *G) {
SelectionDAG.h 1419 typedef SelectionDAG::allnodes_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
    [all...]
  /external/llvm/lib/CodeGen/
MachineBlockFrequencyInfo.cpp 57 typedef MachineFunction::const_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
72 static nodes_iterator nodes_begin(const MachineBlockFrequencyInfo *G) {
76 static nodes_iterator nodes_end(const MachineBlockFrequencyInfo *G) {
  /external/swiftshader/third_party/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...]
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 847 typedef df_iterator<DomTreeNode*> nodes_iterator; typedef in struct:llvm::GraphTraits
849 static nodes_iterator nodes_begin(DomTreeNode *N) {
853 static nodes_iterator nodes_end(DomTreeNode *N) {
864 static nodes_iterator nodes_begin(DominatorTree *N) {
868 static nodes_iterator nodes_end(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 1061 typedef ::clang::CFG::graph_iterator nodes_iterator; typedef in struct:clang::llvm::GraphTraits
1072 typedef ::clang::CFG::const_graph_iterator nodes_iterator; typedef in struct:clang::llvm::GraphTraits
1091 typedef ::clang::CFG::graph_iterator nodes_iterator; typedef in struct:clang::llvm::GraphTraits
1101 typedef ::clang::CFG::const_graph_iterator nodes_iterator; typedef in struct:clang::llvm::GraphTraits
    [all...]
  /external/clang/lib/Serialization/
ModuleManager.cpp 439 typedef ModuleManager::ModuleConstIterator nodes_iterator; typedef in struct:llvm::GraphTraits
449 static nodes_iterator nodes_begin(const ModuleManager &Manager) {
453 static nodes_iterator nodes_end(const ModuleManager &Manager) {
  /external/llvm/include/llvm/IR/
CFG.h 227 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
228 typedef Function::iterator nodes_iterator; typedef in struct:llvm::GraphTraits
229 static nodes_iterator nodes_begin(Function *F) { return F->begin(); }
230 static nodes_iterator nodes_end (Function *F) { return F->end(); }
237 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
238 typedef Function::const_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
239 static nodes_iterator nodes_begin(const Function *F) { return F->begin(); }
240 static nodes_iterator nodes_end (const Function *F) { return F->end(); }
Dominators.h 160 typedef df_iterator<Node *, SmallPtrSet<NodeType *, 8>> nodes_iterator; typedef in struct:llvm::DomTreeGraphTraitsBase
168 static nodes_iterator nodes_begin(NodeType *N) {
172 static nodes_iterator nodes_end(NodeType *N) {
192 static nodes_iterator nodes_begin(DominatorTree *N) {
196 static nodes_iterator nodes_end(DominatorTree *N) {
  /external/llvm/lib/Analysis/
BlockFrequencyInfo.cpp 65 typedef Function::const_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
76 static nodes_iterator nodes_begin(const BlockFrequencyInfo *G) {
79 static nodes_iterator nodes_end(const BlockFrequencyInfo *G) {
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineFunction.h 436 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
437 typedef MachineFunction::iterator nodes_iterator;
438 static nodes_iterator nodes_begin(MachineFunction *F) { return F->begin(); }
439 static nodes_iterator nodes_end (MachineFunction *F) { return F->end(); }
447 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
448 typedef MachineFunction::const_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
449 static nodes_iterator nodes_begin(const MachineFunction *F) {
452 static nodes_iterator nodes_end (const MachineFunction *F) {
SelectionDAG.h 1058 typedef SelectionDAG::allnodes_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
    [all...]
ScheduleDAG.h 649 typedef std::vector<SUnit>::iterator nodes_iterator; typedef in struct:llvm::GraphTraits
650 static nodes_iterator nodes_begin(ScheduleDAG *G) {
653 static nodes_iterator nodes_end(ScheduleDAG *G) {
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CFG.h 313 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
314 typedef Function::iterator nodes_iterator; typedef in struct:llvm::GraphTraits
315 static nodes_iterator nodes_begin(Function *F) { return F->begin(); }
316 static nodes_iterator nodes_end (Function *F) { return F->end(); }
322 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
323 typedef Function::const_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
324 static nodes_iterator nodes_begin(const Function *F) { return F->begin(); }
325 static nodes_iterator nodes_end (const Function *F) { return F->end(); }
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
Trie.h 292 typedef typename std::vector<NodeType*>::const_iterator nodes_iterator; typedef in struct:llvm::GraphTraits
294 static inline nodes_iterator nodes_begin(const TrieType& G) {
297 static inline nodes_iterator nodes_end(const TrieType& G) {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 456 typedef llvm::df_iterator<NodeType*> nodes_iterator; typedef in struct:llvm::GraphTraits
470 static inline nodes_iterator nodes_begin(NodeType* N) {
474 static inline nodes_iterator nodes_end(NodeType* N) {
482 typedef llvm::df_iterator<NodeType*> nodes_iterator; typedef in struct:llvm::GraphTraits
496 static inline nodes_iterator nodes_begin(NodeType* N) {
500 static inline nodes_iterator nodes_end(NodeType* N) {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
ScheduleDAG.h 681 typedef pointer_iterator<std::vector<SUnit>::iterator> nodes_iterator; typedef in struct:llvm::SUnit::GraphTraits
682 static nodes_iterator nodes_begin(ScheduleDAG *G) {
683 return nodes_iterator(G->SUnits.begin());
685 static nodes_iterator nodes_end(ScheduleDAG *G) {
686 return nodes_iterator(G->SUnits.end());

Completed in 1065 milliseconds