Home
last modified time | relevance | path

Searched refs:ReturnArg (Results 1 – 8 of 8) sorted by relevance

/external/google-breakpad/src/testing/test/
Dgmock-more-actions_test.cc60 using testing::ReturnArg;
485 const Action<int(int)> a = ReturnArg<0>(); in TEST()
490 const Action<bool(bool, bool, bool)> a = ReturnArg<0>(); in TEST()
495 const Action<string(int, int, string, int)> a = ReturnArg<2>(); in TEST()
/external/googletest/googlemock/test/
Dgmock-more-actions_test.cc55 using testing::ReturnArg;
487 const Action<int(int)> a = ReturnArg<0>(); in TEST()
492 const Action<bool(bool, bool, bool)> a = ReturnArg<0>(); in TEST()
497 const Action<std::string(int, int, std::string, int)> a = ReturnArg<2>(); in TEST()
/external/googletest/googlemock/include/gmock/
Dgmock-more-actions.h77 ACTION_TEMPLATE(ReturnArg, in ACTION_TEMPLATE() argument
/external/google-breakpad/src/testing/include/gmock/
Dgmock-more-actions.h144 ACTION_TEMPLATE(ReturnArg, in ACTION_TEMPLATE() argument
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-more-actions.h161 ACTION_TEMPLATE(ReturnArg, in ACTION_TEMPLATE() argument
/external/google-breakpad/src/testing/
DCHANGES65 * New feature: actions ReturnArg<k>(), ReturnNew<T>(...), and
/external/libbrillo/brillo/streams/
Dfile_stream_unittest.cc28 using testing::ReturnArg;
406 .WillRepeatedly(ReturnArg<1>()); in TEST_F()
542 .WillRepeatedly(ReturnArg<1>()); in TEST_F()
/external/googletest/googlemock/docs/
DCheatSheet.md383 |`ReturnArg<N>()`|Return the `N`-th (0-based) argument.|