Home | History | Annotate | Download | only in Sema

Lines Matching refs:LHSType

4093   QualType LHSType = LHS.get()->getType();
4095 if (const PointerType *Ptr = LHSType->getAs<PointerType>())
4096 LHSType = Ptr->getPointeeType();
4099 << OpSpelling << 1 << LHSType
4105 if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
4107 if (RequireCompleteType(Loc, LHSType, diag::err_bad_memptr_lhs,
4112 if (!IsDerivedFrom(LHSType, Class)) {
4119 if (CheckDerivedToBaseConversion(LHSType, Class, Loc,
4145 Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers());