Home
last modified time | relevance | path

Searched refs:ReturnAction (Results 1 - 1 of 1) sorted by relevance

/third_party/googletest/googlemock/include/gmock/
H A Dgmock-actions.h914 // Helper struct to specialize ReturnAction to execute a move instead of a copy
924 class ReturnAction final {
926 explicit ReturnAction(R value) : value_(std::move(value)) {} in ReturnAction() function in testing::internal::final
992 // As above, but for the case where we're moving from the ReturnAction
1084 // A specialization of ReturnAction<R> when R is ByMoveWrapper<T> for some T.
1090 class ReturnAction<ByMoveWrapper<T>> final {
1092 explicit ReturnAction(ByMoveWrapper<T> wrapper) in ReturnAction() function in testing::internal::final
1848 internal::ReturnAction<R> Return(R value) {
1849 return internal::ReturnAction<R>(std::move(value));

Completed in 12 milliseconds