HomeSort by: relevance | last modified time | path
    Searched defs:InputFile (Results 1 - 15 of 15) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/tools/acpixtract/
acpixtract.c 69 FILE *InputFile;
85 InputFile = fopen (InputPathname, "r");
86 if (!InputFile)
92 if (!AxIsFileAscii (InputFile))
94 fclose (InputFile);
113 fclose (InputFile);
119 fclose (InputFile);
126 while (fgets (Gbl_LineBuffer, AX_LINE_BUFFER_SIZE, InputFile))
197 fclose (InputFile);
267 fclose (InputFile);
    [all...]
axutils.c 401 FILE *InputFile;
405 InputFile = fopen (InputPathname, "r");
406 if (!InputFile)
414 while (fgets (Gbl_InstanceBuffer, AX_LINE_BUFFER_SIZE, InputFile))
431 fclose (InputFile);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Signals.cpp 154 SmallString<32> InputFile, OutputFile;
155 sys::fs::createTemporaryFile("symbolizer-input", "", InputFD, InputFile);
157 FileRemover InputRemover(InputFile.c_str());
168 Optional<StringRef> Redirects[] = {StringRef(InputFile),
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
InputFile.h 1 //===- InputFile.h -------------------------------------------- *- C++ --*-===//
33 class InputFile;
40 class InputFile {
41 InputFile();
58 ~InputFile();
59 InputFile(InputFile &&Other) = default;
61 static Expected<InputFile> open(StringRef Path,
92 explicit SymbolGroup(InputFile *File, uint32_t GroupIndex = 0);
109 const InputFile &getFile() const { return *File;
    [all...]
InputFile.cpp 1 //===- InputFile.cpp ------------------------------------------ *- C++ --*-===//
9 #include "InputFile.h"
34 InputFile::InputFile() {}
35 InputFile::~InputFile() {}
130 SymbolGroup::SymbolGroup(InputFile *File, uint32_t GroupIndex) : File(File) {
254 Expected<InputFile> InputFile::open(StringRef Path, bool AllowUnknownFile) {
255 InputFile IF
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/
LTO.h 104 class InputFile {
111 InputFile() = default;
125 ~InputFile();
127 /// Create an InputFile.
128 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
156 /// A range over the symbols in this InputFile.
165 /// Returns the path to the InputFile.
177 // Returns the only BitcodeModule from InputFile.
258 /// - Create lto::InputFile objects using lto::InputFile::create(), then us
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/FileCheck/
FileCheck.cpp 855 MemoryBuffer &InputFile = *InputFileOrErr.get();
857 if (InputFile.getBufferSize() == 0 && !AllowEmptyInput) {
864 StringRef InputFileText = FC.CanonicalizeFile(InputFile, InputFileBuffer);
867 InputFileText, InputFile.getBufferIdentifier()),
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
FrontendAction.cpp 226 /// \param InputFile Populated with the filename from the line marker.
231 std::string &InputFile,
274 InputFile = Literal.GetString().str();
278 LineNoLoc, LineNo, SourceMgr.getLineTableFilenameID(InputFile), false,
576 StringRef InputFile = Input.getFile();
579 std::string(InputFile), CI.getPCHContainerReader(),
644 StringRef InputFile = Input.getFile();
647 std::string(InputFile), CI.getPCHContainerReader(),
675 CI.setASTConsumer(CreateWrappedASTConsumer(CI, InputFile));
CompilerInstance.cpp 899 StringRef InputFile = Input.getFile();
902 auto FileOrErr = InputFile == "-"
904 : FileMgr.getFileRef(InputFile, /*OpenFile=*/true);
908 if (InputFile != "-")
909 Diags.Report(diag::err_fe_error_reading) << InputFile;
  /src/external/apache2/llvm/dist/clang/tools/driver/
cc1as_main.cpp 109 std::string InputFile;
153 InputFile = "-";
259 Opts.InputFile = A->getValue();
345 MemoryBuffer::getFileOrSTDIN(Opts.InputFile, /*IsText=*/true);
349 return Diags.Report(diag::err_fe_error_reading) << Opts.InputFile;
437 Ctx.setGenDwarfRootFile(Opts.InputFile,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lipo/
llvm-lipo.cpp 106 struct InputFile {
112 SmallVector<InputFile, 1> InputFiles;
114 SmallVector<InputFile, 1> ReplacementFiles;
319 readInputBinaries(ArrayRef<InputFile> InputFiles) {
321 for (const InputFile &IF : InputFiles) {
685 ArrayRef<InputFile> ReplacementFiles) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
llvm-rc.cpp 196 std::string InputFile;
372 Opts.InputFile = InputArgs.getLastArgValue(WINDRES_input).str();
374 Opts.InputFile = FileArgs.front();
395 deduceFormat(Opts.InputFormat, Opts.InputFile);
533 Opts.InputFile = InArgsInfo[0];
555 SmallString<128> OutputFile(Opts.InputFile);
628 SmallString<128> InputFile(Src);
629 llvm::sys::fs::make_absolute(InputFile);
630 Params.InputFilePath = InputFile;
743 doRc(Opts.InputFile, ResFile, Opts, Argv[0])
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ModuleFile.h 64 class InputFile {
73 InputFile() = default;
75 InputFile(FileEntryRef File, bool isOverridden = false,
87 static InputFile getNotFound() {
88 InputFile File;
236 std::vector<InputFile> InputFilesLoaded;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
llvm-jitlink.cpp 1025 for (auto InputFile : InputFiles) {
1027 ExitOnErr(errorOrToExpected(MemoryBuffer::getFile(InputFile)));
1170 const std::string &InputFile = *InputFileItr;
1172 LLVM_DEBUG(dbgs() << " " << InputFileArgIdx << ": \"" << InputFile
1175 ExitOnErr(errorOrToExpected(MemoryBuffer::getFile(InputFile)));
1181 S.ObjLayer, InputFile.c_str(), S.TPC->getTargetTriple())));
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 135 Lexer::Lexer(FileID FID, const llvm::MemoryBufferRef &InputFile,
140 InitLexer(InputFile.getBufferStart(), InputFile.getBufferStart(),
141 InputFile.getBufferEnd());
197 llvm::MemoryBufferRef InputFile = SM.getBufferOrFake(SpellingFID);
198 Lexer *L = new Lexer(SpellingFID, InputFile, PP);

Completed in 24 milliseconds