Searched refs:ViewerPath (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | GraphWriter.cpp | 196 std::string ViewerPath; in DisplayGraph() local 201 if (S.TryFindProgram("open", ViewerPath)) { in DisplayGraph() 203 args.push_back(ViewerPath); in DisplayGraph() 208 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg)) in DisplayGraph() 212 if (S.TryFindProgram("xdg-open", ViewerPath)) { in DisplayGraph() 214 args.push_back(ViewerPath); in DisplayGraph() 217 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg)) in DisplayGraph() 222 if (S.TryFindProgram("Graphviz", ViewerPath)) { in DisplayGraph() 224 args.push_back(ViewerPath); in DisplayGraph() 228 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg); in DisplayGraph() [all …]
|