Home
last modified time | relevance | path

Searched refs:ViewerPath (Results 1 – 1 of 1) sorted by relevance

/external/llvm/lib/Support/
DGraphWriter.cpp139 std::string ViewerPath; in DisplayGraph() local
144 if (S.TryFindProgram("open", ViewerPath)) { in DisplayGraph()
146 args.push_back(ViewerPath.c_str()); in DisplayGraph()
152 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg)) in DisplayGraph()
156 if (S.TryFindProgram("xdg-open", ViewerPath)) { in DisplayGraph()
158 args.push_back(ViewerPath.c_str()); in DisplayGraph()
162 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg)) in DisplayGraph()
167 if (S.TryFindProgram("Graphviz", ViewerPath)) { in DisplayGraph()
169 args.push_back(ViewerPath.c_str()); in DisplayGraph()
174 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg); in DisplayGraph()
[all …]