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
  398   if (Lhs.isInstantiationDependent() || Rhs.isInstantiationDependent())
  400   if (handleConditionalOperator(Context, Lhs, Rhs))
  405     return handleBooleanToSignedIntegral(Context, SourceLoc, Lhs, Rhs);
  407     return handleIntegralToBoolean(Context, SourceLoc, Lhs, Rhs);
  409     return handleIntegralToFloating(Context, SourceLoc, Lhs, Rhs);
  411     return handleIntegralCast(Context, SourceLoc, Lhs, Rhs);
  413     return handleFloatingToBoolean(Context, SourceLoc, Lhs, Rhs);
  415     return handleFloatingToIntegral(Context, SourceLoc, Lhs, Rhs);
  417     return handleFloatingCast(Context, SourceLoc, Lhs, Rhs);