Home
last modified time | relevance | path

Searched refs:PolymorphicAction (Results 1 – 3 of 3) sorted by relevance

/external/chromium/testing/gmock/include/gmock/
Dgmock-actions.h350 class PolymorphicAction {
352 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {} in PolymorphicAction() function
380 GTEST_DISALLOW_ASSIGN_(PolymorphicAction);
398 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) { in MakePolymorphicAction()
399 return PolymorphicAction<Impl>(impl); in MakePolymorphicAction()
946 inline PolymorphicAction<internal::ReturnNullAction> ReturnNull() { in ReturnNull()
951 inline PolymorphicAction<internal::ReturnVoidAction> Return() { in Return()
977 PolymorphicAction<
990 PolymorphicAction<
998 PolymorphicAction<
[all …]
Dgmock-more-actions.h97 PolymorphicAction<internal::InvokeAction<FunctionImpl> > Invoke( in Invoke()
106 PolymorphicAction<internal::InvokeMethodAction<Class, MethodPtr> > Invoke( in Invoke()
/external/chromium/testing/gmock/test/
Dgmock-actions_test.cc67 using testing::PolymorphicAction;
444 PolymorphicAction<ReturnSecondArgumentAction> ReturnSecondArgument() { in ReturnSecondArgument()
448 PolymorphicAction<ReturnZeroFromNullaryFunctionAction>
1139 TEST(IgnoreResultTest, PolymorphicAction) { in TEST() argument