Lines Matching refs:Invoke
69 using ::testing::Invoke;
785 .WillRepeatedly(DoAll(Invoke(VoidFunc), in TEST()
1041 Action<void()> a = IgnoreResult(Invoke(ReturnOne)); in TEST()
1056 IgnoreResult(Invoke(ReturnMyNonDefaultConstructible)); // NOLINT in TEST()
1085 Action<bool(double x, int n)> a = WithArgs<1>(Invoke(Unary)); // NOLINT in TEST()
1093 WithArgs<0, 2>(Invoke(Binary)); in TEST()
1109 WithArgs<0, 1, 2, 3, 2, 1, 0, 1, 2, 3>(Invoke(ConcatAll{})); in TEST()
1134 WithArgs<0, 1, 2>(Invoke(Ternary)); in TEST()
1141 WithArgs<1, 1, 1, 1>(Invoke(SumOf4)); in TEST()
1148 WithArgs<1, 0>(Invoke(Binary)); in TEST()
1156 WithArgs<0, 1, 3>(Invoke(Ternary)); in TEST()
1163 Action<void(double x, char c, int n)> a = WithArgs<2, 1>(Invoke(VoidBinary)); in TEST()
1395 EXPECT_CALL(mock, MakeUnique()).WillRepeatedly(Invoke(UniquePtrSource)); in TEST()
1397 .WillRepeatedly(Invoke(VectorUniquePtrSource)); in TEST()