Searched refs:MSPropertyDecl (Results 1 – 18 of 18) sorted by relevance
/external/clang/tools/libclang/ |
D | IndexingContext.h | 19 class MSPropertyDecl; variable 401 bool handleMSProperty(const MSPropertyDecl *D);
|
D | IndexDecl.cpp | 111 bool VisitMSPropertyDecl(const MSPropertyDecl *D) { in VisitMSPropertyDecl()
|
D | IndexingContext.cpp | 400 bool IndexingContext::handleMSProperty(const MSPropertyDecl *D) { in handleMSProperty()
|
/external/clang/lib/AST/ |
D | DeclCXX.cpp | 2126 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()
|
D | Decl.cpp | 1517 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D) || isa<MSPropertyDecl>(D)) in isCXXInstanceMember()
|
/external/clang/lib/Sema/ |
D | SemaExprMember.cpp | 112 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()
|
D | SemaTemplateInstantiateDecl.cpp | 521 Decl *TemplateDeclInstantiator::VisitMSPropertyDecl(MSPropertyDecl *D) { in VisitMSPropertyDecl() 550 MSPropertyDecl *Property = MSPropertyDecl::Create( in VisitMSPropertyDecl()
|
D | SemaDeclCXX.cpp | 13060 MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record, in HandleMSProperty() 13125 MSPropertyDecl *NewPD = MSPropertyDecl::Create( in HandleMSProperty()
|
D | TreeTransform.h | 6315 MSPropertyDecl *PD = cast_or_null<MSPropertyDecl>( in TransformMSPropertyRefExpr()
|
D | SemaExpr.cpp | 2176 isa<MSPropertyDecl>(R.getFoundDecl()); in ActOnIdExpression()
|
/external/clang/include/clang/AST/ |
D | DeclCXX.h | 3159 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);
|
D | ExprCXX.h | 33 class MSPropertyDecl; variable 616 MSPropertyDecl *TheDecl; 622 MSPropertyRefExpr(Expr *baseExpr, MSPropertyDecl *decl, bool isArrow, in MSPropertyRefExpr() 660 MSPropertyDecl *getPropertyDecl() const { return TheDecl; } in getPropertyDecl()
|
D | DataRecursiveASTVisitor.h | 1671 DEF_TRAVERSE_DECL(MSPropertyDecl, { TRY_TO(TraverseDeclaratorHelper(D)); })
|
D | RecursiveASTVisitor.h | 1713 DEF_TRAVERSE_DECL(MSPropertyDecl, { TRY_TO(TraverseDeclaratorHelper(D)); })
|
/external/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 87 void VisitMSPropertyDecl(MSPropertyDecl *D); 694 void ASTDeclWriter::VisitMSPropertyDecl(MSPropertyDecl *D) { in VisitMSPropertyDecl()
|
D | ASTReaderDecl.cpp | 274 void VisitMSPropertyDecl(MSPropertyDecl *FD); 966 void ASTDeclReader::VisitMSPropertyDecl(MSPropertyDecl *PD) { in VisitMSPropertyDecl() 2788 D = MSPropertyDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
D | ASTReaderStmt.cpp | 1596 E->TheDecl = ReadDeclAs<MSPropertyDecl>(Record, Idx); in VisitMSPropertyRefExpr()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 1813 MSPropertyDecl *HandleMSProperty(Scope *S, RecordDecl *TagD,
|