HomeSort by relevance Sort by last modified time
    Searched defs:OutputFilename (Results 1 - 7 of 7) 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 276 std::string OutputFilename = DetermineOutputFilename(OptOutputFilename);
277 if (OutputFilename.empty()) {
283 rscd.build(*s, OutputFilename.c_str(), OptRuntimePath.c_str());
  /frameworks/compile/libbcc/tools/bcc/
Main.cpp 421 std::string OutputFilename = DetermineOutputFilename(OptOutputFilename);
422 if (OutputFilename.empty()) {
426 if (!CompileScript(compiler, *script, OutputFilename)) {
430 if (OptRunEntry && !LoadAndRun(OutputFilename)) {
  /frameworks/compile/libbcc/tools/mcld/
Main.cpp 363 std::string OutputFilename = DetermineOutputFilename(OptOutputFilename);
364 if (OutputFilename.empty()) {
369 if (!ConfigLinker(linker, OutputFilename)) {
373 if (!PrepareInputOutput(linker, OutputFilename)) {
  /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 == "-")
69 raw_ostream *Result = new raw_fd_ostream(OutputFilename.c_str(),
75 << OutputFilename << " for appending!\n";

Completed in 65 milliseconds