Searched refs:WithArg (Results 1 – 7 of 7) sorted by relevance
46 bool isSizeof(const Expr *E, const Expr *WithArg) { in isSizeof() argument49 return sameDecl(UE->getArgumentExpr(), WithArg); in isSizeof()54 bool isStrlen(const Expr *E, const Expr *WithArg) { in isStrlen() argument60 sameDecl(CE->getArg(0), WithArg)); in isStrlen()
180 using testing::WithArg;362 .WillOnce(WithArg<0>(Invoke(&InvokeHelper::StaticVoidFromString))); in TEST()
65 using testing::WithArg;445 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT in TEST()
1596 EXPECT_CALL(mock, Call).WillOnce(WithArg<1>(SomeAction{})); in TEST()
103 | `WithArg<N>(a)` | Pass the `N`-th (0-based) argument of the mock function to actio…
1795 internal::WithArgsAction<typename std::decay<InnerAction>::type, k> WithArg(
2530 * `WithArg<N>(action)` (no `s` after `Arg`) when the inner `action` takes2547 a `double`, `WithArg<4>(my_action)` will work.