Home
last modified time | relevance | path

Searched refs:MakePolymorphicAction (Results 1 – 22 of 22) sorted by relevance

/external/google-breakpad/src/testing/include/gmock/
Dgmock-actions.h400 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) { in MakePolymorphicAction() function
949 return MakePolymorphicAction(internal::ReturnNullAction()); in ReturnNull()
954 return MakePolymorphicAction(internal::ReturnVoidAction()); in Return()
983 return MakePolymorphicAction(internal::SetArgumentPointeeAction< in SetArgPointee()
995 return MakePolymorphicAction(internal::SetArgumentPointeeAction< in SetArgPointee()
1003 return MakePolymorphicAction(internal::SetArgumentPointeeAction< in SetArgPointee()
1014 return MakePolymorphicAction(internal::SetArgumentPointeeAction< in SetArgumentPointee()
1021 return MakePolymorphicAction(internal::AssignAction<T1, T2>(ptr, val)); in Assign()
1030 return MakePolymorphicAction( in SetErrnoAndReturn()
1042 return MakePolymorphicAction( in InvokeWithoutArgs()
[all …]
Dgmock-more-actions.h99 return MakePolymorphicAction( in Invoke()
108 return MakePolymorphicAction( in Invoke()
Dgmock-generated-actions.h.pump402 // or using MakePolymorphicAction() instead, especially if you need to
/external/googletest/googlemock/include/gmock/
Dgmock-actions.h475 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) {
1067 return MakePolymorphicAction(internal::ReturnNullAction());
1072 return MakePolymorphicAction(internal::ReturnVoidAction());
1110 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1122 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1130 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1141 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1148 return MakePolymorphicAction(internal::AssignAction<T1, T2>(ptr, val));
1157 return MakePolymorphicAction(
1169 return MakePolymorphicAction(
[all …]
Dgmock-more-actions.h116 return MakePolymorphicAction( in Invoke()
125 return MakePolymorphicAction( in Invoke()
Dgmock-generated-actions.h.pump341 // or using MakePolymorphicAction() instead, especially if you need to
/external/v8/testing/gmock/include/gmock/
Dgmock-actions.h475 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) {
1067 return MakePolymorphicAction(internal::ReturnNullAction());
1072 return MakePolymorphicAction(internal::ReturnVoidAction());
1110 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1122 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1130 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1141 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1148 return MakePolymorphicAction(internal::AssignAction<T1, T2>(ptr, val));
1157 return MakePolymorphicAction(
1169 return MakePolymorphicAction(
[all …]
Dgmock-more-actions.h116 return MakePolymorphicAction( in Invoke()
125 return MakePolymorphicAction( in Invoke()
Dgmock-generated-actions.h.pump341 // or using MakePolymorphicAction() instead, especially if you need to
/external/googletest/googlemock/docs/
DDesignDoc.md28 The latter two problems can be overcome using `MakePolymorphicAction()`,
41 return MakePolymorphicAction(IncrementArg1Action());
215 `MakePolymorphicAction()`), especially if you need to use the defined
DFrequentlyAskedQuestions.md478 [MakePolymorphicAction()](CookBook.md#writing_new_polymorphic_actions),
589 `Return(value)`), `MakePolymorphicAction()` is
DCookBook.md3589 it's _polymorphic_. The `MakePolymorphicAction()` function template
3596 PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl);
3625 Next, we use `MakePolymorphicAction()` to turn an instance of the
3630 using ::testing::MakePolymorphicAction;
3634 return MakePolymorphicAction(ReturnSecondArgumentAction());
/external/google-breakpad/src/testing/test/
Dgmock-actions_test.cc65 using testing::MakePolymorphicAction;
445 return MakePolymorphicAction(ReturnSecondArgumentAction()); in ReturnSecondArgument()
450 return MakePolymorphicAction(ReturnZeroFromNullaryFunctionAction()); in ReturnZeroFromNullaryFunction()
/external/googletest/googlemock/test/
Dgmock-actions_test.cc59 using testing::MakePolymorphicAction;
491 return MakePolymorphicAction(ReturnSecondArgumentAction()); in ReturnSecondArgument()
496 return MakePolymorphicAction(ReturnZeroFromNullaryFunctionAction()); in ReturnZeroFromNullaryFunction()
/external/v8/testing/gmock/test/
Dgmock-actions_test.cc59 using testing::MakePolymorphicAction;
491 return MakePolymorphicAction(ReturnSecondArgumentAction()); in ReturnSecondArgument()
496 return MakePolymorphicAction(ReturnZeroFromNullaryFunctionAction()); in ReturnZeroFromNullaryFunction()
/external/googletest/googlemock/docs/v1_5/
DFrequentlyAskedQuestions.md474 [MakePolymorphicAction()](V1_5_CookBook#Writing_New_Polymorphic_Actions.md),
585 `Return(value)`), `MakePolymorphicAction()` is
DCookBook.md3105 it's _polymorphic_. The `MakePolymorphicAction()` function template
3112 PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl);
3141 Next, we use `MakePolymorphicAction()` to turn an instance of the
3146 using ::testing::MakePolymorphicAction;
3150 return MakePolymorphicAction(ReturnSecondArgumentAction());
/external/googletest/googlemock/docs/v1_6/
DFrequentlyAskedQuestions.md478 [MakePolymorphicAction()](http://code.google.com/p/googlemock/wiki/V1_6_CookBook#Writing_New_Polymo…
589 `Return(value)`), `MakePolymorphicAction()` is
DCookBook.md3256 it's _polymorphic_. The `MakePolymorphicAction()` function template
3263 PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl);
3292 Next, we use `MakePolymorphicAction()` to turn an instance of the
3297 using ::testing::MakePolymorphicAction;
3301 return MakePolymorphicAction(ReturnSecondArgumentAction());
/external/googletest/googlemock/docs/v1_7/
DFrequentlyAskedQuestions.md478 [MakePolymorphicAction()](http://code.google.com/p/googlemock/wiki/V1_7_CookBook#Writing_New_Polymo…
589 `Return(value)`), `MakePolymorphicAction()` is
DCookBook.md3346 it's _polymorphic_. The `MakePolymorphicAction()` function template
3353 PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl);
3382 Next, we use `MakePolymorphicAction()` to turn an instance of the
3387 using ::testing::MakePolymorphicAction;
3391 return MakePolymorphicAction(ReturnSecondArgumentAction());
/external/fmtlib/test/gmock/
Dgmock.h1309 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) {
1858 return MakePolymorphicAction(internal::ReturnNullAction());
1863 return MakePolymorphicAction(internal::ReturnVoidAction());
1892 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1904 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1912 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1923 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1930 return MakePolymorphicAction(internal::AssignAction<T1, T2>(ptr, val));
1939 return MakePolymorphicAction(
1951 return MakePolymorphicAction(
[all …]