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

  /external/llvm/tools/lli/
lli.cpp 51 InputFile(cl::desc("<input bitcode>"), cl::Positional, cl::init("-"));
202 Module *Mod = ParseIRFile(InputFile, Err, Context);
281 InputFile = FakeArgv0;
285 if (StringRef(InputFile).endswith(".bc"))
286 InputFile.erase(InputFile.length() - 3);
290 InputArgv.insert(InputArgv.begin(), InputFile);
  /gdk/sources/llvm-ndk-cc/
Compiler.cpp 199 bool Compiler::setInputSource(llvm::StringRef InputFile,
202 mInputFileName = InputFile.str();
213 mDiagnostics->Report(clang::diag::err_fe_error_reading) << InputFile;
219 bool Compiler::setInputSource(llvm::StringRef InputFile) {
220 mInputFileName = InputFile.str();
224 const clang::FileEntry *File = mFileMgr->getFile(InputFile);
229 mDiagnostics->Report(clang::diag::err_fe_error_reading) << InputFile;
Compiler.h 63 bool setInputSource(llvm::StringRef InputFile, const char *Text,
66 bool setInputSource(llvm::StringRef InputFile);
  /frameworks/compile/slang/
slang.cpp 288 bool Slang::setInputSource(llvm::StringRef InputFile,
291 mInputFileName = InputFile.str();
302 mDiagEngine->Report(clang::diag::err_fe_error_reading) << InputFile;
308 bool Slang::setInputSource(llvm::StringRef InputFile) {
309 mInputFileName = InputFile.str();
313 const clang::FileEntry *File = mFileMgr->getFile(InputFile);
318 mDiagEngine->Report(clang::diag::err_fe_error_reading) << InputFile;
llvm-rs-cc.cpp 305 const char *InputFile,
321 OutputFile.append(slang::RSSlangReflectUtils::GetFileNameStem(InputFile));
324 slang::RSSlangReflectUtils::BCFileNameFromRSFileName(InputFile));
438 const char *InputFile = Inputs[i];
440 DetermineOutputFile(Opts.mOutputDir, InputFile,
450 InputFile,
458 InputFile,
465 IOFiles.push_back(std::make_pair(InputFile, OutputFile));
slang.h 181 bool setInputSource(llvm::StringRef InputFile, const char *Text,
184 bool setInputSource(llvm::StringRef InputFile);
slang_rs.cpp 284 const char *InputFile, *OutputFile, *BCOutputFile, *DepOutputFile;
313 InputFile = IOFileIter->first;
318 if (!setInputSource(InputFile))
383 if (!checkODR(InputFile))
llvm-rs-link.cpp 190 Module *PerformLinking(const std::string &InputFile,
194 std::auto_ptr<Module> Composite(LoadBitcodeFile(InputFile, Context));
209 errs() << "Failed to link `" << InputFile << "' with library bitcode `"
  /external/llvm/tools/bugpoint/
ToolRunner.h 57 /// arguments. Standard input is specified with InputFile, and standard
65 const std::string &InputFile,
76 int MakeSharedObject(const std::string &InputFile, FileType fileType,
143 const std::string &InputFile,
178 const std::string &InputFile,
226 const std::string &InputFile,
ToolRunner.cpp 186 const std::string &InputFile,
199 const std::string &InputFile,
233 sys::Path(InputFile), sys::Path(OutputFile), sys::Path(OutputFile),
276 const std::string &InputFile,
332 const std::string &InputFile,
345 const std::string &InputFile,
367 &ProgramArgs[0], sys::Path(InputFile), sys::Path(OutputFile),
497 const std::string &InputFile,
515 InputFile, OutputFile, Error, GCCArgs,
559 const std::string &InputFile,
    [all...]
ExecutionDriver.cpp 81 InputFile("input", cl::init("/dev/null"),
342 int RetVal = AI->ExecuteProgram(BitcodeFile, InputArgv, InputFile, OutputFile,
  /external/opencv/otherlibs/highgui/
grfmt_exr.h 76 InputFile *m_file;
grfmt_exr.cpp 102 m_file = new InputFile( filename );
  /external/clang/tools/driver/
cc1as_main.cpp 91 std::string InputFile;
124 InputFile = "-";
192 Opts.InputFile = A->getValue(*Args);
268 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Opts.InputFile, BufferPtr)) {
270 Diags.Report(diag::err_fe_error_reading) << Opts.InputFile;
  /external/clang/include/clang/Frontend/
CompilerInstance.h 637 /// InitializeSourceManager - Initialize the source manager to set InputFile
641 bool InitializeSourceManager(StringRef InputFile,
644 /// InitializeSourceManager - Initialize the source manager to set InputFile
648 static bool InitializeSourceManager(StringRef InputFile,
  /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());
179 const llvm::MemoryBuffer *InputFile = SM.getBuffer(SpellingFID);
180 Lexer *L = new Lexer(SpellingFID, InputFile, PP);
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 593 bool CompilerInstance::InitializeSourceManager(StringRef InputFile,
595 return InitializeSourceManager(InputFile, Kind, getDiagnostics(),
600 bool CompilerInstance::InitializeSourceManager(StringRef InputFile,
607 if (InputFile != "-") {
608 const FileEntry *File = FileMgr.getFile(InputFile);
610 Diags.Report(diag::err_fe_error_reading) << InputFile;
    [all...]
  /external/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))
  /external/llvm/tools/llvm-ld/
llvm-ld.cpp 286 const std::string &InputFile,
295 args.push_back(InputFile.c_str());

Completed in 706 milliseconds