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

/gem5/ext/googletest/googlemock/scripts/
H A Dgmock_doctor.py169 gcc_regex = (r'In member function \'testing::internal::ReturnAction<R>.*\n'
176 r'\'testing::internal::ReturnAction<(?P<type>.*)>'
223 r'\'testing::internal::ReturnAction<R>::Impl<F>::value_\' '
230 r'\'testing::internal::ReturnAction<(?P<return_type>.*)>'
419 gcc_regex = ('instantiated from \'testing::internal::ReturnAction<R>'
429 r'\'testing::internal::ReturnAction<(int|long)>::operator '
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-actions.h501 // Helper struct to specialize ReturnAction to execute a move instead of a copy
534 class ReturnAction { class in namespace:testing::internal
536 // Constructs a ReturnAction object from the value to be returned.
539 explicit ReturnAction(R value) : value_(new R(internal::move(value))) {} function in class:testing::internal::ReturnAction
592 // Partially specialize for ByMoveWrapper. This version of ReturnAction will
619 GTEST_DISALLOW_ASSIGN_(ReturnAction);
1061 internal::ReturnAction<R> Return(R value) {
1062 return internal::ReturnAction<R>(internal::move(value));

Completed in 10 milliseconds