HomeSort by relevance Sort by last modified time
    Searched refs:GraphName (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 25 DOTGraphTraitsViewer(std::string GraphName, char &ID) : FunctionPass(ID) {
26 Name = GraphName;
31 std::string Title, GraphName;
33 GraphName = DOTGraphTraits<Analysis*>::getGraphName(Graph);
34 Title = GraphName + " for '" + F.getName().str() + "' function";
51 DOTGraphTraitsPrinter(std::string GraphName, char &ID)
53 Name = GraphName;
65 std::string Title, GraphName;
66 GraphName = DOTGraphTraits<Analysis*>::getGraphName(Graph);
67 Title = GraphName + " for '" + F.getName().str() + "' function"
    [all...]
  /external/llvm/tools/opt/
GraphPrinters.cpp 26 static void WriteGraphToFile(raw_ostream &O, const std::string &GraphName,
28 std::string Filename = GraphName + ".dot";
  /external/llvm/include/llvm/Support/
GraphWriter.h 110 std::string GraphName = DTraits.getGraphName(G);
114 else if (!GraphName.empty())
115 O << "digraph \"" << DOT::EscapeString(GraphName) << "\" {\n";
124 else if (!GraphName.empty())
125 O << "\tlabel=\"" << DOT::EscapeString(GraphName) << "\";\n";

Completed in 99 milliseconds