Searched defs:BuildList (Results 1 - 3 of 3) sorted by relevance

/external/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h1563 // BuildList stores variadic type values in a nested pair structure.
1565 // MatcherList<3, int, string, float>::BuildList(5, "foo", 2.0) will return
1567 static ListType BuildList(const Head& matcher, const Tail&... tail) { function in struct:testing::internal::MatcherList
1568 return ListType(matcher, MatcherListTail::BuildList(tail...));
1572 // by BuildList()). CombiningMatcher<T> is used to combine the matchers of the
1590 static ListType BuildList(const Matcher1& matcher1, function in struct:testing::internal::MatcherList
1611 : matchers_(MatcherListType::BuildList(matchers...)) {}
/external/v8/testing/gmock/include/gmock/
H A Dgmock-matchers.h1563 // BuildList stores variadic type values in a nested pair structure.
1565 // MatcherList<3, int, string, float>::BuildList(5, "foo", 2.0) will return
1567 static ListType BuildList(const Head& matcher, const Tail&... tail) { function in struct:testing::internal::MatcherList
1568 return ListType(matcher, MatcherListTail::BuildList(tail...));
1572 // by BuildList()). CombiningMatcher<T> is used to combine the matchers of the
1590 static ListType BuildList(const Matcher1& matcher1, function in struct:testing::internal::MatcherList
1611 : matchers_(MatcherListType::BuildList(matchers...)) {}
/external/fmtlib/test/gmock/
H A Dgmock.h6144 // BuildList stores variadic type values in a nested pair structure.
6146 // MatcherList<3, int, string, float>::BuildList(5, "foo", 2.0) will return
6148 static ListType BuildList(const Head& matcher, const Tail&... tail) { function in struct:testing::internal::MatcherList
6149 return ListType(matcher, MatcherListTail::BuildList(tail...));
6153 // by BuildList()). CombiningMatcher<T> is used to combine the matchers of the
6171 static ListType BuildList(const Matcher1& matcher1, function in struct:testing::internal::MatcherList
6192 : matchers_(MatcherListType::BuildList(matchers...)) {}

Completed in 104 milliseconds