Lines Matching refs:PDecl
1103 ObjCProtocolDecl* PDecl = LookupProtocol(ProtocolId, ProtoIdLoc); in ParseObjCProtocolExpression() local
1104 if (!PDecl) { in ParseObjCProtocolExpression()
1113 return new (Context) ObjCProtocolExpr(Ty, PDecl, AtLoc, ProtoIdLoc, RParenLoc); in ParseObjCProtocolExpression()
1507 const ObjCPropertyDecl *PDecl = nullptr; in DiagnoseARCUseOfWeakReceiver() local
1519 PDecl = PRE->getExplicitProperty(); in DiagnoseARCUseOfWeakReceiver()
1520 if (PDecl) { in DiagnoseARCUseOfWeakReceiver()
1521 T = PDecl->getType(); in DiagnoseARCUseOfWeakReceiver()
1531 PDecl = Method->findPropertyDecl(); in DiagnoseARCUseOfWeakReceiver()
1532 if (PDecl) in DiagnoseARCUseOfWeakReceiver()
1533 T = PDecl->getType(); in DiagnoseARCUseOfWeakReceiver()
1538 if (!PDecl) in DiagnoseARCUseOfWeakReceiver()
1540 if (!(PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)) in DiagnoseARCUseOfWeakReceiver()
1545 << ((!PDecl && !GDecl) ? 0 : (PDecl ? 1 : 2)); in DiagnoseARCUseOfWeakReceiver()
1547 if (PDecl) in DiagnoseARCUseOfWeakReceiver()
1548 S.Diag(PDecl->getLocation(), diag::note_property_declare); in DiagnoseARCUseOfWeakReceiver()
3467 if (ObjCPropertyDecl *PDecl = PRE->getExplicitProperty()) in CheckObjCBridgeRelatedCast() local
3468 SrcType = PDecl->getType(); in CheckObjCBridgeRelatedCast()
3621 if (const ObjCPropertyDecl *PDecl = InstanceMethod->findPropertyDecl()) { in CheckObjCBridgeRelatedConversions() local
3624 ExpressionString += PDecl->getNameAsString(); in CheckObjCBridgeRelatedConversions()