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

Declarations

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 1112     enumConstantDecl;

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  209   REGISTER_MATCHER(enumConstantDecl);
tools/clang/tools/extra/clang-change-namespace/ChangeNamespace.cpp
  523   auto UnscopedEnumMatcher = enumConstantDecl(hasParent(enumDecl(
tools/clang/tools/extra/clang-include-fixer/find-all-symbols/FindAllSymbols.cpp
  192   auto EnumConstants = enumConstantDecl(
tools/clang/tools/extra/clang-tidy/modernize/UseDefaultMemberInitCheck.cpp
  204             declRefExpr(to(enumConstantDecl())));
tools/clang/unittests/AST/ASTImporterODRStrategiesTest.cpp
   71   BindableMatcher<Decl> getPattern() { return enumConstantDecl(hasName("X")); }
tools/clang/unittests/AST/ASTImporterTest.cpp
 2907       enumDecl(has(enumConstantDecl(hasName("THING_VALUE"))),
 4741       ToTU, enumConstantDecl(hasName("A")));
tools/clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
  181   DeclarationMatcher Matcher = enumConstantDecl(hasName("A"));