HomeSort by relevance Sort by last modified time
    Searched defs:OutputFilename (Results 1 - 14 of 14) sorted by null

  /external/swiftshader/third_party/LLVM/utils/FileUpdate/
FileUpdate.cpp 34 OutputFilename(cl::Positional, cl::desc("<output-file>"), cl::Required);
41 if (OutputFilename == "-") {
56 MemoryBuffer::getFile(OutputFilename.c_str(), Out);
63 errs() << argv[0] << ": Not updating '" << OutputFilename
70 errs() << argv[0] << ": Updating '" << OutputFilename
73 tool_output_file OutStream(OutputFilename.c_str(), ErrorStr,
77 << OutputFilename << "': " << ErrorStr << '\n';
  /external/swiftshader/third_party/LLVM/runtime/libprofile/
CommonProfiling.c 32 static const char *OutputFilename = "llvmprof.out";
56 OutputFilename = strdup(argv[1]);
92 OutFile = open(OutputFilename, O_CREAT | O_WRONLY, 0666);
96 OutputFilename);
  /external/llvm/lib/Support/
GraphWriter.cpp 219 std::string OutputFilename =
232 args.push_back(OutputFilename.c_str());
249 args.push_back(OutputFilename.c_str());
253 args.push_back(OutputFilename.c_str());
257 args.push_back(OutputFilename.c_str());
263 (StringRef("start ") + (wait ? "/WAIT " : "") + OutputFilename).str();
272 return ExecGraphViewer(ViewerPath, args, OutputFilename, wait, ErrMsg);
Timer.cpp 55 const std::string &OutputFilename = getLibSupportInfoOutputFilename();
56 if (OutputFilename.empty())
58 if (OutputFilename == "-")
67 OutputFilename, EC, sys::fs::F_Append | sys::fs::F_Text);
72 << OutputFilename << " for appending!\n";
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
GraphWriter.cpp 228 std::string OutputFilename =
241 args.push_back(OutputFilename);
257 args.push_back(OutputFilename);
261 args.push_back(OutputFilename);
265 args.push_back(OutputFilename);
271 (StringRef("start ") + (wait ? "/WAIT " : "") + OutputFilename).str();
279 return ExecGraphViewer(ViewerPath, args, OutputFilename, wait, ErrMsg);
Timer.cpp 56 const std::string &OutputFilename = getLibSupportInfoOutputFilename();
57 if (OutputFilename.empty())
59 if (OutputFilename == "-")
68 OutputFilename, EC, sys::fs::F_Append | sys::fs::F_Text);
73 << OutputFilename << " for appending!\n";
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/
llvm-exegesis.cpp 165 // Prints the results of running analysis pass `Pass` to file `OutputFilename`
166 // if OutputFilename is non-empty.
169 const std::string &OutputFilename) {
170 if (OutputFilename.empty())
172 if (OutputFilename != "-") {
174 << OutputFilename << "'\n";
177 llvm::raw_fd_ostream ClustersOS(OutputFilename, ErrorCode,
181 llvm::report_fatal_error("cannot open out file: " + OutputFilename);
  /external/webrtc/webrtc/video/
screenshare_loopback.cc 86 std::string OutputFilename() {
230 {"screenshare", 0.0, 0.0, flags::DurationSecs(), flags::OutputFilename(),
video_loopback.cc 88 std::string OutputFilename() {
219 {"video", 0.0, 0.0, flags::DurationSecs(), flags::OutputFilename(),
  /external/swiftshader/third_party/LLVM/lib/Support/
Timer.cpp 58 const std::string &OutputFilename = getLibSupportInfoOutputFilename();
59 if (OutputFilename.empty())
61 if (OutputFilename == "-")
69 raw_ostream *Result = new raw_fd_ostream(OutputFilename.c_str(),
75 << OutputFilename << " for appending!\n";
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mc-assemble-fuzzer/
llvm-mc-assemble-fuzzer.cpp 212 const std::string OutputFilename = "-";
214 llvm::make_unique<ToolOutputFile>(OutputFilename, EC, sys::fs::F_None);
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Timer.cpp 54 const std::string &OutputFilename = getLibSupportInfoOutputFilename();
55 if (OutputFilename.empty())
57 if (OutputFilename == "-")
66 OutputFilename, EC, sys::fs::F_Append | sys::fs::F_Text);
71 << OutputFilename << " for appending!\n";
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
llvm-objcopy.cpp 119 StringRef OutputFilename;
533 deepWriteArchive(Config.OutputFilename, NewArchiveMembers,
535 reportError(Config.OutputFilename, std::move(E));
547 FileBuffer FB(Config.OutputFilename);
586 Config.OutputFilename = Positional[Positional.size() == 1 ? 0 : 1];
678 Config.OutputFilename =
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 502 bool init(Triple TheTriple, StringRef OutputFilename);
575 bool DwarfStreamer::init(Triple TheTriple, StringRef OutputFilename) {
619 llvm::make_unique<raw_fd_ostream>(OutputFilename, EC, sys::fs::F_None);
621 return error(Twine(OutputFilename) + ": " + EC.message(), Context);
    [all...]

Completed in 1384 milliseconds