Searched refs:propE (Results 1 – 4 of 4) sorted by relevance
24 const ObjCPropertyRefExpr *propE = cast<ObjCPropertyRefExpr>(MsgOrPropE); in getType() local27 return propE->getType(); in getType()34 const ObjCPropertyRefExpr *propE = cast<ObjCPropertyRefExpr>(MsgOrPropE); in getSelector() local36 return propE->getSetterSelector(); in getSelector()37 return propE->getGetterSelector(); in getSelector()46 const ObjCPropertyRefExpr *propE = cast<ObjCPropertyRefExpr>(MsgOrPropE); in getMethodFamily() local49 if (propE->isImplicitProperty()) { in getMethodFamily()51 return propE->getImplicitPropertySetter()->getMethodFamily(); in getMethodFamily()53 return propE->getImplicitPropertyGetter()->getMethodFamily(); in getMethodFamily()57 const ObjCPropertyDecl *prop = propE->getExplicitProperty(); in getMethodFamily()[all …]
83 const ObjCPropertyRefExpr *propE = cast<ObjCPropertyRefExpr>(MsgOrPropE); in getInstanceReceiver() local84 if (propE->isObjectReceiver()) in getInstanceReceiver()85 return propE->getBase(); in getInstanceReceiver()93 const ObjCPropertyRefExpr *propE = cast<ObjCPropertyRefExpr>(MsgOrPropE); in isInstanceMessage() local95 return propE->isObjectReceiver() || propE->isSuperReceiver(); in isInstanceMessage()152 ObjCPropertyGetter(const ObjCPropertyRefExpr *propE, const Expr *originE) in ObjCPropertyGetter() argument153 : ObjCMessage(propE, originE, false, SVal()) { in ObjCPropertyGetter()154 assert(propE && originE && in ObjCPropertyGetter()161 ObjCPropertySetter(const ObjCPropertyRefExpr *propE, const Expr *storeE, in ObjCPropertySetter() argument163 : ObjCMessage(propE, storeE, true, argV) { in ObjCPropertySetter()[all …]
164 if (ObjCPropertyRefExpr *propE = dyn_cast<ObjCPropertyRefExpr>(E)) in isDelegateMessage() local165 return propE->getGetterSelector() == DelegateSel; in isDelegateMessage()
72 propE = iface->prop_end(); propI != propE; ++propI) { in doTransform() local