Lines Matching refs:PropE
43 static const NamedDecl *getBestPropertyDecl(const ObjCPropertyRefExpr *PropE) { in getBestPropertyDecl() argument
44 if (PropE->isExplicitProperty()) in getBestPropertyDecl()
45 return PropE->getExplicitProperty(); in getBestPropertyDecl()
47 return PropE->getImplicitPropertyGetter(); in getBestPropertyDecl()
97 const ObjCPropertyRefExpr *PropE) in WeakObjectProfileTy() argument
98 : Base(nullptr, true), Property(getBestPropertyDecl(PropE)) { in WeakObjectProfileTy()
100 if (PropE->isObjectReceiver()) { in WeakObjectProfileTy()
101 const OpaqueValueExpr *OVE = cast<OpaqueValueExpr>(PropE->getBase()); in WeakObjectProfileTy()
104 } else if (PropE->isClassReceiver()) { in WeakObjectProfileTy()
105 Base.setPointer(PropE->getClassReceiver()); in WeakObjectProfileTy()
107 assert(PropE->isSuperReceiver()); in WeakObjectProfileTy()