Lines Matching refs:Invoke
57 using testing::Invoke;
193 Action<int()> a = Invoke(Nullary); // NOLINT in TEST()
199 Action<bool(int)> a = Invoke(Unary); // NOLINT in TEST()
206 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT in TEST()
213 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT in TEST()
219 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT in TEST()
225 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT in TEST()
231 Action<int(int, int, int, int, int, int)> a = Invoke(SumOf6); // NOLINT in TEST()
244 a = Invoke(Concat7); in TEST()
255 a = Invoke(Concat8); in TEST()
267 a = Invoke(Concat9); in TEST()
279 a = Invoke(Concat10); in TEST()
289 Action<int(int, int, double, const std::string&)> a1 = Invoke(SumOfFirst2); in TEST()
295 Invoke(SumOfFirst2); in TEST()
303 Action<int(std::string, bool, int, int)> a1 = Invoke(&foo, &Foo::SumOfLast2); in TEST()
307 Invoke(&foo, &Foo::SumOfLast2); in TEST()
313 Action<long(long, int)> a = Invoke(plus<long>()); // NOLINT in TEST()
319 Action<long(int, short, char, bool)> a = Invoke(SumOf4); // NOLINT in TEST()
328 Action<int()> a = Invoke(&foo, &Foo::Nullary); // NOLINT in TEST()
335 Action<short(long)> a = Invoke(&foo, &Foo::Unary); // NOLINT in TEST()
342 Action<std::string(const std::string&, char)> a = Invoke(&foo, &Foo::Binary); in TEST()
351 Action<int(int, bool, char)> a = Invoke(&foo, &Foo::Ternary); // NOLINT in TEST()
358 Action<int(int, int, int, int)> a = Invoke(&foo, &Foo::SumOf4); // NOLINT in TEST()
365 Action<int(int, int, int, int, int)> a = Invoke(&foo, &Foo::SumOf5); // NOLINT in TEST()
373 Invoke(&foo, &Foo::SumOf6); in TEST()
383 a = Invoke(&foo, &Foo::Concat7); in TEST()
395 a = Invoke(&foo, &Foo::Concat8); in TEST()
408 a = Invoke(&foo, &Foo::Concat9); in TEST()
421 a = Invoke(&foo, &Foo::Concat10); in TEST()
433 Invoke(&foo, &Foo::SumOf4); in TEST()
439 Action<int(int n)> a = WithoutArgs(Invoke(Nullary)); // NOLINT in TEST()
445 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT in TEST()