Lines Matching refs:Matcher

56   const Matcher<int> m = Address(Eq(&n));  in TEST()
71 const Matcher<int> m = Address(Eq(&n)); in TEST()
82 const Matcher<std::unique_ptr<int>> m = Address(Eq(&n)); in TEST()
88 Matcher<int> matcher = Address(_); in TEST()
121 const Matcher<const NotCopyable&> m = Eq(ByRef(const_value1)); in TEST()
130 const Matcher<NotCopyable&> m = Ge(ByRef(value2)); in TEST()
156 Matcher<vector<int>> m = IsEmpty(); in TEST()
162 Matcher<vector<int>> m = IsEmpty(); in TEST()
227 const Matcher<TypeParam> m = ContainerEq(my_set); in TYPED_TEST()
238 const Matcher<TypeParam> m = ContainerEq(my_set); in TYPED_TEST()
250 const Matcher<const TypeParam&> m = ContainerEq(my_set); in TYPED_TEST()
261 const Matcher<TypeParam> m = ContainerEq(my_set); in TYPED_TEST()
275 const Matcher<const TypeParam&> m = ContainerEq(my_set); in TYPED_TEST()
289 const Matcher<vector<int>> m = ContainerEq(my_set); in TEST()
302 const Matcher<const list<size_t>&> m = ContainerEq(my_set); in TEST()
314 const Matcher<const list<size_t>> m = ContainerEq(my_set); in TEST()
329 const Matcher<vector<int>> m = ContainerEq(my_set); in TEST()
347 const Matcher<const map<int, std::string>&> m = ContainerEq(my_map); in TEST()
398 const Matcher<const std::string(&)[2][3]> m = ContainerEq(a2); in TEST()
651 std::make_tuple(Matcher<char>(Eq('a')), GreaterThan(5)), in TEST_P()
657 std::make_tuple(GreaterThan(5), Matcher<char>(Eq('a'))), in TEST_P()
668 std::make_tuple(GreaterThan(5), Matcher<char>(Eq('a'))), in TEST_P()
695 const Matcher<SampleOptional<int>> m = Optional(Eq(1)); in TEST()
700 const Matcher<SampleOptional<int>> m = Optional(Eq(1)); in TEST()
706 const Matcher<SampleOptional<int>> m1 = Optional(1); in TEST()
707 const Matcher<SampleOptional<int>> m2 = Optional(Eq(2)); in TEST()
708 const Matcher<SampleOptional<int>> m3 = Optional(Lt(3)); in TEST()
716 const Matcher<SampleOptional<int>> m = Optional(1); in TEST()
722 Matcher<SampleOptional<std::unique_ptr<int>>> m = Optional(Eq(nullptr)); in TEST()
751 const Matcher<SampleVariantIntString> m = VariantWith<int>(Eq(1)); in TEST()
757 const Matcher<SampleVariantIntString> m = VariantWith<int>(Eq(1)); in TEST()
767 Matcher<SampleVariantIntString> m = VariantWith<int>(Eq(1)); in TEST()
775 Matcher<SampleVariantIntString> m = VariantWith<int>(Eq(1)); in TEST()
783 Matcher<SampleVariantIntString> m = VariantWith<int>(Eq(1)); in TEST()
812 Matcher<SampleAnyType> m = AnyWith<int>(Eq(1)); in TEST()
817 Matcher<SampleAnyType> m = AnyWith<std::string>(Eq("fail")); in TEST()
842 const Matcher<const SampleAnyType&> m = AnyWith<int>(Eq(1)); in TEST()
848 const Matcher<const SampleAnyType&> m = AnyWith<int>(Eq(1)); in TEST()
908 const Matcher<Tuple3> m = Args<1, 2>(Lt()); in TEST()
915 const Matcher<const Tuple3&> m = Args<0, 1>(Lt()); in TEST()
933 const Matcher<std::tuple<int, bool, char>> m = Args<2, 0>(Lt()); in TEST()
941 const Matcher<const std::tuple<int, bool, char, int>&> m = in TEST()
950 const Matcher<std::tuple<int, char>> m = Args<1, 0>(Gt()); in TEST()
958 const Matcher<std::tuple<bool, int, int>> m = Args<1, 2>(Eq()); in TEST()
981 Matcher<std::tuple<char, int>> LessThan() { in LessThan()
986 const Matcher<std::tuple<char, int, int>> m = Args<0, 2>(LessThan()); in TEST()
1002 const Matcher<int> m = IsEven(); in TEST()
1046 const Matcher<int> m1 = IsEven2(); in TEST()
1050 const Matcher<int> m2 = EqSumOf(5, 9); in TEST()
1057 const Matcher<int> m1 = IsEven2(); in TEST()
1061 const Matcher<int> m2 = EqSumOf(1, 2); in TEST()
1080 const Matcher<::std::string> m1 = IsEmptyString(); in TEST()
1083 const Matcher<const ::std::string&> m2 = IsEmptyStringByRef(); in TEST()
1094 Matcher<int> m = matcher_test::IsOdd(); in TEST()
1115 const Matcher<int> m = IsGreaterThan32And(5); in TEST()
1129 const Matcher<int> m = _is_Greater_Than32and_(5); in TEST()
1155 const Matcher<const UncopyableFoo&> m = in TEST()
1192 const Matcher<const UncopyableFoo&> const_m = in TEST()
1199 const Matcher<UncopyableFoo&> m = in TEST()
1210 const Matcher<const UncopyableFoo&> m = in TEST()
1228 const Matcher<const long&> m = IsNotInClosedRange(10, 20); // NOLINT in TEST()
1322 Matcher<std::string> no_promo = EqConcat(std::string("foo"), 't'); in TEST()
1323 Matcher<const std::string&> promo = EqConcat("foo", static_cast<int>('t')); in TEST()
1412 Matcher<const int(&)[2]> m = Contains(2).Times(3); in TEST_P()
1451 Matcher<vector<int>> m = Contains(1).Times(2); in TEST()
1455 Matcher<vector<int>> m2 = Not(m); in TEST()
1506 std::vector<Matcher<int>> matchers{Ge(1), Lt(2)}; in TEST()
1560 std::vector<Matcher<int>> matchers{Lt(1), Ge(2)}; in TEST()
1575 const Matcher<int> m0 = AnyOfArray(v0); in TEST_P()
1576 const Matcher<int> m1 = AnyOfArray(v1); in TEST_P()
1577 const Matcher<int> m2 = AnyOfArray(v2); in TEST_P()
1590 const Matcher<int> g1 = AnyOfArray({GreaterThan(1)}); in TEST_P()
1591 const Matcher<int> g2 = AnyOfArray({GreaterThan(1), GreaterThan(2)}); in TEST_P()
1699 Matcher<std::function<void()>> matcher = Throws<std::runtime_error>(); in TEST()
1707 Matcher<std::function<void()>> matcher = Throws<std::runtime_error>(); in TEST()
1715 Matcher<std::function<void()>> matcher = Throws<std::runtime_error>(); in TEST()
1724 Matcher<std::function<void()>> matcher = Throws<std::runtime_error>(); in TEST()
1732 Matcher<std::function<void()>> matcher = Throws<std::runtime_error>(); in TEST()
1739 : public TestWithParam<Matcher<std::function<void()>>> {};
1742 Matcher<std::function<void()>> matcher = GetParam(); in TEST_P()
1751 Matcher<std::function<void()>> matcher = GetParam(); in TEST_P()
1759 Matcher<std::function<void()>> matcher = GetParam(); in TEST_P()
1768 Matcher<std::function<void()>> matcher = GetParam(); in TEST_P()
1776 Matcher<std::function<void()>> matcher = GetParam(); in TEST_P()
1784 Values(Matcher<std::function<void()>>(
1790 Matcher<std::function<void()>> matcher = in TEST()
1799 Matcher<uint64_t> inner = Eq(10); in TEST()
1800 Matcher<std::function<void()>> matcher = Throws<uint32_t>(inner); in TEST()
1809 Matcher<std::function<void()>> matcher = in TEST()