Home
last modified time | relevance | path

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

/llvm-project/clang-tools-extra/clang-tidy/bugprone/
H A DBoolPointerImplicitConversionCheck.cpp36 const ast_matchers::internal::Matcher<Expr> &RefMatcher, in checkImpl() argument
48 hasUnaryOperand(RefMatcher))), in checkImpl()
51 !match(findAll(arraySubscriptExpr(hasBase(RefMatcher))), *If, in checkImpl()
57 findAll(callExpr(hasAnyArgument(ignoringParenImpCasts(RefMatcher)))), in checkImpl()
61 findAll(cxxDeleteExpr(has(ignoringParenImpCasts(expr(RefMatcher))))), in checkImpl()
/llvm-project/third-party/unittest/googlemock/include/gmock/
H A Dgmock-matchers.h804 class RefMatcher;
807 class RefMatcher<T&> {
817 explicit RefMatcher(T& x) : object_(x) {} // NOLINT
4325 inline internal::RefMatcher<T&> Ref(T& x) { // NOLINT
4326 return internal::RefMatcher<T&>(x);