OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nodes_iterator
(Results
1 - 13
of
13
) 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
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/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
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/
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
921
typedef ::clang::CFG::graph_iterator
nodes_iterator
;
typedef in struct:clang::llvm::GraphTraits
932
typedef ::clang::CFG::const_graph_iterator
nodes_iterator
;
typedef in struct:clang::llvm::GraphTraits
951
typedef ::clang::CFG::graph_iterator
nodes_iterator
;
typedef in struct:clang::llvm::GraphTraits
961
typedef ::clang::CFG::const_graph_iterator
nodes_iterator
;
typedef in struct:clang::llvm::GraphTraits
[
all
...]
/external/clang/lib/Serialization/
ModuleManager.cpp
363
typedef ModuleManager::ModuleConstIterator
nodes_iterator
;
typedef in struct:llvm::GraphTraits
373
static
nodes_iterator
nodes_begin(const ModuleManager &Manager) {
377
static
nodes_iterator
nodes_end(const ModuleManager &Manager) {
/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) {
SelectionDAG.h
1097
typedef SelectionDAG::all
nodes_iterator
nodes_iterator
;
typedef in struct:llvm::GraphTraits
[
all
...]
ScheduleDAG.h
680
typedef std::vector<SUnit>::iterator
nodes_iterator
;
typedef in struct:llvm::GraphTraits
681
static
nodes_iterator
nodes_begin(ScheduleDAG *G) {
684
static
nodes_iterator
nodes_end(ScheduleDAG *G) {
/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(); }
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h
443
typedef llvm::df_iterator<NodeType*>
nodes_iterator
;
typedef in struct:llvm::GraphTraits
457
static inline
nodes_iterator
nodes_begin(NodeType* N) {
461
static inline
nodes_iterator
nodes_end(NodeType* N) {
469
typedef llvm::df_iterator<NodeType*>
nodes_iterator
;
typedef in struct:llvm::GraphTraits
483
static inline
nodes_iterator
nodes_begin(NodeType* N) {
487
static inline
nodes_iterator
nodes_end(NodeType* N) {
Completed in 588 milliseconds