Searched defs:DeclInfo (Results 1 - 4 of 4) sorted by relevance

/external/clang/include/clang/Sema/
H A DLocInfoType.h36 TypeSourceInfo *DeclInfo; member in class:clang::LocInfoType
43 DeclInfo(TInfo) {
50 TypeSourceInfo *getTypeSourceInfo() const { return DeclInfo; }
/external/clang/include/clang/AST/
H A DDecl.h594 llvm::PointerUnion<TypeSourceInfo*, ExtInfo*> DeclInfo; member in class:clang::DeclaratorDecl
600 bool hasExtInfo() const { return DeclInfo.is<ExtInfo*>(); }
601 ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); }
602 const ExtInfo *getExtInfo() const { return DeclInfo.get<ExtInfo*>(); }
608 : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) {
615 : DeclInfo.get<TypeSourceInfo*>();
621 DeclInfo = TI;
H A DComment.h937 struct DeclInfo { struct in namespace:clang::comments
1040 DeclInfo *ThisDeclInfo;
1043 FullComment(llvm::ArrayRef<BlockContentComment *> Blocks, DeclInfo *D) :
1072 const DeclInfo *getDeclInfo() const LLVM_READONLY {
/external/clang/tools/libclang/
H A DIndexingContext.h63 struct DeclInfo : public CXIdxDeclInfo { struct in namespace:clang::cxindex
84 DeclInfo(bool isRedeclaration, bool isDefinition, bool isContainer) function in struct:clang::cxindex::DeclInfo
93 DeclInfo(DInfoKind K, function in struct:clang::cxindex::DeclInfo
104 static bool classof(const DeclInfo *) { return true; }
107 struct ObjCContainerDeclInfo : public DeclInfo {
113 : DeclInfo(Info_ObjCContainer, isRedeclaration,
121 : DeclInfo(K, isRedeclaration, /*isDefinition=*/!isForwardRef,
126 static bool classof(const DeclInfo *D) {
152 static bool classof(const DeclInfo *D) {
167 static bool classof(const DeclInfo *
[all...]

Completed in 69 milliseconds