Home | History | Annotate | Download | only in Sema

Lines Matching defs:RTy

4862   QualType RTy = RHS.get()->getType();
4864 bool RVoid = RTy->isVoidType();
4888 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
4899 if (!Context.hasSameType(LTy, RTy) &&
4900 (LTy->isRecordType() || RTy->isRecordType())) {
4912 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
4926 RTy = RHS.get()->getType();
4936 if (!Context.hasSameType(LTy, RTy) &&
4937 Context.hasSameUnqualifiedType(LTy, RTy) &&
4943 Qualifiers RCVR = Qualifiers::fromCVRMask(RTy.getCVRQualifiers());
4945 LHS = ImpCastExprToType(LHS.get(), RTy, CK_NoOp, LVK);
4950 RTy = RHS.get()->getType();
4961 bool Same = Context.hasSameType(LTy, RTy);
4975 if (!Same && (LTy->isRecordType() || RTy->isRecordType())) {
4991 RTy = RHS.get()->getType();
4999 if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy)) {
5027 if (LTy->isVectorType() || RTy->isVectorType())
5035 if (LTy->isArithmeticType() && RTy->isArithmeticType()) {
5066 << LTy << RTy << Composite