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

References

tools/clang/tools/extra/clang-tidy/readability/IdentifierNamingCheck.cpp
  237   Finder->addMatcher(namedDecl().bind("decl"), this);
  238   Finder->addMatcher(usingDecl().bind("using"), this);
  239   Finder->addMatcher(declRefExpr().bind("declRef"), this);
  240   Finder->addMatcher(cxxConstructorDecl().bind("classRef"), this);
  241   Finder->addMatcher(cxxDestructorDecl().bind("classRef"), this);
  242   Finder->addMatcher(typeLoc().bind("typeLoc"), this);
  243   Finder->addMatcher(nestedNameSpecifierLoc().bind("nestedNameLoc"), this);