Home
last modified time | relevance | path

Searched refs:RefMatcher (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DBoolPointerImplicitConversionCheck.cpp38 const ast_matchers::internal::Matcher<Expr> &RefMatcher, in checkImpl() argument
50 hasUnaryOperand(RefMatcher))), in checkImpl()
53 !match(findAll(arraySubscriptExpr(hasBase(RefMatcher))), *If, in checkImpl()
59 findAll(callExpr(hasAnyArgument(ignoringParenImpCasts(RefMatcher)))), in checkImpl()
63 findAll(cxxDeleteExpr(has(ignoringParenImpCasts(expr(RefMatcher))))), in checkImpl()
/llvm-project-15.0.7/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-matchers.h570 class RefMatcher;
573 class RefMatcher<T&> {
583 explicit RefMatcher(T& x) : object_(x) {} // NOLINT
627 GTEST_DISALLOW_ASSIGN_(RefMatcher);
3651 inline internal::RefMatcher<T&> Ref(T& x) { // NOLINT
3652 return internal::RefMatcher<T&>(x);