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

  /external/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/llvm/runtime/libprofile/
CommonProfiling.c 33 static const char *OutputFilename = "llvmprof.out";
36 * variable is set. If it is then save it and set OutputFilename.
47 OutputFilename = SavedEnvVar;
54 * command line argument are set then change OutputFilename to the provided
77 OutputFilename = strdup(argv[1]);
124 OutFile = open(OutputFilename, O_CREAT | O_WRONLY, 0666);
128 OutputFilename);
  /frameworks/compile/libbcc/tools/bcc_compat/
Main.cpp 275 std::string OutputFilename = DetermineOutputFilename(OptOutputFilename);
276 if (OutputFilename.empty()) {
282 if (!rscd.build(*s, OutputFilename.c_str(), OptRuntimePath.c_str())) {
  /frameworks/compile/mclinker/tools/mcld/
main.cpp 352 std::string OutputFilename = DetermineOutputFilename(OptOutputFilename);
353 if (OutputFilename.empty()) {
358 if (!ConfigLinker(linker, OutputFilename)) {
362 if (!PrepareInputOutput(linker, OutputFilename)) {
  /external/llvm/lib/Support/
Timer.cpp 58 const std::string &OutputFilename = getLibSupportInfoOutputFilename();
59 if (OutputFilename.empty())
61 if (OutputFilename == "-")
70 new raw_fd_ostream(OutputFilename.c_str(), Error, sys::fs::F_Append);
75 << OutputFilename << " for appending!\n";

Completed in 439 milliseconds