Lines Matching refs:Invoke

58 using testing::Invoke;
204 Action<int()> a = Invoke(Nullary); // NOLINT in TEST()
210 Action<bool(int)> a = Invoke(Unary); // NOLINT in TEST()
217 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT in TEST()
224 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT in TEST()
230 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT in TEST()
236 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT in TEST()
242 Action<int(int, int, int, int, int, int)> a = Invoke(SumOf6); // NOLINT in TEST()
255 a = Invoke(Concat7); in TEST()
266 a = Invoke(Concat8); in TEST()
278 a = Invoke(Concat9); in TEST()
290 a = Invoke(Concat10); in TEST()
300 Action<int(int, int, double, const std::string&)> a1 = Invoke(SumOfFirst2); in TEST()
305 Action<int(int, int, bool, int*)> a2 = Invoke(SumOfFirst2); in TEST()
313 Action<int(std::string, bool, int, int)> a1 = Invoke(&foo, &Foo::SumOfLast2); in TEST()
316 Action<int(char, double, int, int)> a2 = Invoke(&foo, &Foo::SumOfLast2); in TEST()
322 Action<long(long, int)> a = Invoke(plus<long>()); // NOLINT in TEST()
328 Action<long(int, short, char, bool)> a = Invoke(SumOf4); // NOLINT in TEST()
337 Action<int()> a = Invoke(&foo, &Foo::Nullary); // NOLINT in TEST()
344 Action<short(long)> a = Invoke(&foo, &Foo::Unary); // NOLINT in TEST()
351 Action<std::string(const std::string&, char)> a = Invoke(&foo, &Foo::Binary); in TEST()
360 Action<int(int, bool, char)> a = Invoke(&foo, &Foo::Ternary); // NOLINT in TEST()
367 Action<int(int, int, int, int)> a = Invoke(&foo, &Foo::SumOf4); // NOLINT in TEST()
375 Invoke(&foo, &Foo::SumOf5); // NOLINT in TEST()
383 Invoke(&foo, &Foo::SumOf6); in TEST()
393 a = Invoke(&foo, &Foo::Concat7); in TEST()
405 a = Invoke(&foo, &Foo::Concat8); in TEST()
418 a = Invoke(&foo, &Foo::Concat9); in TEST()
431 a = Invoke(&foo, &Foo::Concat10); in TEST()
443 Invoke(&foo, &Foo::SumOf4); in TEST()
449 Action<int(int n)> a = WithoutArgs(Invoke(Nullary)); // NOLINT in TEST()
455 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT in TEST()