Home | History | Annotate | Download | only in AST

Lines Matching refs:ObjCPropertyDecl

83 ObjCPropertyDecl *
84 ObjCPropertyDecl::findPropertyDecl(const DeclContext *DC,
90 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(*I))
98 ObjCPropertyDecl *
101 if (ObjCPropertyDecl *PD =
102 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId))
112 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
122 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration(PropertyId))
129 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
143 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
158 ObjCPropertyDecl *
168 if (ObjCPropertyDecl *PD =
169 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId))
176 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
1274 // ObjCPropertyDecl
1277 void ObjCPropertyDecl::anchor() { }
1279 ObjCPropertyDecl *ObjCPropertyDecl::Create(ASTContext &C, DeclContext *DC,
1286 return new (C) ObjCPropertyDecl(DC, L, Id, AtLoc, LParenLoc, T);
1289 ObjCPropertyDecl *ObjCPropertyDecl::CreateDeserialized(ASTContext &C,
1291 void * Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCPropertyDecl));
1292 return new (Mem) ObjCPropertyDecl(0, SourceLocation(), 0, SourceLocation(),
1305 ObjCPropertyDecl *property,