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

Declarations

tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h
  158   void addMatcher(const TypeLocMatcher &NodeMatch,

References

tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
 1071     addMatcher(NodeMatch.convertTo<TypeLoc>(), Action);
tools/clang/tools/extra/clang-change-namespace/ChangeNamespace.cpp
  448   Finder->addMatcher(
tools/clang/tools/extra/clang-include-fixer/find-all-symbols/FindAllSymbols.cpp
  216   MatchFinder->addMatcher(
  222   MatchFinder->addMatcher(
  229   MatchFinder->addMatcher(
tools/clang/tools/extra/clang-move/Move.cpp
  604   Finder->addMatcher(
tools/clang/tools/extra/clang-tidy/google/IntegerTypesCheck.cpp
   66   Finder->addMatcher(typeLoc(loc(isInteger()),
tools/clang/tools/extra/clang-tidy/google/UpgradeGoogletestCaseCheck.cpp
  194   Finder->addMatcher(
tools/clang/tools/extra/clang-tidy/misc/UnusedUsingDeclsCheck.cpp
   56   Finder->addMatcher(loc(enumType(DeclMatcher)), this);
   57   Finder->addMatcher(loc(recordType(DeclMatcher)), this);
   58   Finder->addMatcher(loc(templateSpecializationType(DeclMatcher)), this);
   66   Finder->addMatcher(loc(templateSpecializationType(forEachTemplateArgument(
tools/clang/tools/extra/clang-tidy/modernize/AvoidCArraysCheck.cpp
   50   Finder->addMatcher(
tools/clang/tools/extra/clang-tidy/modernize/DeprecatedIosBaseAliasesCheck.cpp
   41   Finder->addMatcher(typeLoc(loc(IoStateType)).bind("TypeLoc"), this);
tools/clang/tools/extra/clang-tidy/modernize/ReplaceAutoPtrCheck.cpp
  102   Finder->addMatcher(typeLoc(loc(qualType(AutoPtrType,
tools/clang/tools/extra/clang-tidy/modernize/UseTransparentFunctorsCheck.cpp
   45   Finder->addMatcher(
tools/clang/tools/extra/clang-tidy/readability/IdentifierNamingCheck.cpp
  242   Finder->addMatcher(typeLoc().bind("typeLoc"), this);
tools/clang/unittests/AST/MatchVerifier.h
   85   Finder.addMatcher(AMatcher.bind(""), this);
tools/clang/unittests/ASTMatchers/ASTMatchersTest.h
   80   Finder.addMatcher(AMatcher, &VerifyFound);