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

/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-actions_test.cc57 using testing::DoAll;
420 // Tests DoAll(a1, a2).
423 Action<int(int*)> a = DoAll(SetArgPointee<0>(1), // NOLINT
429 // Tests DoAll(a1, a2, a3).
432 Action<int(int*, int*)> a = DoAll(SetArgPointee<0>(1), // NOLINT
440 // Tests DoAll(a1, a2, a3, a4).
445 DoAll(SetArgPointee<0>(1),
455 // Tests DoAll(a1, a2, a3, a4, a5).
460 DoAll(SetArgPointee<0>(1),
472 // Tests DoAll(a
[all...]
H A Dgmock_link_test.h58 // DoAll
134 using testing::DoAll;
378 // Tests the linkage of the DoAll action.
384 .WillOnce(DoAll(SetArgPointee<0>('y'), Return()));
H A Dgmock-actions_test.cc741 .WillRepeatedly(DoAll(Invoke(VoidFunc),
1377 EXPECT_CALL(mock, MakeUnique()).WillOnce(DoAll(
H A Dgmock-spec-builders_test.cc74 using testing::DoAll;
1841 .WillOnce(DoAll(Delete(a), Return(Result())));
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-generated-actions.h696 DoAll(Action1 a1, Action2 a2) { function in namespace:testing
703 DoAll(Action1 a1, Action2 a2, Action3 a3) { function in namespace:testing
704 return DoAll(a1, DoAll(a2, a3));
711 DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4) { function in namespace:testing
712 return DoAll(a1, DoAll(a2, a3, a4));
720 DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5) { function in namespace:testing
721 return DoAll(a1, DoAll(a
729 DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6) { function in namespace:testing
739 DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6, function in namespace:testing
751 DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6, function in namespace:testing
764 DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6, function in namespace:testing
777 DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6, function in namespace:testing
[all...]

Completed in 34 milliseconds