Searched defs:ActionInterface (Results 1 - 2 of 2) sorted by relevance

/external/gmock/include/gmock/
H A Dgmock-actions.h52 // 1. a class FooAction that implements the ActionInterface interface, and
252 class ActionInterface { class in namespace:testing
257 ActionInterface() {} function in class:testing::ActionInterface
258 virtual ~ActionInterface() {}
267 GTEST_DISALLOW_COPY_AND_ASSIGN_(ActionInterface);
273 // linked_ptr to const ActionInterface<T>, so copying is fairly cheap.
276 // You can view an object implementing ActionInterface<F> as a
291 explicit Action(ActionInterface<F>* impl) : impl_(impl) {}
307 // the corresponding method in ActionInterface is not. The reason
327 internal::linked_ptr<ActionInterface<
[all...]
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-actions.h52 // 1. a class FooAction that implements the ActionInterface interface, and
252 class ActionInterface { class in namespace:testing
257 ActionInterface() {} function in class:testing::ActionInterface
258 virtual ~ActionInterface() {}
267 GTEST_DISALLOW_COPY_AND_ASSIGN_(ActionInterface);
273 // linked_ptr to const ActionInterface<T>, so copying is fairly cheap.
276 // You can view an object implementing ActionInterface<F> as a
291 explicit Action(ActionInterface<F>* impl) : impl_(impl) {}
307 // the corresponding method in ActionInterface is not. The reason
327 internal::linked_ptr<ActionInterface<
[all...]

Completed in 333 milliseconds