Home | History | Annotate | Download | only in Sema

Lines Matching defs:LHSType

4239   QualType LHSType = LHS.get()->getType();
4241 if (const PointerType *Ptr = LHSType->getAs<PointerType>())
4242 LHSType = Ptr->getPointeeType();
4245 << OpSpelling << 1 << LHSType
4251 if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
4253 if (RequireCompleteType(Loc, LHSType, diag::err_bad_memptr_lhs,
4258 if (!IsDerivedFrom(LHSType, Class)) {
4265 if (CheckDerivedToBaseConversion(LHSType, Class, Loc,
4291 Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers());