Home | History | Annotate | Download | only in Sema

Lines Matching refs:LHSType

3756   QualType LHSType = LHS.get()->getType();
3758 if (const PointerType *Ptr = LHSType->getAs<PointerType>())
3759 LHSType = Ptr->getPointeeType();
3762 << OpSpelling << 1 << LHSType
3768 if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
3770 if (RequireCompleteType(Loc, LHSType, PDiag(diag::err_bad_memptr_lhs)
3778 if (!IsDerivedFrom(LHSType, Class, Paths) ||
3807 Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers());