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

References

tools/clang/tools/extra/clang-tidy/bugprone/ArgumentCommentCheck.cpp
  189   if (looksLikeExpectMethod(Method)) {
  190     const DeclContext *Ctx = Method->getDeclContext();
  194       if (D->getNextDeclInContext() == Method) {
  196         return areMockAndExpectMethods(Previous, Method) ? Previous : nullptr;
  202           dyn_cast_or_null<CXXMethodDecl>(Method->getNextDeclInContext())) {
  203     if (looksLikeExpectMethod(Next) && areMockAndExpectMethods(Method, Next))
  204       return Method;