Lines Matching refs:InvokeWithoutArgs
64 using testing::InvokeWithoutArgs;
1095 // Tests InvokeWithoutArgs(function).
1098 Action<int(int)> a = InvokeWithoutArgs(Nullary); // NOLINT
1102 Action<int(int, double)> a2 = InvokeWithoutArgs(Nullary); // NOLINT
1106 Action<void(int)> a3 = InvokeWithoutArgs(VoidNullary); // NOLINT
1112 // Tests InvokeWithoutArgs(functor).
1115 Action<int()> a = InvokeWithoutArgs(NullaryFunctor()); // NOLINT
1120 InvokeWithoutArgs(NullaryFunctor());
1124 Action<void()> a3 = InvokeWithoutArgs(VoidNullaryFunctor());
1130 // Tests InvokeWithoutArgs(obj_ptr, method).
1134 InvokeWithoutArgs(&foo, &Foo::Nullary);