Lines Matching refs:NarrowingConversionsCheck
28 NarrowingConversionsCheck::NarrowingConversionsCheck(StringRef Name, in NarrowingConversionsCheck() function in clang::tidy::cppcoreguidelines::NarrowingConversionsCheck
43 void NarrowingConversionsCheck::storeOptions( in storeOptions()
66 void NarrowingConversionsCheck::registerMatchers(MatchFinder *Finder) { in registerMatchers()
303 bool NarrowingConversionsCheck::isWarningInhibitedByEquivalentSize( in isWarningInhibitedByEquivalentSize()
318 void NarrowingConversionsCheck::diagNarrowType(SourceLocation SourceLoc, in diagNarrowType()
325 void NarrowingConversionsCheck::diagNarrowTypeToSignedInt( in diagNarrowTypeToSignedInt()
332 void NarrowingConversionsCheck::diagNarrowIntegerConstant( in diagNarrowIntegerConstant()
341 void NarrowingConversionsCheck::diagNarrowIntegerConstantToSignedInt( in diagNarrowIntegerConstantToSignedInt()
350 void NarrowingConversionsCheck::diagNarrowConstant(SourceLocation SourceLoc, in diagNarrowConstant()
357 void NarrowingConversionsCheck::diagConstantCast(SourceLocation SourceLoc, in diagConstantCast()
364 void NarrowingConversionsCheck::diagNarrowTypeOrConstant( in diagNarrowTypeOrConstant()
375 void NarrowingConversionsCheck::handleIntegralCast(const ASTContext &Context, in handleIntegralCast()
412 void NarrowingConversionsCheck::handleIntegralToBoolean( in handleIntegralToBoolean()
422 void NarrowingConversionsCheck::handleIntegralToFloating( in handleIntegralToFloating()
442 void NarrowingConversionsCheck::handleFloatingToIntegral( in handleFloatingToIntegral()
463 void NarrowingConversionsCheck::handleFloatingToBoolean( in handleFloatingToBoolean()
469 void NarrowingConversionsCheck::handleBooleanToSignedIntegral( in handleBooleanToSignedIntegral()
479 void NarrowingConversionsCheck::handleFloatingCast(const ASTContext &Context, in handleFloatingCast()
505 void NarrowingConversionsCheck::handleBinaryOperator(const ASTContext &Context, in handleBinaryOperator()
531 bool NarrowingConversionsCheck::handleConditionalOperator( in handleConditionalOperator()
546 void NarrowingConversionsCheck::handleImplicitCast( in handleImplicitCast()
577 void NarrowingConversionsCheck::handleBinaryOperator(const ASTContext &Context, in handleBinaryOperator()
590 void NarrowingConversionsCheck::check(const MatchFinder::MatchResult &Result) { in check()