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

References

tools/clang/tools/extra/clang-tidy/cppcoreguidelines/NarrowingConversionsCheck.cpp
  355   assert(!Lhs.isInstantiationDependent() && !Rhs.isInstantiationDependent() &&
  358   const BuiltinType *RhsType = getBuiltinType(Rhs);
  362     return handleBooleanToSignedIntegral(Context, SourceLoc, Lhs, Rhs);
  364     return handleIntegralToBoolean(Context, SourceLoc, Lhs, Rhs);
  366     return handleIntegralToFloating(Context, SourceLoc, Lhs, Rhs);
  368     return handleIntegralCast(Context, SourceLoc, Lhs, Rhs);
  370     return handleFloatingToBoolean(Context, SourceLoc, Lhs, Rhs);
  372     return handleFloatingToIntegral(Context, SourceLoc, Lhs, Rhs);
  374     return handleFloatingCast(Context, SourceLoc, Lhs, Rhs);