Home | History | Annotate | Download | only in test

Lines Matching refs:tuple

296   std::tuple<> matchers;
297 std::tuple<> values;
303 std::tuple<Matcher<int> > matchers(Eq(1));
304 std::tuple<int> values1(1), values2(2);
311 std::tuple<Matcher<int>, Matcher<char> > matchers(Eq(1), Eq('a'));
312 std::tuple<int, char> values1(1, 'a'), values2(1, 'b'), values3(2, 'a'),
322 std::tuple<Matcher<int>, Matcher<char>, Matcher<bool>,
326 std::tuple<int, char, bool, long, std::string> // NOLINT
664 StlContainerView<std::tuple<const int*, size_t> >::type>();
667 StlContainerView<std::tuple<std::shared_ptr<double>, int> >::type>();
671 StlContainerView<std::tuple<const int*, int> >::const_reference>();
676 StlContainerView<std::tuple<const int*, int> >::ConstReference(
681 const NativeArray<int> a3 = StlContainerView<std::tuple<int*, size_t> >::Copy(
699 CompileAssertTypesEqual<std::tuple<>, F::ArgumentTuple>();
700 CompileAssertTypesEqual<std::tuple<>, F::ArgumentMatcherTuple>();
710 CompileAssertTypesEqual<std::tuple<bool>, F::ArgumentTuple>();
711 CompileAssertTypesEqual<std::tuple<Matcher<bool> >,
724 CompileAssertTypesEqual<std::tuple<bool, const long&>, // NOLINT
727 std::tuple<Matcher<bool>, Matcher<const long&> >, // NOLINT
744 std::tuple<bool, int, char*, int&, const long&>, // NOLINT
747 std::tuple<Matcher<bool>, Matcher<int>, Matcher<char*>, Matcher<int&>,