HomeSort by relevance Sort by last modified time
    Searched refs:InputFile (Results 76 - 100 of 123) sorted by null

1 2 34 5

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/
Pkcs7Sign.py 91 parser.add_argument(metavar="input_file", dest='InputFile', type=argparse.FileType('rb'), help="specify the input filename")
126 args.InputFileName = args.InputFile.name
127 args.InputFileBuffer = args.InputFile.read()
128 args.InputFile.close()
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
Rsa2048Sha256Sign.py 74 parser.add_argument(metavar="input_file", dest='InputFile', type=argparse.FileType('rb'), help="specify the input filename")
109 args.InputFileName = args.InputFile.name
110 args.InputFileBuffer = args.InputFile.read()
111 args.InputFile.close()
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VolInfo/
VolInfo.c 113 IN FILE *InputFile,
232 FILE *InputFile;
393 InputFile = fopen (LongFilePath (mUtilityFilename), "rb");
394 if (InputFile == NULL) {
403 fseek (InputFile, Offset, SEEK_SET);
408 Status = ReadHeader (InputFile, &FvSize, &ErasePolarity);
411 fclose (InputFile);
420 fclose (InputFile);
426 fseek (InputFile, Offset, SEEK_SET);
427 BytesRead = fread (FvImage, 1, FvSize, InputFile);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
MigrationUtilities.py 520 # @retval InputFile Path of an source file to be migrated.
550 InputFile = Args[0]
551 if not os.path.exists(InputFile):
552 raise MigrationError(FILE_NOT_FOUND, name=InputFile)
559 Options.OutputFile = os.path.splitext(InputFile)[0] + "." + Destinate.lower()
563 return Options, InputFile
  /external/llvm/tools/dsymutil/
MachODebugMapParser.cpp 485 parseDebugMap(StringRef InputFile, ArrayRef<std::string> Archs,
488 MachODebugMapParser Parser(InputFile, Archs, PrependPath, Verbose);
491 return DebugMap::parseYAMLDebugMap(InputFile, PrependPath, Verbose);
495 bool dumpStab(StringRef InputFile, ArrayRef<std::string> Archs,
497 MachODebugMapParser Parser(InputFile, Archs, PrependPath, false);
DebugMap.cpp 104 DebugMap::parseYAMLDebugMap(StringRef InputFile, StringRef PrependPath,
106 auto ErrOrFile = MemoryBuffer::getFileOrSTDIN(InputFile);
DebugMap.h 108 /// Read a debug map for \a InputFile.
110 parseYAMLDebugMap(StringRef InputFile, StringRef PrependPath, bool Verbose);
  /external/clang/lib/Frontend/
FrontendAction.cpp 196 StringRef InputFile = Input.getFile();
212 InputFile, CI.getPCHContainerReader(), Diags, CI.getFileSystemOpts(),
232 if (!BeginSourceFileAction(CI, InputFile))
236 CI.setASTConsumer(CreateWrappedASTConsumer(CI, InputFile));
268 if (!BeginSourceFileAction(CI, InputFile))
321 if (!BeginSourceFileAction(CI, InputFile))
337 CreateWrappedASTConsumer(CI, InputFile);
ChainedIncludesSource.cpp 141 FrontendInputFile InputFile(includes[i], IK);
142 CInvok->getFrontendOpts().Inputs.push_back(InputFile);
199 if (!Clang->InitializeSourceManager(InputFile))
CompilerInstance.cpp 743 StringRef InputFile = Input.getFile();
746 if (InputFile != "-") {
749 File = FileMgr.getFile(InputFile, /*OpenFile=*/true);
765 File = HS->LookupFile(InputFile, SourceLocation(), /*isAngled=*/false,
777 Diags.Report(diag::err_fe_error_reading) << InputFile;
790 File = FileMgr.getVirtualFile(InputFile, (*MB)->getBufferSize(), 0);
793 Diags.Report(diag::err_cannot_open_file) << InputFile
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/
TianoCompress.c 1612 FILE *InputFile;
1618 InputFile = fopen (LongFilePath (InputFileName), "rb");
1619 if (InputFile == NULL) {
1624 fseek (InputFile, 0, SEEK_END);
1625 FileSize = ftell (InputFile);
1626 fseek (InputFile, 0, SEEK_SET);
1631 if (fread (FileBuffer, FileSize, 1, InputFile) != 1) {
1633 fclose (InputFile);
1638 fclose (InputFile);
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 100 std::string InputFile;
138 InputFile = "-";
217 Opts.InputFile = A->getValue();
291 MemoryBuffer::getFileOrSTDIN(Opts.InputFile);
295 return Diags.Report(diag::err_fe_error_reading) << Opts.InputFile;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenFfsFile/
GenFfsFile.c 106 UINT8 *InputFile,
1134 FILE *InputFile;
1146 InputFile = NULL;
1272 InputFile = fopen (InputFileName, "wb");
1273 if (InputFile == NULL) {
1279 fwrite (FileBuffer, sizeof (UINT8), Size, InputFile);
1280 fclose (InputFile);
1281 InputFile = NULL;
    [all...]
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 82 InputFile("input", cl::init("/dev/null"),
354 int RetVal = AI->ExecuteProgram(BitcodeFile, InputArgv, InputFile, OutputFile,
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ExecutionDriver.cpp 85 InputFile("input", cl::init("/dev/null"),
386 int RetVal = AI->ExecuteProgram(BitcodeFile, InputArgv, InputFile, OutputFile,
  /external/swiftshader/third_party/LLVM/tools/macho-dump/
macho-dump.cpp 27 InputFile(cl::Positional, cl::desc("<input file>"), cl::init("-"));
379 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFile, InputBuffer))
  /frameworks/compile/slang/
slang.h 232 bool setInputSource(llvm::StringRef InputFile);
  /external/clang/lib/Lex/
Lexer.cpp 109 Lexer::Lexer(FileID FID, const llvm::MemoryBuffer *InputFile, Preprocessor &PP)
114 InitLexer(InputFile->getBufferStart(), InputFile->getBufferStart(),
115 InputFile->getBufferEnd());
172 const llvm::MemoryBuffer *InputFile = SM.getBuffer(SpellingFID);
173 Lexer *L = new Lexer(SpellingFID, InputFile, PP);
    [all...]
PPLexerChange.cpp 89 const llvm::MemoryBuffer *InputFile =
105 EnterSourceFileWithLexer(new Lexer(FID, InputFile, *this), CurDir);
  /external/swiftshader/third_party/LLVM/tools/llvm-ld/
llvm-ld.cpp 287 const std::string &InputFile,
296 args.push_back(InputFile.c_str());
  /external/llvm/tools/sancov/
sancov.cc     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp     [all...]
toy-jit.cpp 1119 Module* parseInputIR(std::string InputFile) {
1121 Module *M = ParseIRFile(InputFile, Err, TheContext);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 757 Module* parseInputIR(std::string InputFile, LLVMContext &Context) {
759 Module *M = ParseIRFile(InputFile, Err, Context);
766 sprintf(ModID, "IR:%s", InputFile.c_str());
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Serialization/
ASTReader.h     [all...]

Completed in 1009 milliseconds

1 2 34 5