Home
last modified time | relevance | path

Searched refs:MSPropertyDecl (Results 1 – 18 of 18) sorted by relevance

/external/clang/tools/libclang/
DIndexingContext.h19 class MSPropertyDecl; variable
401 bool handleMSProperty(const MSPropertyDecl *D);
DIndexDecl.cpp111 bool VisitMSPropertyDecl(const MSPropertyDecl *D) { in VisitMSPropertyDecl()
DIndexingContext.cpp400 bool IndexingContext::handleMSProperty(const MSPropertyDecl *D) { in handleMSProperty()
/external/clang/lib/AST/
DDeclCXX.cpp2126 MSPropertyDecl *MSPropertyDecl::Create(ASTContext &C, DeclContext *DC, in Create()
2132 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter); in Create()
2135 MSPropertyDecl *MSPropertyDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
2137 return new (C, ID) MSPropertyDecl(nullptr, SourceLocation(), in CreateDeserialized()
DDecl.cpp1517 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D) || isa<MSPropertyDecl>(D)) in isCXXInstanceMember()
/external/clang/lib/Sema/
DSemaExprMember.cpp112 if (dyn_cast<FieldDecl>(D) || dyn_cast<MSPropertyDecl>(D) in ClassifyImplicitMemberAccess()
855 MSPropertyDecl *PD, in BuildMSPropertyRefExpr()
1064 if (MSPropertyDecl *PD = dyn_cast<MSPropertyDecl>(MemberDecl)) in BuildMemberReferenceExpr()
DSemaTemplateInstantiateDecl.cpp521 Decl *TemplateDeclInstantiator::VisitMSPropertyDecl(MSPropertyDecl *D) { in VisitMSPropertyDecl()
550 MSPropertyDecl *Property = MSPropertyDecl::Create( in VisitMSPropertyDecl()
DSemaDeclCXX.cpp13060 MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record, in HandleMSProperty()
13125 MSPropertyDecl *NewPD = MSPropertyDecl::Create( in HandleMSProperty()
DTreeTransform.h6315 MSPropertyDecl *PD = cast_or_null<MSPropertyDecl>( in TransformMSPropertyRefExpr()
DSemaExpr.cpp2176 isa<MSPropertyDecl>(R.getFoundDecl()); in ActOnIdExpression()
/external/clang/include/clang/AST/
DDeclCXX.h3159 class MSPropertyDecl : public DeclaratorDecl {
3162 MSPropertyDecl(DeclContext *DC, SourceLocation L, DeclarationName N, in MSPropertyDecl() function
3169 static MSPropertyDecl *Create(ASTContext &C, DeclContext *DC,
3173 static MSPropertyDecl *CreateDeserialized(ASTContext &C, unsigned ID);
DExprCXX.h33 class MSPropertyDecl; variable
616 MSPropertyDecl *TheDecl;
622 MSPropertyRefExpr(Expr *baseExpr, MSPropertyDecl *decl, bool isArrow, in MSPropertyRefExpr()
660 MSPropertyDecl *getPropertyDecl() const { return TheDecl; } in getPropertyDecl()
DDataRecursiveASTVisitor.h1671 DEF_TRAVERSE_DECL(MSPropertyDecl, { TRY_TO(TraverseDeclaratorHelper(D)); })
DRecursiveASTVisitor.h1713 DEF_TRAVERSE_DECL(MSPropertyDecl, { TRY_TO(TraverseDeclaratorHelper(D)); })
/external/clang/lib/Serialization/
DASTWriterDecl.cpp87 void VisitMSPropertyDecl(MSPropertyDecl *D);
694 void ASTDeclWriter::VisitMSPropertyDecl(MSPropertyDecl *D) { in VisitMSPropertyDecl()
DASTReaderDecl.cpp274 void VisitMSPropertyDecl(MSPropertyDecl *FD);
966 void ASTDeclReader::VisitMSPropertyDecl(MSPropertyDecl *PD) { in VisitMSPropertyDecl()
2788 D = MSPropertyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
DASTReaderStmt.cpp1596 E->TheDecl = ReadDeclAs<MSPropertyDecl>(Record, Idx); in VisitMSPropertyRefExpr()
/external/clang/include/clang/Sema/
DSema.h1813 MSPropertyDecl *HandleMSProperty(Scope *S, RecordDecl *TagD,