Searched refs:SaveArg (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
H A D | CoroInstr.h | 525 enum { SaveArg, FinalArg }; enumerator 529 Value *Arg = getArgOperand(SaveArg); in getCoroSave()
|
/freebsd/contrib/googletest/docs/reference/ |
H A D | actions.md | 27 | `SaveArg<N>(pointer)` | Save the `N`-th (0-based) argument to `*pointer`. |
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-more-actions_test.cc | 61 using testing::SaveArg; 483 const Action<void(int n)> a1 = SaveArg<0>(&result); in TEST() 490 const Action<void(bool, char)> a1 = SaveArg<1>(&result); in TEST()
|
H A D | gmock-spec-builders_test.cc | 2524 ON_CALL(a, DoA).WillByDefault(SaveArg<0>(&do_a_arg0)); in TEST() 2526 ON_CALL(a, DoA(47)).WillByDefault(SaveArg<0>(&do_a_47_arg0)); in TEST()
|
/freebsd/contrib/googletest/docs/ |
H A D | gmock_cook_book.md | 1679 SaveArg actions to [save the values for later verification](#SaveArgVerify). If 1932 that returns a `bool`, but not `SaveArg`, which returns `void`. Otherwise the 1954 .WillOnce(DoAll(SaveArg<1>(&actual_array), SaveArg<2>(&actual_proto))); 2087 using ::testing::SaveArg; 2096 .WillRepeatedly(SaveArg<0>(&previous_value)); 2842 Many built-in actions (`WithArgs`, `WithoutArgs`,`DeleteArg`, `SaveArg`, ...)
|
/freebsd/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-actions.h | 2030 internal::SaveArgAction<k, Ptr> SaveArg(Ptr pointer) {
|