Home | History | Annotate | Download | only in Sema

Lines Matching refs:LTy

4391   QualType LTy = LHS.get()->getType();
4393 bool LVoid = LTy->isVoidType();
4418 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
4429 if (!Context.hasSameType(LTy, RTy) &&
4430 (LTy->isRecordType() || RTy->isRecordType())) {
4442 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
4452 LTy = LHS.get()->getType();
4466 if (!Context.hasSameType(LTy, RTy) &&
4467 Context.hasSameUnqualifiedType(LTy, RTy) &&
4472 Qualifiers LCVR = Qualifiers::fromCVRMask(LTy.getCVRQualifiers());
4476 LTy = LHS.get()->getType();
4479 RHS = ImpCastExprToType(RHS.get(), LTy, CK_NoOp, RVK);
4491 bool Same = Context.hasSameType(LTy, RTy);
4499 return LTy;
4505 if (!Same && (LTy->isRecordType() || RTy->isRecordType())) {
4520 LTy = LHS.get()->getType();
4529 if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy)) {
4530 if (LTy->isRecordType()) {
4532 if (RequireNonAbstractType(QuestionLoc, LTy,
4535 InitializedEntity Entity = InitializedEntity::InitializeTemporary(LTy);
4553 return LTy;
4557 if (LTy->isVectorType() || RTy->isVectorType())
4563 if (LTy->isArithmeticType() && RTy->isArithmeticType()) {
4590 << LTy << RTy << Composite