Searched refs:ActionInterface (Results 1 - 5 of 5) sorted by relevance

/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-actions.h56 // 1. a class FooAction that implements the ActionInterface interface, and
327 class ActionInterface { class in namespace:testing
332 ActionInterface() {} function in class:testing::ActionInterface
333 virtual ~ActionInterface() {}
342 GTEST_DISALLOW_COPY_AND_ASSIGN_(ActionInterface);
348 // linked_ptr to const ActionInterface<T>, so copying is fairly cheap.
351 // You can view an object implementing ActionInterface<F> as a
366 explicit Action(ActionInterface<F>* impl) : impl_(impl) {}
382 // the corresponding method in ActionInterface is not. The reason
402 internal::linked_ptr<ActionInterface<
[all...]
H A Dgmock-generated-actions.h470 class Impl : public ActionInterface<F> {
858 // a new action, you should also consider implementing ActionInterface
1252 class gmock_Impl : public ::testing::ActionInterface<F> {\
1313 class gmock_Impl : public ::testing::ActionInterface<F> {\
1359 class gmock_Impl : public ::testing::ActionInterface<F> {\
1410 class gmock_Impl : public ::testing::ActionInterface<F> {\
1465 class gmock_Impl : public ::testing::ActionInterface<F> {\
1525 class gmock_Impl : public ::testing::ActionInterface<F> {\
1593 class gmock_Impl : public ::testing::ActionInterface<F> {\
1663 class gmock_Impl : public ::testing::ActionInterface<
[all...]
/gem5/ext/googletest/googlemock/test/
H A Dgmock-actions_test.cc50 using testing::ActionInterface;
369 // Tests that ActionInterface can be implemented by defining the
374 class MyActionImpl : public ActionInterface<MyGlobalFunction> {
398 // ActionInterface<F>.
403 // Tests that Action<F> delegates actual work to ActionInterface<F>.
438 class IsNotZero : public ActionInterface<bool(int)> { // NOLINT
H A Dgmock-generated-actions_test.cc55 using testing::ActionInterface;
369 class SubstractAction : public ActionInterface<int(int, int)> { // NOLINT
H A Dgmock-more-actions_test.cc56 using testing::ActionInterface;

Completed in 30 milliseconds