OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GraphName
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h
36
DOTGraphTraitsViewer(StringRef
GraphName
, char &ID)
37
: FunctionPass(ID), Name(
GraphName
) {}
41
std::string
GraphName
= DOTGraphTraits<GraphT>::getGraphName(Graph);
42
std::string Title =
GraphName
+ " for '" + F.getName().str() + "' function";
63
DOTGraphTraitsPrinter(StringRef
GraphName
, char &ID)
64
: FunctionPass(ID), Name(
GraphName
) {}
74
std::string
GraphName
= DOTGraphTraits<GraphT>::getGraphName(Graph);
75
std::string Title =
GraphName
+ " for '" + F.getName().str() + "' function";
100
DOTGraphTraitsModuleViewer(StringRef
GraphName
, char &ID)
101
: ModulePass(ID), Name(
GraphName
) {}
[
all
...]
/external/llvm/include/llvm/Support/
GraphWriter.h
115
std::string
GraphName
= DTraits.getGraphName(G);
119
else if (!
GraphName
.empty())
120
O << "digraph \"" << DOT::EscapeString(
GraphName
) << "\" {\n";
129
else if (!
GraphName
.empty())
130
O << "\tlabel=\"" << DOT::EscapeString(
GraphName
) << "\";\n";
Completed in 771 milliseconds