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

Declarations

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 2314     cStyleCastExpr;

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  148   REGISTER_MATCHER(cStyleCastExpr);
tools/clang/lib/StaticAnalyzer/Checkers/OSObjectCStyleCast.cpp
   74   auto CastM = cStyleCastExpr(
tools/clang/tools/extra/clang-tidy/abseil/DurationConversionCastCheck.cpp
   29           cStyleCastExpr(hasSourceExpression(CallMatcher)).bind("cast_expr"),
tools/clang/tools/extra/clang-tidy/abseil/DurationDivisionCheck.cpp
   34           unless(hasParent(cStyleCastExpr())),
tools/clang/tools/extra/clang-tidy/abseil/DurationFactoryFloatCheck.cpp
   35                                     cStyleCastExpr(hasDestinationType(
tools/clang/tools/extra/clang-tidy/abseil/DurationRewriter.cpp
  193                            cStyleCastExpr(
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/ProTypeCstyleCastCheck.cpp
   37       cStyleCastExpr(unless(isInTemplateInstantiation())).bind("cast"), this);
tools/clang/tools/extra/clang-tidy/google/AvoidCStyleCastsCheck.cpp
   25       cStyleCastExpr(
tools/clang/tools/extra/clang-tidy/misc/StaticAssertCheck.cpp
   42       IsAlwaysFalse, cStyleCastExpr(has(ignoringParenImpCasts(IsAlwaysFalse)))
tools/clang/tools/extra/clang-tidy/modernize/RedundantVoidArgCheck.cpp
   65       cStyleCastExpr(CastDestinationIsFunction).bind(CStyleCastId), this);
tools/clang/unittests/AST/ASTImporterTest.cpp
  751           cStyleCastExpr(hasSourceExpression(vaArgExpr())))));
  793           cStyleCastExpr(has(cxxDependentScopeMemberExpr())))));
  803           cStyleCastExpr(has(cxxDependentScopeMemberExpr())))));
 2948                  has(cStyleCastExpr(has(dependentScopeDeclRefExpr())))))))));
tools/clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
 1009   EXPECT_TRUE(matches("int i = (int) 2.2f;", cStyleCastExpr()));
 1019                          cStyleCastExpr()));