HomeSort by relevance Sort by last modified time
    Searched defs:InputFile (Results 1 - 10 of 10) sorted by null

  /frameworks/compile/libbcc/include/bcc/Support/
InputFile.h 25 class InputFile : public File<FileBase::kReadMode> {
28 InputFile(const std::string &pFilename, unsigned pFlags = 0);
  /frameworks/compile/libbcc/lib/Support/
InputFile.cpp 17 #include "bcc/Support/InputFile.h"
23 InputFile::InputFile(const std::string &pFilename, unsigned pFlags)
26 ssize_t InputFile::read(void *pBuf, size_t count) {
33 ALOGW("InputFile::read: count = %zu, buffer = %p", count, pBuf);
  /external/clang/lib/Lex/
PPLexerChange.cpp 88 const llvm::MemoryBuffer *InputFile =
104 EnterSourceFileWithLexer(new Lexer(FID, InputFile, *this), CurDir);
Lexer.cpp 117 Lexer::Lexer(FileID FID, const llvm::MemoryBuffer *InputFile, Preprocessor &PP)
122 InitLexer(InputFile->getBufferStart(), InputFile->getBufferStart(),
123 InputFile->getBufferEnd());
186 const llvm::MemoryBuffer *InputFile = SM.getBuffer(SpellingFID);
187 Lexer *L = new Lexer(SpellingFID, InputFile, PP);
    [all...]
  /external/clang/lib/Frontend/
FrontendAction.cpp 169 StringRef InputFile = Input.getFile();
184 ASTUnit *AST = ASTUnit::LoadFromASTFile(InputFile, Diags,
203 if (!BeginSourceFileAction(CI, InputFile))
207 CI.setASTConsumer(CreateWrappedASTConsumer(CI, InputFile));
230 if (!BeginSourceFileAction(CI, InputFile))
276 if (!BeginSourceFileAction(CI, InputFile))
285 CreateWrappedASTConsumer(CI, InputFile));
CompilerInstance.cpp 598 StringRef InputFile = Input.getFile();
601 if (InputFile != "-") {
602 const FileEntry *File = FileMgr.getFile(InputFile);
604 Diags.Report(diag::err_fe_error_reading) << InputFile;
614 if (llvm::error_code ec = llvm::MemoryBuffer::getFile(InputFile, MB)) {
615 Diags.Report(diag::err_cannot_open_file) << InputFile << ec.message();
620 File = FileMgr.getVirtualFile(InputFile, MB->getBufferSize(), 0);
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 94 std::string InputFile;
127 InputFile = "-";
198 Opts.InputFile = A->getValue();
274 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Opts.InputFile, BufferPtr)) {
276 Diags.Report(diag::err_fe_error_reading) << Opts.InputFile;
  /frameworks/compile/slang/
llvm-rs-cc.cpp 326 const char *InputFile,
342 OutputFile.append(slang::RSSlangReflectUtils::GetFileNameStem(InputFile));
345 slang::RSSlangReflectUtils::BCFileNameFromRSFileName(InputFile));
461 const char *InputFile = Inputs[i];
463 DetermineOutputFile(Opts.mOutputDir, InputFile,
473 InputFile,
481 InputFile,
488 IOFiles.push_back(std::make_pair(InputFile, OutputFile));
slang_rs.cpp 300 const char *InputFile, *OutputFile, *BCOutputFile, *DepOutputFile;
329 InputFile = IOFileIter->first;
334 if (!setInputSource(InputFile))
345 mIsFilterscript = isFilterscript(InputFile);
407 if (!checkODR(InputFile))
  /external/clang/include/clang/Serialization/
Module.h 61 class InputFile {
69 InputFile() {}
70 InputFile(const FileEntry *File,
178 std::vector<InputFile> InputFilesLoaded;

Completed in 78 milliseconds