Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DGraphWriter.cpp152 std::string ViewerPath; in DisplayGraph() local
157 if (S.TryFindProgram("open", ViewerPath)) { in DisplayGraph()
159 args.push_back(ViewerPath); in DisplayGraph()
164 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg)) in DisplayGraph()
168 if (S.TryFindProgram("xdg-open", ViewerPath)) { in DisplayGraph()
170 args.push_back(ViewerPath); in DisplayGraph()
173 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg)) in DisplayGraph()
178 if (S.TryFindProgram("Graphviz", ViewerPath)) { in DisplayGraph()
180 args.push_back(ViewerPath); in DisplayGraph()
184 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg); in DisplayGraph()
[all …]
/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 …]