reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaExpr.cpp
10506   QualType RHSType = RHS.get()->getType();
10511   ExprResult RHSStripped = RHS.get()->IgnoreParenImpCasts();
10537       S.InvalidOperands(Loc, LHS, RHS);
10551     RHS = S.ImpCastExprToType(RHS.get(), IntType, CK_IntegralCast);
10551     RHS = S.ImpCastExprToType(RHS.get(), IntType, CK_IntegralCast);
10557   QualType Type = S.UsualArithmeticConversions(LHS, RHS);
10558   if (LHS.isInvalid() || RHS.isInvalid())
10561     return S.InvalidOperands(Loc, LHS, RHS);
10566   HasNarrowing |= checkThreeWayNarrowingConversion(S, Type, RHS.get(), RHSType,
10567                                                    RHS.get()->getBeginLoc());