OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InputFile
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/tools/gn/
input_file.cc
9
InputFile
::
InputFile
(const SourceFile& name)
15
InputFile
::~
InputFile
() {
18
void
InputFile
::SetContents(const std::string& c) {
23
bool
InputFile
::Load(const base::FilePath& system_path) {
input_file.h
16
class
InputFile
{
18
InputFile
(const SourceFile& name);
20
~
InputFile
();
55
DISALLOW_COPY_AND_ASSIGN(
InputFile
);
/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
612
StringRef
InputFile
= Input.getFile();
615
if (
InputFile
!= "-") {
616
const FileEntry *File = FileMgr.getFile(
InputFile
);
618
Diags.Report(diag::err_fe_error_reading) <<
InputFile
;
628
if (llvm::error_code ec = llvm::MemoryBuffer::getFile(
InputFile
, MB)) {
629
Diags.Report(diag::err_cannot_open_file) <<
InputFile
<< ec.message();
634
File = FileMgr.getVirtualFile(
InputFile
, MB->getBufferSize(), 0);
[
all
...]
/external/clang/tools/driver/
cc1as_main.cpp
97
std::string
InputFile
;
130
InputFile
= "-";
201
Opts.
InputFile
= A->getValue();
275
if (error_code ec = MemoryBuffer::getFileOrSTDIN(Opts.
InputFile
, BufferPtr)) {
277
Diags.Report(diag::err_fe_error_reading) << Opts.
InputFile
;
/frameworks/compile/slang/
llvm-rs-cc.cpp
327
const char *
InputFile
,
343
OutputFile.append(slang::RSSlangReflectUtils::GetFileNameStem(
InputFile
));
346
slang::RSSlangReflectUtils::BCFileNameFromRSFileName(
InputFile
));
462
const char *
InputFile
= Inputs[i];
464
DetermineOutputFile(Opts.mOutputDir,
InputFile
,
474
InputFile
,
482
InputFile
,
489
IOFiles.push_back(std::make_pair(
InputFile
, OutputFile));
slang_rs.cpp
296
const char *
InputFile
, *OutputFile, *BCOutputFile, *DepOutputFile;
325
InputFile
= IOFileIter->first;
330
if (!setInputSource(
InputFile
))
336
mIsFilterscript = isFilterscript(
InputFile
);
401
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 893 milliseconds