Home
last modified time | relevance | path

Searched refs:MatcherTuple (Results 1 – 13 of 13) sorted by relevance

/external/googletest/googlemock/include/gmock/internal/
Dgmock-generated-internal-utils.h69 struct MatcherTuple;
72 struct MatcherTuple< ::testing::tuple<> > {
77 struct MatcherTuple< ::testing::tuple<A1> > {
82 struct MatcherTuple< ::testing::tuple<A1, A2> > {
87 struct MatcherTuple< ::testing::tuple<A1, A2, A3> > {
92 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4> > {
98 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4, A5> > {
105 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4, A5, A6> > {
112 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4, A5, A6, A7> > {
119 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4, A5, A6, A7, A8> > {
[all …]
Dgmock-generated-internal-utils.h.pump67 // MatcherTuple<T>::type is a tuple type where each field is a Matcher
70 struct MatcherTuple;
80 struct MatcherTuple< ::testing::tuple<$As> > {
106 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
125 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
/external/v8/testing/gmock/include/gmock/internal/
Dgmock-generated-internal-utils.h69 struct MatcherTuple;
72 struct MatcherTuple< ::testing::tuple<> > {
77 struct MatcherTuple< ::testing::tuple<A1> > {
82 struct MatcherTuple< ::testing::tuple<A1, A2> > {
87 struct MatcherTuple< ::testing::tuple<A1, A2, A3> > {
92 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4> > {
98 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4, A5> > {
105 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4, A5, A6> > {
112 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4, A5, A6, A7> > {
119 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4, A5, A6, A7, A8> > {
[all …]
Dgmock-generated-internal-utils.h.pump67 // MatcherTuple<T>::type is a tuple type where each field is a Matcher
70 struct MatcherTuple;
80 struct MatcherTuple< ::testing::tuple<$As> > {
106 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
125 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
/external/google-breakpad/src/testing/include/gmock/internal/
Dgmock-generated-internal-utils.h69 struct MatcherTuple;
72 struct MatcherTuple< ::std::tr1::tuple<> > {
77 struct MatcherTuple< ::std::tr1::tuple<A1> > {
82 struct MatcherTuple< ::std::tr1::tuple<A1, A2> > {
87 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3> > {
92 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4> > {
98 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5> > {
105 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5, A6> > {
112 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7> > {
119 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8> > {
[all …]
Dgmock-generated-internal-utils.h.pump67 // MatcherTuple<T>::type is a tuple type where each field is a Matcher
70 struct MatcherTuple;
80 struct MatcherTuple< ::std::tr1::tuple<$As> > {
106 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
125 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
/external/v8/testing/gmock/test/
Dgmock-generated-internal-utils_test.cc45 using ::testing::internal::MatcherTuple;
52 CompileAssertTypesEqual<tuple<>, MatcherTuple<tuple<> >::type>(); in TEST()
57 MatcherTuple<tuple<int> >::type>(); in TEST()
62 MatcherTuple<tuple<int, char> >::type>(); in TEST()
68 MatcherTuple<tuple<int, char, bool, double, char*> in TEST()
/external/google-breakpad/src/testing/test/
Dgmock-generated-internal-utils_test.cc45 using ::testing::internal::MatcherTuple;
52 CompileAssertTypesEqual<tuple<>, MatcherTuple<tuple<> >::type>(); in TEST()
57 MatcherTuple<tuple<int> >::type>(); in TEST()
62 MatcherTuple<tuple<int, char> >::type>(); in TEST()
68 MatcherTuple<tuple<int, char, bool, double, char*> in TEST()
/external/googletest/googlemock/test/
Dgmock-generated-internal-utils_test.cc45 using ::testing::internal::MatcherTuple;
52 CompileAssertTypesEqual<tuple<>, MatcherTuple<tuple<> >::type>(); in TEST()
57 MatcherTuple<tuple<int> >::type>(); in TEST()
62 MatcherTuple<tuple<int, char> >::type>(); in TEST()
68 MatcherTuple<tuple<int, char, bool, double, char*> in TEST()
/external/v8/testing/gmock/include/gmock/
Dgmock-matchers.h731 template <typename MatcherTuple, typename ValueTuple>
732 static bool Matches(const MatcherTuple& matcher_tuple, in Matches()
742 template <typename MatcherTuple, typename ValueTuple>
743 static void ExplainMatchFailuresTo(const MatcherTuple& matchers, in ExplainMatchFailuresTo()
751 typename tuple_element<N - 1, MatcherTuple>::type matcher = in ExplainMatchFailuresTo()
778 template <typename MatcherTuple, typename ValueTuple>
779 static bool Matches(const MatcherTuple& /* matcher_tuple */, in Matches() argument
784 template <typename MatcherTuple, typename ValueTuple>
785 static void ExplainMatchFailuresTo(const MatcherTuple& /* matchers */, in ExplainMatchFailuresTo() argument
795 template <typename MatcherTuple, typename ValueTuple>
[all …]
/external/googletest/googlemock/include/gmock/
Dgmock-matchers.h731 template <typename MatcherTuple, typename ValueTuple>
732 static bool Matches(const MatcherTuple& matcher_tuple, in Matches()
742 template <typename MatcherTuple, typename ValueTuple>
743 static void ExplainMatchFailuresTo(const MatcherTuple& matchers, in ExplainMatchFailuresTo()
751 typename tuple_element<N - 1, MatcherTuple>::type matcher = in ExplainMatchFailuresTo()
778 template <typename MatcherTuple, typename ValueTuple>
779 static bool Matches(const MatcherTuple& /* matcher_tuple */, in Matches() argument
784 template <typename MatcherTuple, typename ValueTuple>
785 static void ExplainMatchFailuresTo(const MatcherTuple& /* matchers */, in ExplainMatchFailuresTo() argument
795 template <typename MatcherTuple, typename ValueTuple>
[all …]
/external/google-breakpad/src/testing/include/gmock/
Dgmock-matchers.h618 template <typename MatcherTuple, typename ValueTuple>
619 static bool Matches(const MatcherTuple& matcher_tuple, in Matches()
630 template <typename MatcherTuple, typename ValueTuple>
631 static void ExplainMatchFailuresTo(const MatcherTuple& matchers, in ExplainMatchFailuresTo()
642 typename tuple_element<N - 1, MatcherTuple>::type matcher = in ExplainMatchFailuresTo()
669 template <typename MatcherTuple, typename ValueTuple>
670 static bool Matches(const MatcherTuple& /* matcher_tuple */, in Matches() argument
675 template <typename MatcherTuple, typename ValueTuple>
676 static void ExplainMatchFailuresTo(const MatcherTuple& /* matchers */, in ExplainMatchFailuresTo() argument
686 template <typename MatcherTuple, typename ValueTuple>
[all …]
/external/fmtlib/test/gmock/
Dgmock.h295 struct MatcherTuple;
298 struct MatcherTuple< ::std::tr1::tuple<> > {
303 struct MatcherTuple< ::std::tr1::tuple<A1> > {
308 struct MatcherTuple< ::std::tr1::tuple<A1, A2> > {
313 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3> > {
318 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4> > {
324 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5> > {
331 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5, A6> > {
338 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7> > {
345 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8> > {
[all …]