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

  /external/chromium/testing/gmock/include/gmock/
gmock-actions.h 328 // The PolymorphicAction class template makes it easy to implement a
350 class PolymorphicAction {
352 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {}
380 GTEST_DISALLOW_ASSIGN_(PolymorphicAction);
391 // easier to use than the PolymorphicAction<Impl> constructor as it
396 // PolymorphicAction<TypeOfFoo>(foo);
398 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) {
399 return PolymorphicAction<Impl>(impl);
946 inline PolymorphicAction<internal::ReturnNullAction> ReturnNull() {
951 inline PolymorphicAction<internal::ReturnVoidAction> Return()
    [all...]
gmock-more-actions.h 97 PolymorphicAction<internal::InvokeAction<FunctionImpl> > Invoke(
106 PolymorphicAction<internal::InvokeMethodAction<Class, MethodPtr> > Invoke(
  /external/chromium/testing/gmock/test/
gmock-actions_test.cc 67 using testing::PolymorphicAction;
442 // PolymorphicAction<T> where T is the argument's type.
444 PolymorphicAction<ReturnSecondArgumentAction> ReturnSecondArgument() {
448 PolymorphicAction<ReturnZeroFromNullaryFunctionAction>
    [all...]

Completed in 284 milliseconds