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;363 .WillOnce(WithArg<0>(Invoke(&InvokeHelper::StaticVoidFromString))); in TEST()
65 using testing::WithArg;455 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT in TEST()844 .WillByDefault(WithArg<1>(InvokeArgument<0>())); 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…
1809 internal::WithArgsAction<typename std::decay<InnerAction>::type, k> WithArg(
2536 * `WithArg<N>(action)` (no `s` after `Arg`) when the inner `action` takes2553 a `double`, `WithArg<4>(my_action)` will work.