Lines Matching refs:Foo
149 class Foo { class
151 Foo() : value_(123) {} in Foo() function in testing::gmock_more_actions_test::Foo
312 Foo foo; 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()
336 Foo foo; in TEST()
337 Action<int()> a = Invoke(&foo, &Foo::Nullary); // NOLINT in TEST()
343 Foo foo; in TEST()
344 Action<short(long)> a = Invoke(&foo, &Foo::Unary); // NOLINT in TEST()
350 Foo foo; in TEST()
351 Action<std::string(const std::string&, char)> a = Invoke(&foo, &Foo::Binary); in TEST()
359 Foo foo; in TEST()
360 Action<int(int, bool, char)> a = Invoke(&foo, &Foo::Ternary); // NOLINT in TEST()
366 Foo foo; in TEST()
367 Action<int(int, int, int, int)> a = Invoke(&foo, &Foo::SumOf4); // NOLINT in TEST()
373 Foo foo; in TEST()
375 Invoke(&foo, &Foo::SumOf5); // NOLINT in TEST()
381 Foo foo; in TEST()
383 Invoke(&foo, &Foo::SumOf6); in TEST()
390 Foo foo; in TEST()
393 a = Invoke(&foo, &Foo::Concat7); in TEST()
402 Foo foo; in TEST()
405 a = Invoke(&foo, &Foo::Concat8); in TEST()
414 Foo foo; in TEST()
418 a = Invoke(&foo, &Foo::Concat9); in TEST()
427 Foo foo; in TEST()
431 a = Invoke(&foo, &Foo::Concat10); in TEST()
441 Foo foo; in TEST()
443 Invoke(&foo, &Foo::SumOf4); in TEST()