HomeSort by relevance Sort by last modified time
    Searched refs:OutputFile (Results 51 - 75 of 414) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Object/
COFFModuleDefinition.h 30 std::string OutputFile;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Object/
COFFModuleDefinition.h 30 std::string OutputFile;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Object/
COFFModuleDefinition.h 30 std::string OutputFile;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Frontend/
DependencyOutputOptions.h 38 std::string OutputFile;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Object/
COFFModuleDefinition.h 30 std::string OutputFile;
  /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...]
ToolRunner.cpp 167 const std::string &OutputFile,
180 const std::string &OutputFile,
213 InputFile, OutputFile, OutputFile,
288 const std::string &OutputFile,
344 const std::string &OutputFile,
357 const std::string &OutputFile,
378 &ProgramArgs[0], InputFile, OutputFile,
379 OutputFile, Timeout, MemoryLimit, Error);
512 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...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
GuidSection.py 121 OutputFile = OutputPath + \
127 OutputFile = os.path.normpath(OutputFile)
140 GenFdsGlobalVariable.GenerateSection(OutputFile, SectFile, Section.Section.SectionType[self.SectionType], InputAlign=SectAlign)
142 OutputFileList.append(OutputFile)
148 DummyFile = OutputFile + ".dummy"
242 GenFdsGlobalVariable.GenerateSection(OutputFile, [TempFile], Section.Section.SectionType['GUIDED'],
245 OutputFileList.append(OutputFile)
DataSection.py 112 OutputFile = os.path.join (OutputPath, ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get(self.SecType))
113 OutputFile = os.path.normpath(OutputFile)
115 GenFdsGlobalVariable.GenerateSection(OutputFile, [self.SectFileName], Section.Section.SectionType.get(self.SecType))
116 FileList = [OutputFile]
DepexSection.py 119 OutputFile = os.path.join (OutputPath, ModuleName + 'SEC' + SecNum + '.dpx')
120 OutputFile = os.path.normpath(OutputFile)
122 GenFdsGlobalVariable.GenerateSection(OutputFile, [InputFile], Section.Section.SectionType.get (SecType))
123 FileList = [OutputFile]
OptionRom.py 111 OutputFile = os.path.join(GenFdsGlobalVariable.FvDir, self.DriverName)
112 OutputFile = OutputFile + '.rom'
115 OutputFile,
123 return OutputFile
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
Rsa2048Sha256Sign.py 68 parser.add_argument("-o", "--output", dest='OutputFile', type=str, metavar='filename', help="specify the output filename", required=True)
116 OutputDir = os.path.dirname(args.OutputFile)
120 args.OutputFileName = args.OutputFile
185 args.OutputFile = open(args.OutputFileName, 'wb')
186 args.OutputFile.write(EFI_HASH_ALGORITHM_SHA256_GUID.get_bytes_le())
187 args.OutputFile.write(PublicKey)
188 args.OutputFile.write(Signature)
189 args.OutputFile.write(args.InputFileBuffer)
190 args.OutputFile.close()
  /frameworks/support/buildSrc/src/main/kotlin/androidx/build/doclava/
DoclavaTask.kt 23 import org.gradle.api.tasks.OutputFile
83 @OutputFile
91 @OutputFile
98 @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/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/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);
  /frameworks/support/buildSrc/src/main/kotlin/androidx/build/
VersionFileWriterTask.kt 23 import org.gradle.api.tasks.OutputFile
34 @get:OutputFile
35 lateinit var outputFile: File
42 val writer = PrintWriter(outputFile)
70 writeVersionFile.outputFile = artifactName
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
dlg.r 88 OutputFile,
  /device/linaro/bootloader/edk2/BeagleBoardPkg/Tools/
generate_image.c 317 FILE *OutputFile;
333 OutputFile = fopen(gOutputImageFile, "wb");
334 if (OutputFile == NULL) {
340 fwrite(gConfigurationHeader, 1, sizeof(gConfigurationHeader), OutputFile);
343 fwrite(&InputImageFileSize, 1, 4, OutputFile);
344 fwrite(&gImageExecutionAddress, 1, 4, OutputFile);
349 fwrite(&Ch, 1, 1, OutputFile);
353 fclose(OutputFile);

Completed in 1147 milliseconds

1 23 4 5 6 7 8 91011>>