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
25
DOTGraphTraitsViewer(StringRef
GraphName
, char &ID)
26
: FunctionPass(ID), Name(
GraphName
) {}
30
std::string
GraphName
= DOTGraphTraits<Analysis*>::getGraphName(Graph);
31
std::string Title =
GraphName
+ " for '" + F.getName().str() + "' function";
50
DOTGraphTraitsPrinter(StringRef
GraphName
, char &ID)
51
: FunctionPass(ID), Name(
GraphName
) {}
61
std::string
GraphName
= DOTGraphTraits<Analysis*>::getGraphName(Graph);
62
std::string Title =
GraphName
+ " for '" + F.getName().str() + "' function";
85
DOTGraphTraitsModuleViewer(StringRef
GraphName
, char &ID)
86
: 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 378 milliseconds