Lines Matching defs:Nullary
472 // Implements a polymorphic action that can be used in a nullary
1100 int Nullary() { return 1; }
1119 int Nullary() const { return value_; }
1128 Action<int(int)> a = InvokeWithoutArgs(Nullary); // NOLINT
1132 Action<int(int, double)> a2 = InvokeWithoutArgs(Nullary); // NOLINT
1164 InvokeWithoutArgs(&foo, &Foo::Nullary);