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

Declarations

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 5964 extern const AstTypeMatcher<DecayedType> decayedType;

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  195   REGISTER_MATCHER(decayedType);
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/ProBoundsPointerArithmeticCheck.cpp
   48                     hasType(decayedType(hasDecayedType(pointerType())))))))
tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.cpp
 2198   EXPECT_TRUE(matches("void f(int i[]);", valueDecl(hasType(decayedType(hasDecayedType(pointerType()))))));
 2199   EXPECT_TRUE(notMatches("int i[7];", decayedType()));