Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaExprMember.cpp112 if (dyn_cast<FieldDecl>(D) || dyn_cast<MSPropertyDecl>(D) in ClassifyImplicitMemberAccess()
841 MSPropertyDecl *PD, in BuildMSPropertyRefExpr()
1055 if (MSPropertyDecl *PD = dyn_cast<MSPropertyDecl>(MemberDecl)) in BuildMemberReferenceExpr()
DSemaTemplateInstantiateDecl.cpp473 Decl *TemplateDeclInstantiator::VisitMSPropertyDecl(MSPropertyDecl *D) { in VisitMSPropertyDecl()
502 MSPropertyDecl *Property = new (SemaRef.Context) in VisitMSPropertyDecl()
503 MSPropertyDecl(Owner, D->getLocation(), in VisitMSPropertyDecl()
DSemaDeclCXX.cpp12741 MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record, in HandleMSProperty()
12805 MSPropertyDecl *NewPD; in HandleMSProperty()
12807 NewPD = new (Context) MSPropertyDecl(Record, Loc, in HandleMSProperty()
DTreeTransform.h6215 MSPropertyDecl *PD = cast_or_null<MSPropertyDecl>( in TransformMSPropertyRefExpr()
DSemaExpr.cpp2117 isa<MSPropertyDecl>(R.getFoundDecl()); in ActOnIdExpression()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/
DDeclCXX.h3083 class MSPropertyDecl : public DeclaratorDecl {
3087 MSPropertyDecl(DeclContext *DC, SourceLocation L, in MSPropertyDecl() function
3094 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()
DRecursiveASTVisitor.h1726 DEF_TRAVERSE_DECL(MSPropertyDecl, {
/freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/
DDecl.cpp1454 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D) || isa<MSPropertyDecl>(D)) in isCXXInstanceMember()
3571 MSPropertyDecl *MSPropertyDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
3573 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(MSPropertyDecl)); in CreateDeserialized()
3574 return new (Mem) MSPropertyDecl(0, SourceLocation(), DeclarationName(), in CreateDeserialized()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Serialization/
DASTReaderDecl.cpp260 void VisitMSPropertyDecl(MSPropertyDecl *FD);
939 void ASTDeclReader::VisitMSPropertyDecl(MSPropertyDecl *PD) { in VisitMSPropertyDecl()
2552 D = MSPropertyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
DASTWriterDecl.cpp87 void VisitMSPropertyDecl(MSPropertyDecl *D);
680 void ASTDeclWriter::VisitMSPropertyDecl(MSPropertyDecl *D) { in VisitMSPropertyDecl()
DASTReaderStmt.cpp1614 E->TheDecl = ReadDeclAs<MSPropertyDecl>(Record, Idx); in VisitMSPropertyRefExpr()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Sema/
DSema.h1695 MSPropertyDecl *HandleMSProperty(Scope *S, RecordDecl *TagD,