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

  /external/chromium/testing/gmock/include/gmock/
gmock-actions.h 52 // 1. a class FooAction that implements the ActionInterface interface, and
250 class ActionInterface {
255 ActionInterface() {}
256 virtual ~ActionInterface() {}
265 GTEST_DISALLOW_COPY_AND_ASSIGN_(ActionInterface);
271 // linked_ptr to const ActionInterface<T>, so copying is fairly cheap.
274 // You can view an object implementing ActionInterface<F> as a
289 explicit Action(ActionInterface<F>* impl) : impl_(impl) {}
305 // the corresponding method in ActionInterface is not. The reason
325 internal::linked_ptr<ActionInterface<F> > impl_
    [all...]
gmock-generated-actions.h 598 class Impl : public ActionInterface<F> {
    [all...]
  /external/chromium/testing/gmock/test/
gmock-actions_test.cc 57 using testing::ActionInterface;
323 // Tests that ActionInterface can be implemented by defining the
328 class MyActionImpl : public ActionInterface<MyFunction> {
352 // ActionInterface<F>.
357 // Tests that Action<F> delegates actual work to ActionInterface<F>.
392 class IsNotZero : public ActionInterface<bool(int)> { // NOLINT
    [all...]
gmock-generated-actions_test.cc 55 using testing::ActionInterface;
369 class SubstractAction : public ActionInterface<int(int, int)> { // NOLINT
    [all...]
gmock-more-actions_test.cc 56 using testing::ActionInterface;

Completed in 150 milliseconds