Searched refs:InvokeWithoutArgs (Results 1 - 4 of 4) sorted by relevance

/gem5/ext/googletest/googlemock/test/
H A Dgmock-actions_test.cc58 using testing::InvokeWithoutArgs;
1125 // Tests InvokeWithoutArgs(function).
1128 Action<int(int)> a = InvokeWithoutArgs(Nullary); // NOLINT
1132 Action<int(int, double)> a2 = InvokeWithoutArgs(Nullary); // NOLINT
1136 Action<void(int)> a3 = InvokeWithoutArgs(VoidNullary); // NOLINT
1142 // Tests InvokeWithoutArgs(functor).
1145 Action<int()> a = InvokeWithoutArgs(NullaryFunctor()); // NOLINT
1150 InvokeWithoutArgs(NullaryFunctor());
1154 Action<void()> a3 = InvokeWithoutArgs(VoidNullaryFunctor());
1160 // Tests InvokeWithoutArgs(obj_pt
[all...]
H A Dgmock_link_test.h52 // InvokeWithoutArgs(function)
53 // InvokeWithoutArgs(object, method)
149 using testing::InvokeWithoutArgs;
330 // Tests the linkage of the InvokeWithoutArgs action.
336 .WillOnce(InvokeWithoutArgs(&InvokeHelper::StaticVoidFromVoid))
337 .WillOnce(InvokeWithoutArgs(&test_invoke_helper,
H A Dgmock-spec-builders_test.cc83 using testing::InvokeWithoutArgs;
2611 .WillByDefault(IgnoreResult(InvokeWithoutArgs(&c,
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-actions.h845 // Implements the InvokeWithoutArgs(f) action. The template argument
847 // function pointer or a functor. InvokeWithoutArgs(f) can be used as an
858 // Allows InvokeWithoutArgs(f) to be used as any action whose type is
869 // Implements the InvokeWithoutArgs(object_ptr, &Class::Method) action.
1163 // Various overloads for InvokeWithoutArgs().
1168 InvokeWithoutArgs(FunctionImpl function_impl) { function in namespace:testing
1177 InvokeWithoutArgs(Class* obj_ptr, MethodPtr method_ptr) { function in namespace:testing

Completed in 23 milliseconds