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

  /external/clang/include/clang/Sema/
LocInfoType.h 36 TypeSourceInfo *DeclInfo;
43 DeclInfo(TInfo) {
50 TypeSourceInfo *getTypeSourceInfo() const { return DeclInfo; }
  /external/clang/tools/libclang/
IndexingContext.h 62 struct DeclInfo : public CXIdxDeclInfo {
83 DeclInfo(bool isRedeclaration, bool isDefinition, bool isContainer)
93 DeclInfo(DInfoKind K,
106 struct ObjCContainerDeclInfo : public DeclInfo {
112 : DeclInfo(Info_ObjCContainer, isRedeclaration,
120 : DeclInfo(K, isRedeclaration, /*isDefinition=*/!isForwardRef,
125 static bool classof(const DeclInfo *D) {
150 static bool classof(const DeclInfo *D) {
164 static bool classof(const DeclInfo *D) {
179 static bool classof(const DeclInfo *D)
    [all...]
Indexing.cpp 827 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
840 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
853 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
866 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
887 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo)
    [all...]
IndexingContext.cpp 310 DeclInfo &DInfo,
367 ContDInfo.ObjCContDeclInfo.declInfo = &ContDInfo;
381 DeclInfo DInfo(!D->isFirstDeclaration(), isDef, isContainer);
388 DeclInfo DInfo(!D->isFirstDeclaration(), D->isThisDeclarationADefinition(),
394 DeclInfo DInfo(/*isRedeclaration=*/false, /*isDefinition=*/true,
400 DeclInfo DInfo(/*isRedeclaration=*/false, /*isDefinition=*/true,
409 DeclInfo DInfo(!D->isFirstDeclaration(), D->isThisDeclarationADefinition(),
415 DeclInfo DInfo(!D->isFirstDeclaration(), /*isDefinition=*/true,
575 DeclInfo DInfo(!D->isCanonicalDecl(), isDef, isContainer);
590 DeclInfo DInfo(/*isRedeclaration=*/true, /*isDefinition=*/true
    [all...]
  /external/clang/include/clang/AST/
Comment.h 951 struct DeclInfo {
963 /// The information in the DeclInfo corresponds to CurrentDecl.
1064 DeclInfo *ThisDeclInfo;
1067 FullComment(ArrayRef<BlockContentComment *> Blocks, DeclInfo *D) :
1094 const DeclInfo *getDeclInfo() const LLVM_READONLY {
1100 DeclInfo *getThisDeclInfo() const LLVM_READONLY {
CommentSema.h 50 DeclInfo *ThisDeclInfo;
55 /// Contains a valid value if \c DeclInfo->IsFilled is true.
Decl.h 508 llvm::PointerUnion<TypeSourceInfo*, ExtInfo*> DeclInfo;
514 bool hasExtInfo() const { return DeclInfo.is<ExtInfo*>(); }
515 ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); }
516 const ExtInfo *getExtInfo() const { return DeclInfo.get<ExtInfo*>(); }
522 : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) {
529 : DeclInfo.get<TypeSourceInfo*>();
535 DeclInfo = TI;
    [all...]
  /external/clang/lib/AST/
Comment.cpp 128 void DeclInfo::fill() {
CommentSema.cpp 40 ThisDeclInfo = new (Allocator) DeclInfo;
788 return ThisDeclInfo->getKind() == DeclInfo::FunctionKind;
808 if (ThisDeclInfo->getKind() == DeclInfo::VariableKind) {
830 return ThisDeclInfo->getTemplateKind() != DeclInfo::NotTemplate;
    [all...]
Decl.cpp     [all...]
ASTContext.cpp 390 comments::DeclInfo *ThisDeclInfo = new (*this) comments::DeclInfo;
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 303 if (DD->DeclInfo) {
305 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
310 DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
493 DD->DeclInfo = Info;
    [all...]

Completed in 566 milliseconds