Lines Matching refs:Invoke
1033 .WillRepeatedly(DoAll(Invoke(VoidFunc), DoDefault()));
1185 // Sample functions and functors for testing Invoke() and etc.
1284 Action<void()> a = IgnoreResult(Invoke(ReturnOne));
1299 IgnoreResult(Invoke(ReturnMyNonDefaultConstructible)); // NOLINT
1481 Action<bool(double x, int n)> a = WithArgs<1>(Invoke(Unary)); // NOLINT
1489 WithArgs<0, 2>(Invoke(Binary));
1505 WithArgs<0, 1, 2, 3, 2, 1, 0, 1, 2, 3>(Invoke(ConcatAll{}));
1511 // Tests using WithArgs with an action that is not Invoke().
1530 WithArgs<0, 1, 2>(Invoke(Ternary));
1537 WithArgs<1, 1, 1, 1>(Invoke(SumOf4));
1544 WithArgs<1, 0>(Invoke(Binary));
1552 WithArgs<0, 1, 3>(Invoke(Ternary));
1559 Action<void(double x, char c, int n)> a = WithArgs<2, 1>(Invoke(VoidBinary));
1812 EXPECT_CALL(mock, MakeUnique()).WillRepeatedly(Invoke(UniquePtrSource));
1814 .WillRepeatedly(Invoke(VectorUniquePtrSource));
1836 // .WillRepeatedly(DoAll(Invoke([](std::unique_ptr<int> j) {}),