HomeSort by relevance Sort by last modified time
    Searched defs:ActionInterface (Results 1 - 3 of 3) sorted by null

  /external/google-breakpad/src/testing/include/gmock/
gmock-actions.h 52 // 1. a class FooAction that implements the ActionInterface interface, and
252 class ActionInterface {
257 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<F> > impl_
    [all...]
  /external/googletest/googlemock/include/gmock/
gmock-actions.h 56 // 1. a class FooAction that implements the ActionInterface interface, and
327 class ActionInterface {
332 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<F> > impl_
    [all...]
  /external/v8/testing/gmock/include/gmock/
gmock-actions.h 56 // 1. a class FooAction that implements the ActionInterface interface, and
327 class ActionInterface {
332 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<F> > impl_
    [all...]

Completed in 51 milliseconds