HomeSort by relevance Sort by last modified time
    Searched defs:OutputFile (Results 1 - 25 of 176) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /external/clang/lib/Frontend/
DependencyGraph.cpp 31 std::string OutputFile;
45 DependencyGraphCallback(const Preprocessor *_PP, StringRef OutputFile,
47 : PP(_PP), OutputFile(OutputFile.str()), SysRoot(SysRoot.str()) { }
62 void clang::AttachDependencyGraphGen(Preprocessor &PP, StringRef OutputFile,
64 PP.addPPCallbacks(llvm::make_unique<DependencyGraphCallback>(&PP, OutputFile,
101 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::F_Text);
103 PP->getDiagnostics().Report(diag::err_fe_error_opening) << OutputFile
HeaderIncludeGen.cpp 22 raw_ostream *OutputFile;
36 : SM(PP->getSourceManager()), OutputFile(OutputFile_), DepOpts(DepOpts),
43 delete OutputFile;
52 static void PrintHeaderInfo(raw_ostream *OutputFile, StringRef Filename,
75 *OutputFile << Msg;
76 OutputFile->flush();
83 raw_ostream *OutputFile = MSStyle ? &llvm::outs() : &llvm::errs();
97 OutputFile = OS;
108 PrintHeaderInfo(OutputFile, Header, ShowDepth, 2, MSStyle);
110 &PP, ShowAllHeaders, OutputFile, DepOpts, OwnsOutputFile, ShowDepth
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/flags/
flags.go 18 OutputFile = flag.String("o", "", "output file; default foo.o for /a/b/c/foo.s as first argument")
66 if *OutputFile == "" {
74 *OutputFile = fmt.Sprintf("%s.o", input)
  /prebuilts/go/linux-x86/src/cmd/asm/internal/flags/
flags.go 18 OutputFile = flag.String("o", "", "output file; default foo.o for /a/b/c/foo.s as first argument")
66 if *OutputFile == "" {
74 *OutputFile = fmt.Sprintf("%s.o", input)
  /build/make/tools/releasetools/
add_img_to_target_files 80 class OutputFile(object):
122 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "system.img")
143 block_list = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "system.map")
154 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "system_other.img")
167 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "vendor.img")
172 block_list = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "vendor.map")
185 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "dtbo.img")
306 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "userdata.img")
379 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "vbmeta.img")
425 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "partition-table.img"
    [all...]
add_img_to_target_files.py 80 class OutputFile(object):
122 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "system.img")
143 block_list = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "system.map")
154 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "system_other.img")
167 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "vendor.img")
172 block_list = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "vendor.map")
185 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "dtbo.img")
306 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "userdata.img")
379 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "vbmeta.img")
425 img = OutputFile(output_zip, OPTIONS.input_tmp, prefix, "partition-table.img"
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenCRC32Section/
GenCRC32Section.c 225 FILE *OutputFile;
234 OutputFile = NULL;
278 OutputFile = fopen (OutputFileName, "wb");
279 if (OutputFile == NULL) {
298 fclose (OutputFile);
302 ContentSize = fwrite (FileBuffer, sizeof (UINT8), BufferSize, OutputFile);
311 fclose (OutputFile);
  /external/llvm/lib/Fuzzer/
FuzzerIO.cpp 24 static FILE *OutputFile = stderr;
125 OutputFile = NewOutputFile;
138 vfprintf(OutputFile, Fmt, ap);
140 fflush(OutputFile);
  /external/llvm/lib/Support/
Signals.cpp 107 SmallString<32> InputFile, OutputFile;
109 sys::fs::createTemporaryFile("symbolizer-output", "", OutputFile);
111 FileRemover OutputRemover(OutputFile.c_str());
122 StringRef OutputFileStr(OutputFile);
141 auto OutputBuf = MemoryBuffer::getFile(OutputFile.c_str());
  /external/llvm/tools/dsymutil/
dsymutil.cpp 329 std::string OutputFile = getOutputFileName(InputFile, NeedsTempFiles);
330 if (OutputFile.empty() || !linkDwarf(OutputFile, *Map, Options))
335 OutputFile);
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Signals.cpp 107 SmallString<32> InputFile, OutputFile;
109 sys::fs::createTemporaryFile("symbolizer-output", "", OutputFile);
111 FileRemover OutputRemover(OutputFile.c_str());
122 StringRef OutputFileStr(OutputFile);
141 auto OutputBuf = MemoryBuffer::getFile(OutputFile.c_str());
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
CommonLib.c 283 FILE *OutputFile;
298 OutputFile = fopen (LongFilePath (OutputFileName), "wb");
299 if (OutputFile == NULL) {
307 BytesWrote = fwrite (OutputFileImage, sizeof (UINT8), BytesToWrite, OutputFile);
310 fclose (OutputFile);
316 fclose (OutputFile);
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 31 const std::string OutputFile;
63 : OutputFile(output),
342 llvm::raw_fd_ostream o(OutputFile, EC, llvm::sys::fs::F_Text);
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 303 std::string OutputFile,
337 if (OutputFile.empty()) OutputFile = OutputPrefix + "-execution-output-%%%%%%%";
341 std::error_code EC = sys::fs::createUniqueFile(OutputFile, UniqueFile);
347 OutputFile = UniqueFile.str();
354 int RetVal = AI->ExecuteProgram(BitcodeFile, InputArgv, InputFile, OutputFile,
358 return OutputFile;
374 std::ofstream outFile(OutputFile.c_str(), std::ios_base::app);
380 return OutputFile;
387 const std::string &OutputFile,
    [all...]
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ExecutionDriver.cpp 338 std::string OutputFile,
370 if (OutputFile.empty()) OutputFile = OutputPrefix + "-execution-output";
373 sys::Path uniqueFile(OutputFile);
379 OutputFile = uniqueFile.str();
386 int RetVal = AI->ExecuteProgram(BitcodeFile, InputArgv, InputFile, OutputFile,
390 return OutputFile;
406 std::ofstream outFile(OutputFile.c_str(), std::ios_base::app);
412 return OutputFile;
419 std::string OutputFile,
    [all...]
  /frameworks/compile/slang/
llvm-rs-cc.cpp 76 std::string OutputFile(OutputDir);
79 if (!OutputFile.empty() &&
80 (OutputFile[OutputFile.size() - 1]) != OS_PATH_SEPARATOR)
81 OutputFile.append(1, OS_PATH_SEPARATOR);
84 OutputFile.append(PathSuffix);
85 OutputFile.append(1, OS_PATH_SEPARATOR);
91 OutputFile.append(slang::RSSlangReflectUtils::GetFileNameStem(InputFile));
93 OutputFile.append(
99 OutputFile.append(".d")
    [all...]

Completed in 814 milliseconds

1 2 3 4 5 6 7 8