Lines Matching refs:PropE
62 static const NamedDecl *getBestPropertyDecl(const ObjCPropertyRefExpr *PropE) { in getBestPropertyDecl() argument
63 if (PropE->isExplicitProperty()) in getBestPropertyDecl()
64 return PropE->getExplicitProperty(); in getBestPropertyDecl()
66 return PropE->getImplicitPropertyGetter(); in getBestPropertyDecl()
118 const ObjCPropertyRefExpr *PropE) in WeakObjectProfileTy() argument
119 : Base(nullptr, true), Property(getBestPropertyDecl(PropE)) { in WeakObjectProfileTy()
121 if (PropE->isObjectReceiver()) { in WeakObjectProfileTy()
122 const OpaqueValueExpr *OVE = cast<OpaqueValueExpr>(PropE->getBase()); in WeakObjectProfileTy()
125 } else if (PropE->isClassReceiver()) { in WeakObjectProfileTy()
126 Base.setPointer(PropE->getClassReceiver()); in WeakObjectProfileTy()
128 assert(PropE->isSuperReceiver()); in WeakObjectProfileTy()