OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nodes_iterator
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
CallPrinter.cpp
124
//
nodes_iterator
/begin/end - Allow iteration over all nodes in the graph
126
nodes_iterator
;
typedef in struct:llvm::GraphTraits
128
static
nodes_iterator
nodes_begin(CallGraphDOTInfo *CGInfo) {
129
return
nodes_iterator
(CGInfo->getCallGraph()->begin(), &CGGetValuePtr);
131
static
nodes_iterator
nodes_end(CallGraphDOTInfo *CGInfo) {
132
return
nodes_iterator
(CGInfo->getCallGraph()->end(), &CGGetValuePtr);
168
//
nodes_iterator
/begin/end - Allow iteration over all nodes in the graph
171
nodes_iterator
;
typedef in struct:llvm::DOTGraphTraits
173
std::string getEdgeAttributes(const CallGraphNode *Node,
nodes_iterator
I,
/src/external/apache2/llvm/dist/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());
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp
2494
class
nodes_iterator
{
class in struct:GraphTraits
2499
nodes_iterator
(const ItTy &It2) : It(It2) {}
function in class:GraphTraits::nodes_iterator
2501
nodes_iterator
operator++() {
2505
bool operator!=(const
nodes_iterator
&N2) const { return N2.It != It; }
2508
static
nodes_iterator
nodes_begin(BoUpSLP *R) {
2509
return
nodes_iterator
(R->VectorizableTree.begin());
2512
static
nodes_iterator
nodes_end(BoUpSLP *R) {
2513
return
nodes_iterator
(R->VectorizableTree.end());
Completed in 38 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026