Lines Matching refs:RHSTy

4936   QualType RHSTy = RHS.get()->getType();  in FindCompositeObjCPointerType()  local
4942 (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) { in FindCompositeObjCPointerType()
4947 if (RHSTy->isObjCClassType() && in FindCompositeObjCPointerType()
4949 LHS = SemaRef.ImpCastExprToType(LHS.get(), RHSTy, in FindCompositeObjCPointerType()
4951 return RHSTy; in FindCompositeObjCPointerType()
4955 (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) { in FindCompositeObjCPointerType()
4960 if (RHSTy->isObjCIdType() && in FindCompositeObjCPointerType()
4962 LHS = SemaRef.ImpCastExprToType(LHS.get(), RHSTy, in FindCompositeObjCPointerType()
4964 return RHSTy; in FindCompositeObjCPointerType()
4968 (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) { in FindCompositeObjCPointerType()
4972 if (Context.isObjCSelType(RHSTy) && in FindCompositeObjCPointerType()
4974 LHS = SemaRef.ImpCastExprToType(LHS.get(), RHSTy, CK_BitCast); in FindCompositeObjCPointerType()
4975 return RHSTy; in FindCompositeObjCPointerType()
4978 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { in FindCompositeObjCPointerType()
4980 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { in FindCompositeObjCPointerType()
4987 RHSTy->castAs<ObjCObjectPointerType>(); in FindCompositeObjCPointerType()
5007 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; in FindCompositeObjCPointerType()
5009 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; in FindCompositeObjCPointerType()
5019 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { in FindCompositeObjCPointerType()
5023 << LHSTy << RHSTy << LHS.get()->getSourceRange() in FindCompositeObjCPointerType()
5036 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { in FindCompositeObjCPointerType()
5041 << LHSTy << RHSTy << LHS.get()->getSourceRange() in FindCompositeObjCPointerType()
5047 QualType rhptee = RHSTy->castAs<ObjCObjectPointerType>()->getPointeeType(); in FindCompositeObjCPointerType()
5057 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { in FindCompositeObjCPointerType()
5062 << LHSTy << RHSTy << LHS.get()->getSourceRange() in FindCompositeObjCPointerType()
5068 QualType rhptee = RHSTy->castAs<PointerType>()->getPointeeType(); in FindCompositeObjCPointerType()