OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs: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/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
456
//
nodes_iterator
/begin/end - Allow iteration over all nodes in the graph
457
typedef mapped_iterator<CallGraph::iterator, DerefFun>
nodes_iterator
;
typedef in struct:GraphTraits
458
static
nodes_iterator
nodes_begin(CallGraph *CG) {
461
static
nodes_iterator
nodes_end(CallGraph *CG) {
479
//
nodes_iterator
/begin/end - Allow iteration over all nodes in the graph
480
typedef mapped_iterator<CallGraph::const_iterator, DerefFun>
nodes_iterator
;
typedef in struct:GraphTraits
481
static
nodes_iterator
nodes_begin(const CallGraph *CG) {
484
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
539
//
nodes_iterator
/begin/end - Allow iteration over all nodes in the graph
540
typedef MachineFunction::iterator
nodes_iterator
;
541
static
nodes_iterator
nodes_begin(MachineFunction *F) { return F->begin(); }
542
static
nodes_iterator
nodes_end (MachineFunction *F) { return F->end(); }
551
//
nodes_iterator
/begin/end - Allow iteration over all nodes in the graph
552
typedef MachineFunction::const_iterator
nodes_iterator
;
typedef in struct:llvm::GraphTraits
553
static
nodes_iterator
nodes_begin(const MachineFunction *F) {
556
static
nodes_iterator
nodes_end (const MachineFunction *F) {
ScheduleDAG.h
676
typedef std::vector<SUnit>::iterator
nodes_iterator
;
typedef in struct:llvm::SUnit::GraphTraits
677
static
nodes_iterator
nodes_begin(ScheduleDAG *G) {
680
static
nodes_iterator
nodes_end(ScheduleDAG *G) {
SelectionDAG.h
1317
typedef SelectionDAG::all
nodes_iterator
nodes_iterator
;
typedef in struct:llvm::GraphTraits
[
all
...]
/external/llvm/include/llvm/IR/
Dominators.h
147
typedef df_iterator<Node *, SmallPtrSet<NodeType *, 8>>
nodes_iterator
;
typedef in struct:llvm::DomTreeGraphTraitsBase
155
static
nodes_iterator
nodes_begin(NodeType *N) {
159
static
nodes_iterator
nodes_end(NodeType *N) {
179
static
nodes_iterator
nodes_begin(DominatorTree *N) {
183
static
nodes_iterator
nodes_end(DominatorTree *N) {
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(); }
/external/llvm/lib/Analysis/
BlockFrequencyInfo.cpp
55
typedef Function::const_iterator
nodes_iterator
;
typedef in struct:llvm::GraphTraits
66
static
nodes_iterator
nodes_begin(const BlockFrequencyInfo *G) {
69
static
nodes_iterator
nodes_end(const BlockFrequencyInfo *G) {
/external/llvm/lib/CodeGen/
MachineBlockFrequencyInfo.cpp
56
typedef MachineFunction::const_iterator
nodes_iterator
;
typedef in struct:llvm::GraphTraits
71
static
nodes_iterator
nodes_begin(const MachineBlockFrequencyInfo *G) {
75
static
nodes_iterator
nodes_end(const MachineBlockFrequencyInfo *G) {
/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/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h
446
typedef llvm::df_iterator<NodeType*>
nodes_iterator
;
typedef in struct:llvm::GraphTraits
460
static inline
nodes_iterator
nodes_begin(NodeType* N) {
464
static inline
nodes_iterator
nodes_end(NodeType* N) {
472
typedef llvm::df_iterator<NodeType*>
nodes_iterator
;
typedef in struct:llvm::GraphTraits
486
static inline
nodes_iterator
nodes_begin(NodeType* N) {
490
static inline
nodes_iterator
nodes_end(NodeType* N) {
Completed in 206 milliseconds