Home
last modified time | relevance | path

Searched refs:Tuple3 (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-misc_test.cc907 typedef std::tuple<char, int, int> Tuple3; in TEST() typedef
908 const Matcher<Tuple3> m = Args<1, 2>(Lt()); in TEST()
909 EXPECT_TRUE(m.Matches(Tuple3('a', 1, 2))); in TEST()
910 EXPECT_FALSE(m.Matches(Tuple3('b', 2, 2))); in TEST()
914 typedef std::tuple<char, char, int> Tuple3; in TEST() typedef
915 const Matcher<const Tuple3&> m = Args<0, 1>(Lt()); in TEST()
916 EXPECT_TRUE(m.Matches(Tuple3('a', 'b', 2))); in TEST()
917 EXPECT_FALSE(m.Matches(Tuple3('b', 'b', 2))); in TEST()
/freebsd/contrib/llvm-project/clang/include/clang/Support/
H A DRISCVVIntrinsicUtils.h69 Tuple3, enumerator
/freebsd/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp814 case VectorTypeModifier::Tuple3: in applyModifier()