OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GraphName
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h
36
DOTGraphTraitsViewer(StringRef
GraphName
, char &ID)
37
: FunctionPass(ID), Name(
GraphName
) {}
56
std::string
GraphName
= DOTGraphTraits<GraphT>::getGraphName(Graph);
57
std::string Title =
GraphName
+ " for '" + F.getName().str() + "' function";
78
DOTGraphTraitsPrinter(StringRef
GraphName
, char &ID)
79
: FunctionPass(ID), Name(
GraphName
) {}
104
std::string
GraphName
= DOTGraphTraits<GraphT>::getGraphName(Graph);
105
std::string Title =
GraphName
+ " for '" + F.getName().str() + "' function";
130
DOTGraphTraitsModuleViewer(StringRef
GraphName
, char &ID)
131
: ModulePass(ID), Name(
GraphName
) {}
[
all
...]
/external/llvm/include/llvm/Support/
GraphWriter.h
114
std::string
GraphName
= DTraits.getGraphName(G);
118
else if (!
GraphName
.empty())
119
O << "digraph \"" << DOT::EscapeString(
GraphName
) << "\" {\n";
128
else if (!
GraphName
.empty())
129
O << "\tlabel=\"" << DOT::EscapeString(
GraphName
) << "\";\n";
/external/llvm/lib/Analysis/
RegionPrinter.cpp
235
std::string
GraphName
= DOTGraphTraits<RegionInfo *>::getGraphName(RI);
238
Twine(
GraphName
) + " for '" + F->getName() + "' function");
Completed in 2555 milliseconds