Lines Matching defs:foo
301 Foo foo;
302 Action<int(std::string, bool, int, int)> a1 = Invoke(&foo, &Foo::SumOfLast2);
305 Action<int(char, double, int, int)> a2 = Invoke(&foo, &Foo::SumOfLast2);
325 Foo foo;
326 Action<int()> a = Invoke(&foo, &Foo::Nullary); // NOLINT
332 Foo foo;
333 Action<short(long)> a = Invoke(&foo, &Foo::Unary); // NOLINT
339 Foo foo;
340 Action<std::string(const std::string&, char)> a = Invoke(&foo, &Foo::Binary);
348 Foo foo;
349 Action<int(int, bool, char)> a = Invoke(&foo, &Foo::Ternary); // NOLINT
355 Foo foo;
356 Action<int(int, int, int, int)> a = Invoke(&foo, &Foo::SumOf4); // NOLINT
362 Foo foo;
364 Invoke(&foo, &Foo::SumOf5); // NOLINT
370 Foo foo;
372 Invoke(&foo, &Foo::SumOf6);
379 Foo foo;
382 a = Invoke(&foo, &Foo::Concat7);
391 Foo foo;
394 a = Invoke(&foo, &Foo::Concat8);
403 Foo foo;
407 a = Invoke(&foo, &Foo::Concat9);
416 Foo foo;
420 a = Invoke(&foo, &Foo::Concat10);
430 Foo foo;
432 Invoke(&foo, &Foo::SumOf4);
1272 PadArgument(std::string("foo"), 'r');
1274 PadArgument("foo", static_cast<int>('r'));