Lines Matching refs:tuple
291 std::tuple<> matchers;
292 std::tuple<> values;
298 std::tuple<Matcher<int>> matchers(Eq(1));
299 std::tuple<int> values1(1), values2(2);
306 std::tuple<Matcher<int>, Matcher<char>> matchers(Eq(1), Eq('a'));
307 std::tuple<int, char> values1(1, 'a'), values2(1, 'b'), values3(2, 'a'),
317 std::tuple<Matcher<int>, Matcher<char>, Matcher<bool>,
321 std::tuple<int, char, bool, long, std::string> // NOLINT
627 StlContainerView<std::tuple<const int*, size_t>>::type>();
630 StlContainerView<std::tuple<std::shared_ptr<double>, int>>::type>();
634 StlContainerView<std::tuple<const int*, int>>::const_reference>();
639 StlContainerView<std::tuple<const int*, int>>::ConstReference(
644 const NativeArray<int> a3 = StlContainerView<std::tuple<int*, size_t>>::Copy(
662 EXPECT_TRUE((std::is_same<std::tuple<>, F::ArgumentTuple>::value));
663 EXPECT_TRUE((std::is_same<std::tuple<>, F::ArgumentMatcherTuple>::value));
673 EXPECT_TRUE((std::is_same<std::tuple<bool>, F::ArgumentTuple>::value));
675 std::is_same<std::tuple<Matcher<bool>>, F::ArgumentMatcherTuple>::value));
687 EXPECT_TRUE((std::is_same<std::tuple<bool, const long&>, // NOLINT
690 (std::is_same<std::tuple<Matcher<bool>, Matcher<const long&>>, // NOLINT
708 (std::is_same<std::tuple<bool, int, char*, int&, const long&>, // NOLINT
712 std::tuple<Matcher<bool>, Matcher<int>, Matcher<char*>, Matcher<int&>,