Searched refs:DeclInfo (Results 1 - 11 of 11) 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/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...]
H A DIndexing.cpp573 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
586 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
599 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
612 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
633 const DeclInfo *DI = static_cast<const DeclInfo *>(DInf
[all...]
H A DIndexingContext.cpp252 DeclInfo &DInfo,
314 DeclInfo DInfo(!D->isFirstDeclaration(), D->isThisDeclarationADefinition(),
320 DeclInfo DInfo(!D->isFirstDeclaration(), D->isThisDeclarationADefinition(),
326 DeclInfo DInfo(/*isRedeclaration=*/false, /*isDefinition=*/true,
332 DeclInfo DInfo(/*isRedeclaration=*/false, /*isDefinition=*/true,
341 DeclInfo DInfo(!D->isFirstDeclaration(), D->isThisDeclarationADefinition(),
347 DeclInfo DInfo(!D->isFirstDeclaration(), /*isDefinition=*/true,
498 DeclInfo DInfo(!D->isCanonicalDecl(), D->isThisDeclarationADefinition(),
512 DeclInfo DInfo(/*isRedeclaration=*/true, /*isDefinition=*/true,
543 DeclInfo DInf
[all...]
/external/clang/include/clang/AST/
H A DCommentSema.h47 DeclInfo *ThisDeclInfo;
52 /// Contains a valid value if \c DeclInfo->IsFilled is true.
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 {
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;
/external/clang/lib/AST/
H A DComment.cpp142 void DeclInfo::fill() {
H A DCommentSema.cpp35 ThisDeclInfo = new (Allocator) DeclInfo;
584 return ThisDeclInfo->getKind() == DeclInfo::FunctionKind;
592 return ThisDeclInfo->getTemplateKind() != DeclInfo::NotTemplate;
H A DDecl.cpp1049 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1051 DeclInfo = new (getASTContext()) ExtInfo;
1066 DeclInfo = savedTInfo;
1082 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1084 DeclInfo = new (getASTContext()) ExtInfo;
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp305 if (DD->DeclInfo) {
307 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
312 DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
493 DD->DeclInfo = Info;

Completed in 122 milliseconds