Home
last modified time | relevance | path

Searched refs:MakePolymorphicAction (Results 1 – 12 of 12) 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/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/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()
/external/googletest/googlemock/include/gmock/
Dgmock-actions.h475 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) {
1047 return MakePolymorphicAction(internal::ReturnNullAction());
1052 return MakePolymorphicAction(internal::ReturnVoidAction());
1090 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1098 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1106 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1116 return MakePolymorphicAction(internal::SetArgumentPointeeAction<
1123 return MakePolymorphicAction(internal::AssignAction<T1, T2>(ptr, val));
1132 return MakePolymorphicAction(
Dgmock-generated-actions.h.pump175 // 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());
217 `MakePolymorphicAction()`), especially if you need to use the defined
DFrequentlyAskedQuestions.md478 [MakePolymorphicAction()](CookBook.md#writing-new-polymorphic-actions),
589 `Return(value)`), `MakePolymorphicAction()` is
DCookBook.md3574 it's _polymorphic_. The `MakePolymorphicAction()` function template
3581 PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl);
3610 Next, we use `MakePolymorphicAction()` to turn an instance of the
3615 using ::testing::MakePolymorphicAction;
3619 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.cc69 using testing::MakePolymorphicAction;
491 return MakePolymorphicAction(ReturnSecondArgumentAction()); in ReturnSecondArgument()
496 return MakePolymorphicAction(ReturnZeroFromNullaryFunctionAction()); in ReturnZeroFromNullaryFunction()