HomeSort by relevance Sort by last modified time
    Searched defs:OutputFilename (Results 1 - 9 of 9) 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);
  /frameworks/compile/libbcc/tools/bcc_compat/
Main.cpp 268 std::string OutputFilename = DetermineOutputFilename(OptOutputFilename);
269 if (OutputFilename.empty()) {
274 if (!rscd.buildForCompatLib(*s, OutputFilename.c_str(), nullptr, OptRuntimePath.c_str(), false)) {
  /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/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/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 290 milliseconds