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

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  288   REGISTER_MATCHER(hasMethod);
tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
   70       hasMethod(cxxConstructorDecl(isMoveConstructor(), unless(isDeleted()))),
   71       hasMethod(cxxMethodDecl(isMoveAssignmentOperator(), unless(isDeleted()))),
   72       unless(anyOf(hasMethod(cxxConstructorDecl(isCopyConstructor(),
   74                    hasMethod(cxxMethodDecl(isCopyAssignmentOperator(),
tools/clang/tools/extra/clang-tidy/bugprone/SizeofContainerCheck.cpp
   26                         hasMethod(cxxMethodDecl(hasName("size"), isPublic(),
tools/clang/tools/extra/clang-tidy/google/UpgradeGoogletestCaseCheck.cpp
  150                                         hasMethod(hasName("SetUpTestSuite")))))
  157                                         hasMethod(hasName("test_suite_name")))))
  164                                   hasMethod(hasName("OnTestSuiteStart")))))
  173                                   hasMethod(hasName("current_test_suite")))))
  248                     hasMethod(cxxMethodDecl(hasName(ReplacementMethod)))),
tools/clang/tools/extra/clang-tidy/misc/NonPrivateMemberVariablesInClassesCheck.cpp
   26   return hasMethod(unless(anyOf(isStaticStorageClass(), isImplicit())))
tools/clang/tools/extra/clang-tidy/modernize/LoopConvertCheck.cpp
  168           recordType(hasDeclaration(cxxRecordDecl(hasMethod(cxxMethodDecl(
  252               hasMethod(cxxMethodDecl(hasName("begin"), isConst())),
  253               hasMethod(cxxMethodDecl(hasName("end"),
  258                    cxxRecordDecl(hasMethod(hasName("begin")),
  259                                  hasMethod(hasName("end"))))))) // qualType
tools/clang/tools/extra/clang-tidy/modernize/UseEqualsDeleteCheck.cpp
   46                        hasParent(cxxRecordDecl(hasMethod(unless(
tools/clang/unittests/AST/ASTImporterTest.cpp
  557           hasMethod(
  604               classTemplateDecl(hasTemplateDecl(cxxRecordDecl(hasMethod(allOf(
tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.cpp
  770     cxxRecordDecl(hasMethod(hasOverloadedOperatorName("*")));
tools/clang/unittests/ASTMatchers/ASTMatchersTraversalTest.cpp
   23                       cxxRecordDecl(hasMethod(hasName("func")))));
   25                          cxxRecordDecl(hasMethod(isPublic()))));
 2008     cxxRecordDecl(decl().bind("x"), hasMethod(hasName("g"))),