Home | History | Annotate | Download | only in Sema

Lines Matching refs:LTy

5129   QualType LTy = LHS.get()->getType();
5131 bool LVoid = LTy->isVoidType();
5156 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
5167 if (!Context.hasSameType(LTy, RTy) &&
5168 (LTy->isRecordType() || RTy->isRecordType())) {
5180 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
5190 LTy = LHS.get()->getType();
5204 if (!Context.hasSameType(LTy, RTy) &&
5205 Context.hasSameUnqualifiedType(LTy, RTy) &&
5210 Qualifiers LCVR = Qualifiers::fromCVRMask(LTy.getCVRQualifiers());
5214 LTy = LHS.get()->getType();
5217 RHS = ImpCastExprToType(RHS.get(), LTy, CK_NoOp, RVK);
5229 bool Same = Context.hasSameType(LTy, RTy);
5237 return LTy;
5243 if (!Same && (LTy->isRecordType() || RTy->isRecordType())) {
5258 LTy = LHS.get()->getType();
5267 if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy)) {
5268 if (LTy->isRecordType()) {
5270 if (RequireNonAbstractType(QuestionLoc, LTy,
5273 InitializedEntity Entity = InitializedEntity::InitializeTemporary(LTy);
5291 return LTy;
5295 if (LTy->isVectorType() || RTy->isVectorType())
5303 if (LTy->isArithmeticType() && RTy->isArithmeticType()) {
5309 diag::err_typecheck_cond_incompatible_operands) << LTy << RTy
5340 << LTy << RTy << Composite