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 66 struct DeclInfo : public CXIdxDeclInfo {
87 DeclInfo(bool isRedeclaration, bool isDefinition, bool isContainer)
97 DeclInfo(DInfoKind K,
110 struct ObjCContainerDeclInfo : public DeclInfo {
116 : DeclInfo(Info_ObjCContainer, isRedeclaration,
124 : DeclInfo(K, isRedeclaration, /*isDefinition=*/!isForwardRef,
129 static bool classof(const DeclInfo *D) {
154 static bool classof(const DeclInfo *D) {
168 static bool classof(const DeclInfo *D) {
183 static bool classof(const DeclInfo *D)
    [all...]
Indexing.cpp 778 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
791 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
804 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
817 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
838 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo)
    [all...]
IndexingContext.cpp 311 DeclInfo &DInfo,
368 ContDInfo.ObjCContDeclInfo.declInfo = &ContDInfo;
382 DeclInfo DInfo(!D->isFirstDecl(), isDef, isContainer);
389 DeclInfo DInfo(!D->isFirstDecl(), D->isThisDeclarationADefinition(),
395 DeclInfo DInfo(/*isRedeclaration=*/false, /*isDefinition=*/true,
401 DeclInfo DInfo(/*isRedeclaration=*/false, /*isDefinition=*/true,
407 DeclInfo DInfo(/*isRedeclaration=*/false, /*isDefinition=*/true,
416 DeclInfo DInfo(!D->isFirstDecl(), D->isThisDeclarationADefinition(),
422 DeclInfo DInfo(!D->isFirstDecl(), /*isDefinition=*/true,
583 DeclInfo DInfo(!D->isCanonicalDecl(), isDef, isContainer)
    [all...]
  /external/clang/include/clang/AST/
Comment.h 986 struct DeclInfo {
998 /// The information in the DeclInfo corresponds to CurrentDecl.
1099 DeclInfo *ThisDeclInfo;
1102 FullComment(ArrayRef<BlockContentComment *> Blocks, DeclInfo *D) :
1129 const DeclInfo *getDeclInfo() const LLVM_READONLY {
CommentSema.h 50 DeclInfo *ThisDeclInfo;
55 /// Contains a valid value if \c DeclInfo->IsFilled is true.
Decl.h 593 llvm::PointerUnion<TypeSourceInfo*, ExtInfo*> DeclInfo;
599 bool hasExtInfo() const { return DeclInfo.is<ExtInfo*>(); }
600 ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); }
601 const ExtInfo *getExtInfo() const { return DeclInfo.get<ExtInfo*>(); }
607 : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) {
614 : DeclInfo.get<TypeSourceInfo*>();
620 DeclInfo = TI;
    [all...]
  /external/clang/lib/AST/
CommentSema.cpp 40 ThisDeclInfo = new (Allocator) DeclInfo;
807 return ThisDeclInfo->getKind() == DeclInfo::FunctionKind;
840 if (ThisDeclInfo->getKind() == DeclInfo::VariableKind) {
862 return ThisDeclInfo->getTemplateKind() != DeclInfo::NotTemplate;
    [all...]
Comment.cpp 129 void DeclInfo::fill() {
Decl.cpp     [all...]
ASTContext.cpp 422 comments::DeclInfo *ThisDeclInfo = new (*this) comments::DeclInfo;
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 427 if (DD->DeclInfo) {
429 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
434 DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
695 DD->DeclInfo = Info;
    [all...]

Completed in 215 milliseconds