HomeSort by: relevance | last modified time | path
    Searched defs:OutputFile (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/libcxx/utils/
generate_abi_list.py 17 def OutputFile(file):
28 parser.add_argument('-o', '--output', dest='output', type=OutputFile, default=sys.stdout,
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
DependencyGraph.cpp 30 std::string OutputFile;
44 DependencyGraphCallback(const Preprocessor *_PP, StringRef OutputFile,
46 : PP(_PP), OutputFile(OutputFile.str()), SysRoot(SysRoot.str()) { }
62 void clang::AttachDependencyGraphGen(Preprocessor &PP, StringRef OutputFile,
64 PP.addPPCallbacks(std::make_unique<DependencyGraphCallback>(&PP, OutputFile,
103 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::OF_TextWithCRLF);
105 PP->getDiagnostics().Report(diag::err_fe_error_opening) << OutputFile
HeaderIncludeGen.cpp 21 raw_ostream *OutputFile;
35 : SM(PP->getSourceManager()), OutputFile(OutputFile_), DepOpts(DepOpts),
42 delete OutputFile;
54 static void PrintHeaderInfo(raw_ostream *OutputFile, StringRef Filename,
77 *OutputFile << Msg;
78 OutputFile->flush();
85 raw_ostream *OutputFile = &llvm::errs();
94 OutputFile = &llvm::errs();
97 OutputFile = &llvm::outs();
114 OutputFile = OS
    [all...]
PrecompiledPreamble.cpp 283 std::string OutputFile;
284 OS = GeneratePCHAction::CreateOutputFile(CI, InFile, OutputFile);
348 FrontendOpts.OutputFile =
SerializedDiagnosticPrinter.cpp 249 : DiagOpts(Diags), Stream(Buffer), OutputFile(File.str()),
262 std::string OutputFile;
302 create(StringRef OutputFile, DiagnosticOptions *Diags, bool MergeChildRecords) {
303 return std::make_unique<SDiagsWriter>(OutputFile, Diags, MergeChildRecords);
768 if (!llvm::sys::fs::remove(State->OutputFile))
795 if (llvm::sys::fs::exists(State->OutputFile))
796 if (SDiagsMerger(*this).mergeRecordsFromFile(State->OutputFile.c_str()))
801 auto OS = std::make_unique<llvm::raw_fd_ostream>(State->OutputFile.c_str(),
805 << State->OutputFile << EC.message();
817 << State->OutputFile << OS->error().message()
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
COFFModuleDefinition.h 29 std::string OutputFile;
  /src/sys/external/bsd/acpica/dist/tools/acpixtract/
acpixtract.c 70 FILE *OutputFile = NULL;
192 OutputFile = fopen (Gbl_OutputFilename, "w+b");
193 if (!OutputFile)
220 BytesConverted = AxConvertAndWrite (OutputFile, ThisSignature);
262 if (OutputFile)
264 fclose (OutputFile);
292 FILE *OutputFile;
320 OutputFile = fopen (Gbl_OutputFilename, "w+b");
321 if (!OutputFile)
391 BytesConverted = AxConvertAndWrite (OutputFile, ThisSignature)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
PGOProfiling.c 21 static FILE *OutputFile = NULL;
39 fprintf(OutputFile, "%s %u\n", MangledName, NumCounters);
41 fprintf(OutputFile, "%" PRIu64 "\n", Counters[i]);
42 fprintf(OutputFile, "\n");
62 OutputFile = fopen(OutputName, "w");
63 if (!OutputFile) return;
72 fclose(OutputFile);
InstrProfilingFile.c 55 FILE *OutputFile;
60 OutputFile = fopen(OutputName, "ab");
61 if (!OutputFile)
64 RetVal = writeFile(OutputFile);
66 fclose(OutputFile);
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerIO.cpp 24 static FILE *OutputFile = stderr;
108 OutputFile = NewOutputFile;
124 vfprintf(OutputFile, Fmt, ap);
126 fflush(OutputFile);
FuzzerCommand.h 42 OutputFile(Other.OutputFile) {}
47 OutputFile = Other.OutputFile;
125 bool hasOutputFile() const { return !OutputFile.empty(); }
128 const std::string &getOutputFile() const { return OutputFile; }
131 void setOutputFile(const std::string &FileName) { OutputFile = FileName; }
174 std::string OutputFile;
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
DependencyOutputOptions.h 54 std::string OutputFile;
Utils.h 137 std::string OutputFile;
181 void AttachDependencyGraphGen(Preprocessor &PP, StringRef OutputFile,
CompilerInstance.h 166 struct OutputFile {
170 OutputFile(std::string filename, std::string tempFilename)
176 std::list<OutputFile> OutputFiles;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mt/
llvm-mt.cpp 122 StringRef OutputFile;
124 OutputFile = InputArgs.getLastArgValue(OPT_out);
126 OutputFile = InputFiles[0];
146 FileOutputBuffer::create(OutputFile, OutputBuffer->getBufferSize());
148 reportError(OutputFile, errorToErrorCode(FileOrErr.takeError()));
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Signals.cpp 154 SmallString<32> InputFile, OutputFile;
156 sys::fs::createTemporaryFile("symbolizer-output", "", OutputFile);
158 FileRemover OutputRemover(OutputFile.c_str());
169 StringRef(OutputFile), StringRef("")};
185 auto OutputBuf = MemoryBuffer::getFile(OutputFile.c_str());
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
ExecutionDriver.cpp 283 std::string OutputFile,
316 if (OutputFile.empty())
317 OutputFile = OutputPrefix + "-execution-output-%%%%%%%";
321 std::error_code EC = sys::fs::createUniqueFile(OutputFile, UniqueFile);
327 OutputFile = std::string(UniqueFile.str());
335 OutputFile, AdditionalLinkerArgs,
358 std::ofstream outFile(OutputFile.c_str(), std::ios_base::app);
364 return OutputFile;
371 const std::string &OutputFile) const {
372 return executeProgram(Program, OutputFile, "", "", SafeInterpreter)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cvtres/
llvm-cvtres.cpp 152 SmallString<128> OutputFile;
155 OutputFile = Arg->getValue();
157 OutputFile = sys::path::filename(StringRef(InputFiles[0]));
158 sys::path::replace_extension(OutputFile, ".obj");
214 FileOutputBuffer::create(OutputFile, OutputBuffer->getBufferSize());
216 reportError(OutputFile, errorToErrorCode(FileOrErr.takeError()));
224 error(OutputFile,
225 MemoryBuffer::getFileOrSTDIN(OutputFile, /*IsText=*/false,
  /src/sys/external/bsd/acpica/dist/compiler/
aslerror.c 96 FILE *OutputFile,
230 * PARAMETERS: OutputFile - Output file
243 FILE *OutputFile,
255 fprintf (OutputFile, "%s %4.4d -",
266 fprintf (OutputFile, " %s %s\n\n", MainMessage, ExtraMessage);
289 fprintf (OutputFile, " %s",
299 fprintf (OutputFile, "%*s%s",
305 fprintf (OutputFile, "%*s %s",
313 fprintf (OutputFile, " %s", MainMessage);
320 fprintf (OutputFile, " (%s)", ExtraMessage)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
MinGW.cpp 165 const char *OutputFile = Output.getFilename();
170 if (!llvm::sys::path::has_extension(OutputFile)) {
171 CmdArgs.push_back(Args.MakeArgString(Twine(OutputFile) + ".exe"));
172 OutputFile = CmdArgs.back();
174 CmdArgs.push_back(OutputFile);
AMDGPU.cpp 731 llvm::SmallString<64> OutputFile;
733 OutputFile);
734 llvm::FileRemover OutputRemover(OutputFile.c_str());
737 StringRef(OutputFile),
758 llvm::MemoryBuffer::getFile(OutputFile.c_str());
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 44 const std::string OutputFile;
55 const std::string &OutputFile, const Preprocessor &PP,
528 : DiagOpts(std::move(DiagOpts)), OutputFile(output), PP(PP), CTU(CTU),
537 const std::string &OutputFile, const Preprocessor &PP,
542 if (OutputFile.empty())
545 C.push_back(new PlistDiagnostics(DiagOpts, OutputFile, PP, CTU,
548 createTextMinimalPathDiagnosticConsumer(std::move(DiagOpts), C, OutputFile,
554 const std::string &OutputFile, const Preprocessor &PP,
559 if (OutputFile.empty())
562 C.push_back(new PlistDiagnostics(DiagOpts, OutputFile, PP, CTU
    [all...]
SarifDiagnostics.cpp 31 std::string OutputFile;
36 : OutputFile(Output), LO(LO) {}
390 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::OF_TextWithCRLF);
  /src/external/apache2/llvm/dist/clang/tools/clang-scan-deps/
ClangScanDeps.cpp 77 llvm::SmallString<64> OutputFile, ErrorFile;
79 "" /*no-suffix*/, OutputFile);
82 llvm::FileRemover OutputRemover(OutputFile.c_str());
86 StringRef(OutputFile),
96 auto OutputBuf = llvm::MemoryBuffer::getFile(OutputFile.c_str());
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
dsymutil.cpp 96 std::string OutputFile;
172 if (!Options.Flat && Options.OutputFile == "-")
178 !Options.OutputFile.empty())
276 if (opt::Arg *OutputFile = Args.getLastArg(OPT_output))
277 Options.OutputFile = OutputFile->getValue();
390 static bool verify(StringRef OutputFile, StringRef Arch, bool Verbose) {
391 if (OutputFile == "-") {
397 Expected<OwningBinary<Binary>> BinOrErr = createBinary(OutputFile);
399 WithColor::error() << OutputFile << ": " << toString(BinOrErr.takeError())
    [all...]

Completed in 68 milliseconds

1 2