Searched defs:File (Results 101 - 125 of 138) sorted by relevance

123456

/external/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp192 // File name.
271 if (ModuleFile *MF = Modules[I].File)
277 ModuleFile *File,
281 = ModulesByFile.find(File);
289 if (ModuleFile *MF = Modules[I].File)
312 if (ModuleFile *MF = Modules[ModuleIDs[I]].File)
320 bool GlobalModuleIndex::loadedModuleFile(ModuleFile *File) { argument
322 StringRef Name = File->ModuleName;
334 if (File->File
276 getModuleDependencies( ModuleFile *File, SmallVectorImpl<ModuleFile *> &Dependencies) argument
407 getModuleFileInfo(const FileEntry *File) argument
495 loadModuleFile(const FileEntry *File) argument
[all...]
/external/clang/tools/libclang/
H A DIndexingContext.cpp233 void IndexingContext::enteredMainFile(const FileEntry *File) { argument
234 if (File && CB.enteredMainFile) {
237 static_cast<CXFile>(const_cast<FileEntry *>(File)),
239 FileMap[File] = idxFile;
245 const FileEntry *File,
255 const_cast<FileEntry *>(File)),
258 FileMap[File] = idxFile;
280 void IndexingContext::importedPCH(const FileEntry *File) { argument
286 const_cast<FileEntry *>(File)),
863 CXIdxClientFile IndexingContext::getIndexFile(const FileEntry *File) { argument
243 ppIncludedFile(SourceLocation hashLoc, StringRef filename, const FileEntry *File, bool isImport, bool isAngled, bool isModuleImport) argument
[all...]
/external/llvm/include/llvm/Support/
H A DARMBuildAttributes.h35 File = 1, enumerator in enum:llvm::ARMBuildAttrs::AttrType
H A DGCOV.h62 StringRef File = Buffer->getBuffer().slice(0, 4); local
63 if (File != "oncg") {
64 errs() << "Unexpected file type: " << File << ".\n";
73 StringRef File = Buffer->getBuffer().slice(0, 4); local
74 if (File != "adcg") {
75 errs() << "Unexpected file type: " << File << ".\n";
H A DFileSystem.h1 //===- llvm/Support/FileSystem.h - File System OS Concept -------*- C++ -*-===//
120 uint64_t File; member in class:llvm::sys::fs::UniqueID
124 UniqueID(uint64_t Device, uint64_t File) : Device(Device), File(File) {} argument
126 return Device == Other.Device && File == Other.File;
130 return std::tie(Device, File) < std::tie(Other.Device, Other.File);
133 uint64_t getFile() const { return File; }
[all...]
/external/llvm/lib/IR/
H A DDIBuilder.cpp270 nullptr, // File/directory name
362 DIDerivedType DIBuilder::createTypedef(DIType Ty, StringRef Name, DIFile File, argument
367 File.getFileNode(),
424 DIFile File, unsigned LineNumber,
432 File.getFileNode(),
449 DIFile File, unsigned LineNumber,
456 File.getFileNode(),
473 DIBuilder::createObjCIVar(StringRef Name, DIFile File, unsigned LineNumber, argument
481 File.getFileNode(),
482 getNonCompileUnitScope(File),
423 createMemberType(DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNumber, uint64_t SizeInBits, uint64_t AlignInBits, uint64_t OffsetInBits, unsigned Flags, DIType Ty) argument
448 createStaticMemberType(DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNumber, DIType Ty, unsigned Flags, llvm::Value *Val) argument
500 createObjCIVar(StringRef Name, DIFile File, unsigned LineNumber, uint64_t SizeInBits, uint64_t AlignInBits, uint64_t OffsetInBits, unsigned Flags, DIType Ty, MDNode *PropertyNode) argument
526 createObjCProperty(StringRef Name, DIFile File, unsigned LineNumber, StringRef GetterName, StringRef SetterName, unsigned PropertyAttributes, DIType Ty) argument
545 createTemplateTypeParameter(DIDescriptor Context, StringRef Name, DIType Ty, MDNode *File, unsigned LineNo, unsigned ColumnNo) argument
561 createTemplateValueParameter(unsigned Tag, DIDescriptor Context, StringRef Name, DIType Ty, Value *Val, MDNode *File, unsigned LineNo, unsigned ColumnNo) argument
582 createTemplateValueParameter(DIDescriptor Context, StringRef Name, DIType Ty, Value *Val, MDNode *File, unsigned LineNo, unsigned ColumnNo) argument
592 createTemplateTemplateParameter(DIDescriptor Context, StringRef Name, DIType Ty, StringRef Val, MDNode *File, unsigned LineNo, unsigned ColumnNo) argument
602 createTemplateParameterPack(DIDescriptor Context, StringRef Name, DIType Ty, DIArray Val, MDNode *File, unsigned LineNo, unsigned ColumnNo) argument
612 createClassType(DIDescriptor Context, StringRef Name, DIFile File, unsigned LineNumber, uint64_t SizeInBits, uint64_t AlignInBits, uint64_t OffsetInBits, unsigned Flags, DIType DerivedFrom, DIArray Elements, DIType VTableHolder, MDNode *TemplateParams, StringRef UniqueIdentifier) argument
652 createStructType(DIDescriptor Context, StringRef Name, DIFile File, unsigned LineNumber, uint64_t SizeInBits, uint64_t AlignInBits, unsigned Flags, DIType DerivedFrom, DIArray Elements, unsigned RunTimeLang, DIType VTableHolder, StringRef UniqueIdentifier) argument
690 createUnionType(DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNumber, uint64_t SizeInBits, uint64_t AlignInBits, unsigned Flags, DIArray Elements, unsigned RunTimeLang, StringRef UniqueIdentifier) argument
723 createSubroutineType(DIFile File, DIArray ParameterTypes, unsigned Flags) argument
749 createEnumerationType( DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNumber, uint64_t SizeInBits, uint64_t AlignInBits, DIArray Elements, DIType UnderlyingType, StringRef UniqueIdentifier) argument
1037 createLocalVariable(unsigned Tag, DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNo, DITypeRef Ty, bool AlwaysPreserve, unsigned Flags, unsigned ArgNo) argument
1097 createFunction(DIScopeRef Context, StringRef Name, StringRef LinkageName, DIFile File, unsigned LineNo, DICompositeType Ty, bool isLocalToUnit, bool isDefinition, unsigned ScopeLine, unsigned Flags, bool isOptimized, Function *Fn, MDNode *TParams, MDNode *Decl) argument
1113 createFunction(DIDescriptor Context, StringRef Name, StringRef LinkageName, DIFile File, unsigned LineNo, DICompositeType Ty, bool isLocalToUnit, bool isDefinition, unsigned ScopeLine, unsigned Flags, bool isOptimized, Function *Fn, MDNode *TParams, MDNode *Decl) argument
1203 createNameSpace(DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNo) argument
1220 createLexicalBlockFile(DIDescriptor Scope, DIFile File) argument
1234 createLexicalBlock(DIDescriptor Scope, DIFile File, unsigned Line, unsigned Col, unsigned Discriminator) argument
[all...]
/external/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp812 const MemoryBuffer *File = MemberBuffers[MemberNum].get(); local
842 Out << File->getBuffer();
/external/llvm/utils/FileCheck/
H A DFileCheck.cpp1 //===- FileCheck.cpp - Check that File's Contents match what is expected --===//
42 InputFilename("input-file", cl::desc("File to check (defaults to stdin)"),
1234 std::unique_ptr<MemoryBuffer> File = std::move(FileOrErr.get()); local
1236 if (File->getBufferSize() == 0) {
1244 CanonicalizeInputFile(File.release(), NoCanonicalizeWhiteSpace);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_pair_regalloc.c55 unsigned int File:3; member in struct:register_info
212 s->Input[input].File = RC_FILE_TEMPORARY;
226 s->Temporary[i].File = RC_FILE_TEMPORARY;
700 if (var->Dst.File == RC_FILE_INPUT) {
/external/chromium_org/net/disk_cache/blockfile/
H A Dbackend_impl.cc316 File::WaitForPendingIO(&num_pending_io_);
319 File::DropPendingIO();
708 MappedFile* BackendImpl::File(Addr address) { function in class:disk_cache::BackendImpl
728 int flags = base::File::FLAG_READ | base::File::FLAG_WRITE |
729 base::File::FLAG_CREATE | base::File::FLAG_EXCLUSIVE_WRITE;
730 base::File file(name, flags);
732 base::File::Error error = file.error_details();
733 if (error != base::File
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_instruction.h258 GLuint File:4; /**< One of the PROGRAM_* register file values. */ member in struct:prog_src_register
298 GLuint File:4; /**< One of the PROGRAM_* register file values */ member in struct:prog_dst_register
/external/clang/bindings/python/clang/
H A Dcindex.py40 SourceRange, SourceLocation, and File
63 # o implement additional SourceLocation, SourceRange, and File methods.
173 f = File(f)
192 file -- File instance to obtain offset from
2314 includes.append(FileInclusion(loc.file, File(fobj), loc, depth))
2324 """Obtain a File from this translation unit."""
2326 return File.from_name(self, filename)
2513 class File(ClangObject): class in inherits:ClangObject
2515 The File class represents a particular source file that is part of a
2522 return File(con
[all...]
/external/clang/include/clang/Basic/
H A DSourceManager.h362 /// normal File SLocs or expansion locations.
380 /// SpellingLoc can both refer to normal File SLocs or expansion locations.
407 FileInfo File; member in union:clang::SrcMgr::SLocEntry::__anon17574
418 return File;
429 E.File = FI;
821 llvm::MemoryBuffer *getMemoryBufferForFile(const FileEntry *File,
847 bool isFileOverridden(const FileEntry *File) { argument
849 if (OverriddenFilesInfo->OverriddenFilesWithBuffer.count(File))
851 if (OverriddenFilesInfo->OverriddenFiles.find(File) !=
862 void disableFileContentsOverride(const FileEntry *File);
[all...]
/external/clang/lib/Basic/
H A DSourceManager.cpp570 FileID SourceManager::createFileID(const ContentCache *File, argument
580 FileInfo::get(IncludePos, File, FileCharacter));
585 FileInfo::get(IncludePos, File,
587 unsigned FileSize = File->getSize();
645 llvm::MemoryBuffer *SourceManager::getMemoryBufferForFile(const FileEntry *File, argument
647 const SrcMgr::ContentCache *IR = getOrCreateContentCache(File);
675 void SourceManager::disableFileContentsOverride(const FileEntry *File) { argument
676 if (!isFileOverridden(File))
679 const SrcMgr::ContentCache *IR = getOrCreateContentCache(File);
684 OverriddenFilesInfo->OverriddenFiles.erase(File);
1572 getActualFileUID(const FileEntry *File) argument
[all...]
H A DVirtualFileSystem.cpp1 //===- VirtualFileSystem.cpp - Virtual File System Layer --------*- C++ -*-===//
66 File::~File() {}
73 std::unique_ptr<File> F;
88 class RealFile : public File {
165 std::unique_ptr<File> &Result) override;
180 std::unique_ptr<File> &Result) {
257 std::unique_ptr<File> &Result) {
526 std::unique_ptr<File> &Result) override;
976 std::unique_ptr<vfs::File>
[all...]
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp221 // File Manager
718 const FileEntry *File = FileMgr.getFile(InputFile, /*OpenFile=*/true); local
719 if (!File) {
729 if (File->isNamedPipe()) {
732 FileMgr.getBufferForFile(File, &ErrorStr, /*isVolatile=*/true)) {
734 File = FileMgr.getVirtualFile(InputFile, MB->getBufferSize(), 0);
735 SourceMgr.overrideFileContents(File, MB);
743 SourceMgr.createFileID(File, SourceLocation(), Kind));
753 const FileEntry *File = FileMgr.getVirtualFile(SB->getBufferIdentifier(), local
756 SourceMgr.createFileID(File, SourceLocatio
[all...]
H A DASTUnit.cpp1643 const FileEntry *File = Clang->getFileManager().getFile(Filename); local
1644 if (!File || File == SourceMgr.getFileEntryForID(SourceMgr.getMainFileID()))
1646 if (time_t ModTime = File->getModificationTime()) {
1647 FilesInPreamble[File->getName()] = PreambleFileHash::createForFile(
1648 File->getSize(), ModTime);
1650 llvm::MemoryBuffer *Buffer = SourceMgr.getMemoryBufferForFile(File);
1651 FilesInPreamble[File->getName()] =
2330 void ASTUnit::CodeComplete(StringRef File, unsigned Line, unsigned Column, argument
2344 CompletionTimer.setOutput("Code completion @ " + File
2475 Save(StringRef File) argument
2632 findFileRegionDecls(FileID File, unsigned Offset, unsigned Length, SmallVectorImpl<Decl *> &Decls) argument
2675 getLocation(const FileEntry *File, unsigned Line, unsigned Col) const argument
2682 getLocation(const FileEntry *File, unsigned Offset) const argument
[all...]
/external/clang/lib/Lex/
H A DLexer.cpp1178 StringRef File = SM.getBufferData(LocInfo.first, &InvalidTemp); local
1182 const char *TokenBegin = File.data() + LocInfo.second;
1185 Lexer lexer(SM.getLocForStartOfFile(LocInfo.first), LangOpts, File.begin(),
1186 TokenBegin, File.end());
H A DModuleMap.cpp163 ModuleMap::findKnownHeader(const FileEntry *File) { argument
164 HeadersMap::iterator Known = Headers.find(File);
165 if (Known == Headers.end() && File->getDir() == BuiltinIncludeDir &&
166 isBuiltinHeader(llvm::sys::path::filename(File->getName()))) {
168 return Headers.find(File);
174 ModuleMap::findHeaderInUmbrellaDirs(const FileEntry *File, argument
176 const DirectoryEntry *Dir = File->getDir();
240 const FileEntry *File) {
253 HeadersMap::iterator Known = findKnownHeader(File);
262 // If 'File' i
237 diagnoseHeaderInclusion(Module *RequestingModule, SourceLocation FilenameLoc, StringRef Filename, const FileEntry *File) argument
317 findModuleForHeader(const FileEntry *File, Module *RequestingModule) argument
1650 const FileEntry *File = nullptr; local
2253 parseModuleMapFile(const FileEntry *File, bool IsSystem) argument
[all...]
H A DPPDirectives.cpp767 // C99 6.10.2 - Source File Inclusion.
1474 const FileEntry *File = LookupFile( local
1481 if (!File) {
1491 File = LookupFile(FilenameLoc,
1508 isAngled, FilenameRange, File, SearchPath,
1513 if (!File) {
1519 File = LookupFile(
1525 if (File) {
1533 if (!File)
1536 if (!File)
[all...]
/external/llvm/lib/MC/
H A DMCDwarf.cpp375 MCDwarfFile &File = MCDwarfFiles[FileNumber]; local
378 if (!File.Name.empty())
412 File.Name = FileName;
413 File.DirIndex = DirIndex;
/external/mesa3d/src/mesa/program/
H A Dprog_instruction.h258 GLuint File:4; /**< One of the PROGRAM_* register file values. */ member in struct:prog_src_register
298 GLuint File:4; /**< One of the PROGRAM_* register file values */ member in struct:prog_dst_register
/external/clang/include/clang/Serialization/
H A DASTReader.h1 //===--- ASTReader.h - AST File Reader --------------------------*- C++ -*-===//
187 /// each non-system input file of the AST File. If
588 ModuleFile *File; member in struct:clang::ASTReader::UnresolvedModuleRef
1697 void FindFileRegionDecls(FileID File, unsigned Offset, unsigned Length,
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp1898 const FileEntry *File; member in struct:__anon17688::EditEntry
1903 EditEntry() : File(), Offset(), RemoveLen() {}
1921 ID.AddPointer(Val.File);
1928 return LHS.File == RHS.File &&
1943 bool parse(StringRef File, SmallVectorImpl<EditEntry> &Entries) { argument
1947 llvm::MemoryBuffer::getFile(File);
2000 Entry.File = FE;
2037 assert(Entry.File == FE);
2113 if (!Entry.File)
[all...]
/external/pdfium/core/include/fpdfdoc/
H A Dfpdf_doc.h1082 File, enumerator in enum:CPDF_FormField::Type

Completed in 1412 milliseconds

123456