Searched refs:ArgumentTuple (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-spec-builders.h | 283 typedef typename Function<F>::ArgumentTuple ArgumentTuple; typedef 295 extra_matcher_(A<const ArgumentTuple&>()) {} in OnCallSpec() 298 OnCallSpec& With(const Matcher<const ArgumentTuple&>& m) { in With() 323 bool Matches(const ArgumentTuple& args) const { in Matches() 350 Matcher<const ArgumentTuple&> extra_matcher_; 883 typedef typename Function<F>::ArgumentTuple ArgumentTuple; typedef 896 extra_matcher_(A<const ArgumentTuple&>()), in TypedExpectation() 910 TypedExpectation& With(const Matcher<const ArgumentTuple&>& m) { in With() 1076 const Matcher<const ArgumentTuple&>& extra_matcher() const { in extra_matcher() 1116 bool Matches(const ArgumentTuple& args) const in Matches() [all …]
|
H A D | gmock-actions.h | 707 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 716 virtual Result Perform(const ArgumentTuple& args) = 0; 755 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 793 Result Perform(ArgumentTuple args) const { 882 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 886 Result Perform(const ArgumentTuple& args) override { 1126 template <typename Result, typename ArgumentTuple> 1127 static Result Perform(const ArgumentTuple&) { 1136 template <typename Result, typename ArgumentTuple> 1137 static void Perform(const ArgumentTuple&) { [all …]
|
H A D | gmock-function-mocker.h | 170 __VA_ARGS__>::ArgumentTuple>::value == _N, \
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-internal-utils_test.cc | 663 EXPECT_TRUE((std::is_same<std::tuple<>, F::ArgumentTuple>::value)); in TEST() 674 EXPECT_TRUE((std::is_same<std::tuple<bool>, F::ArgumentTuple>::value)); in TEST() 689 F::ArgumentTuple>::value)); in TEST() 710 F::ArgumentTuple>::value)); in TEST()
|
H A D | gmock-actions_test.cc | 604 template <typename Result, typename ArgumentTuple> 605 Result Perform(const ArgumentTuple& args) { in Perform()
|
/freebsd/contrib/googletest/googlemock/include/gmock/internal/ |
H A D | gmock-internal-utils.h | 464 using ArgumentTuple = std::tuple<Args...>;
|
/freebsd/contrib/googletest/docs/ |
H A D | gmock_cook_book.md | 4197 // F, and ArgumentTuple is the tuple of arguments of F. 4201 // be int, and ArgumentTuple would be std::tuple<bool, const string&>. 4202 virtual Result Perform(const ArgumentTuple& args) = 0; 4260 template <typename Result, typename ArgumentTuple> 4261 Result Perform(const ArgumentTuple& args) const {
|