Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DGraphWriter.cpp153 std::string ViewerPath; in DisplayGraph() local
158 if (S.TryFindProgram("open", ViewerPath)) { in DisplayGraph()
160 args.push_back(ViewerPath); in DisplayGraph()
165 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg)) in DisplayGraph()
169 if (S.TryFindProgram("xdg-open", ViewerPath)) { in DisplayGraph()
171 args.push_back(ViewerPath); in DisplayGraph()
174 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg)) in DisplayGraph()
179 if (S.TryFindProgram("Graphviz", ViewerPath)) { in DisplayGraph()
181 args.push_back(ViewerPath); in DisplayGraph()
185 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 …]