Home
last modified time | relevance | path

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

/external/llvm-project/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-more-actions.h224 ACTION_P(ReturnPointee, pointer) { return *pointer; } in ACTION_P() argument
/external/googletest/googlemock/test/
Dgmock-more-actions_test.cc59 using testing::ReturnPointee;
682 const Action<int()> a = ReturnPointee(&n); in TEST()
/external/googletest/docs/
Dgmock_cheat_sheet.md242 | `ReturnPointee(ptr)` | Return the value pointed to by `ptr`. |
Dgmock_cook_book.md1886 action is *executed*.). Use either `ReturnRef()` or `ReturnPointee()` for this
1928 `ReturnPointee(pointer)` was provided to solve this problem specifically. It
1932 using testing::ReturnPointee;
1937 .WillRepeatedly(ReturnPointee(&x)); // Note the & here.
2120 ACTION_P(ReturnPointee, p) { return *p; }
2124 .WillRepeatedly(ReturnPointee(&previous_value));
/external/googletest/googlemock/include/gmock/
Dgmock-actions.h1452 internal::ReturnPointeeAction<Ptr> ReturnPointee(Ptr pointer) {
/external/webrtc/media/engine/
Dwebrtc_voice_engine_unittest.cc46 using ::testing::ReturnPointee;
156 EXPECT_CALL(*apm, GetConfig()).WillRepeatedly(ReturnPointee(&apm_config)); in TEST()
200 .WillRepeatedly(ReturnPointee(&apm_config_)); in WebRtcVoiceEngineTestFake()
/external/fmtlib/test/gmock/
Dgmock.h14096 ACTION_P(ReturnPointee, pointer) { return *pointer; }
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/test/gmock-1.8.0/gmock/
Dgmock.h14870 ACTION_P(ReturnPointee, pointer) { return *pointer; }