Home | History | Annotate | Download | only in Sema

Lines Matching defs:LHSType

3832   QualType LHSType = LHS.get()->getType();
3834 if (const PointerType *Ptr = LHSType->getAs<PointerType>())
3835 LHSType = Ptr->getPointeeType();
3838 << OpSpelling << 1 << LHSType
3844 if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
3846 if (RequireCompleteType(Loc, LHSType, diag::err_bad_memptr_lhs,
3854 if (!IsDerivedFrom(LHSType, Class, Paths) ||
3883 Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers());