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

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  433   REGISTER_MATCHER(nullPointerConstant);
tools/clang/tools/extra/clang-tidy/cert/CommandProcessorCheck.cpp
   30                           hasArgument(0, nullPointerConstant()))))
tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.cpp
 2390                         "void *v1 = NULL;", expr(nullPointerConstant())));
 2391   EXPECT_TRUE(matches("void *v2 = nullptr;", expr(nullPointerConstant())));
 2392   EXPECT_TRUE(matches("void *v3 = __null;", expr(nullPointerConstant())));
 2393   EXPECT_TRUE(matches("char *cp = (char *)0;", expr(nullPointerConstant())));
 2394   EXPECT_TRUE(matches("int *ip = 0;", expr(nullPointerConstant())));
 2395   EXPECT_TRUE(matches("int i = 0;", expr(nullPointerConstant())));