Lines Matching refs:Matcher
54 Matcher<const Tuple2&> m = Eq(); in TEST()
61 Matcher<const Tuple2&> m = Eq(); in TEST()
68 Matcher<const Tuple2&> m = Ge(); in TEST()
76 Matcher<const Tuple2&> m = Ge(); in TEST()
83 Matcher<const Tuple2&> m = Gt(); in TEST()
91 Matcher<const Tuple2&> m = Gt(); in TEST()
98 Matcher<const Tuple2&> m = Le(); in TEST()
106 Matcher<const Tuple2&> m = Le(); in TEST()
113 Matcher<const Tuple2&> m = Lt(); in TEST()
121 Matcher<const Tuple2&> m = Lt(); in TEST()
128 Matcher<const Tuple2&> m = Ne(); in TEST()
136 Matcher<const Tuple2&> m = Ne(); in TEST()
142 Matcher<Pointers> matcher = Eq(); in TEST()
155 Matcher<float> m = IsNan(); in TEST()
160 Matcher<float&> m_ref = IsNan(); in TEST()
165 Matcher<const float&> m_cref = IsNan(); in TEST()
177 Matcher<double> m = IsNan(); in TEST()
182 Matcher<double&> m_ref = IsNan(); in TEST()
187 Matcher<const double&> m_cref = IsNan(); in TEST()
199 Matcher<long double> m = IsNan(); in TEST()
204 Matcher<long double&> m_ref = IsNan(); in TEST()
209 Matcher<const long double&> m_cref = IsNan(); in TEST()
217 Matcher<float> mf = Not(IsNan()); in TEST()
222 Matcher<double> md = Not(IsNan()); in TEST()
227 Matcher<long double> mld = Not(IsNan()); in TEST()
235 Matcher<float> mf = IsNan(); in TEST()
238 Matcher<double> md = IsNan(); in TEST()
241 Matcher<long double> mld = IsNan(); in TEST()
247 Matcher<float> mf = Not(IsNan()); in TEST()
250 Matcher<double> md = Not(IsNan()); in TEST()
253 Matcher<long double> mld = Not(IsNan()); in TEST()
261 Matcher<const Tpl&> m = FloatEq(); in TEST()
269 Matcher<const ::std::tuple<float, float>&> m = FloatEq(); in TEST()
277 Matcher<const Tpl&> m = NanSensitiveFloatEq(); in TEST()
288 Matcher<const ::std::tuple<float, float>&> m = NanSensitiveFloatEq(); in TEST()
296 Matcher<const Tpl&> m = DoubleEq(); in TEST()
304 Matcher<const ::std::tuple<double, double>&> m = DoubleEq(); in TEST()
312 Matcher<const Tpl&> m = NanSensitiveDoubleEq(); in TEST()
323 Matcher<const ::std::tuple<double, double>&> m = NanSensitiveDoubleEq(); in TEST()
331 Matcher<const Tpl&> m = FloatNear(0.5f); in TEST()
339 Matcher<const ::std::tuple<float, float>&> m = FloatNear(0.5f); in TEST()
347 Matcher<const Tpl&> m = NanSensitiveFloatNear(0.5f); in TEST()
359 Matcher<const ::std::tuple<float, float>&> m = NanSensitiveFloatNear(0.5f); in TEST()
367 Matcher<const Tpl&> m = DoubleNear(0.5); in TEST()
375 Matcher<const ::std::tuple<double, double>&> m = DoubleNear(0.5); in TEST()
383 Matcher<const Tpl&> m = NanSensitiveDoubleNear(0.5f); in TEST()
395 Matcher<const ::std::tuple<double, double>&> m = NanSensitiveDoubleNear(0.5f); in TEST()
401 Matcher<int> m; in TEST()
409 Matcher<int> m = Not(Eq(5)); in TEST()
416 Matcher<int> greater_than_5 = Gt(5); in TEST()
418 Matcher<const int&> m = Not(greater_than_5); in TEST()
419 Matcher<int&> m2 = Not(greater_than_5); in TEST()
420 Matcher<int&> m3 = Not(m); in TEST()
424 void AllOfMatches(int num, const Matcher<int>& m) { in AllOfMatches()
438 Matcher<int> m; in TEST()
491 Matcher<int> m; in TEST()
515 Matcher<int> m; in TEST()
546 Matcher<int> greater_than_5 = Gt(5); in TEST()
547 Matcher<int> less_than_10 = Lt(10); in TEST()
549 Matcher<const int&> m = AllOf(greater_than_5, less_than_10); in TEST()
550 Matcher<int&> m2 = AllOf(greater_than_5, less_than_10); in TEST()
551 Matcher<int&> m3 = AllOf(greater_than_5, m2); in TEST()
554 Matcher<const int&> m4 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
555 Matcher<int&> m5 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
559 Matcher<int> m; in TEST_P()
603 static void AnyOfMatches(int num, const Matcher<int>& m) { in AnyOfMatches()
612 static void AnyOfStringMatches(int num, const Matcher<std::string>& m) { in AnyOfStringMatches()
627 Matcher<int> m; in TEST()
671 Matcher<int> m = ::testing::AnyOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11); in TEST()
688 Matcher<std::string> eq_red = Eq("red"); in TEST()
689 Matcher<std::string> ne_red = Ne("red"); in TEST()
690 Matcher<std::string> m = Conditional(true, eq_red, ne_red); in TEST()
702 Matcher<std::string> eq_red = Eq("red"); in TEST()
703 Matcher<std::string> ne_red = Ne("red"); in TEST()
704 Matcher<std::string> m = Conditional(false, eq_red, ne_red); in TEST()
717 Matcher<int> m; in TEST()
738 Matcher<int> m; in TEST()
762 Matcher<int> greater_than_5 = Gt(5); in TEST()
763 Matcher<int> less_than_10 = Lt(10); in TEST()
765 Matcher<const int&> m = AnyOf(greater_than_5, less_than_10); in TEST()
766 Matcher<int&> m2 = AnyOf(greater_than_5, less_than_10); in TEST()
767 Matcher<int&> m3 = AnyOf(greater_than_5, m2); in TEST()
770 Matcher<const int&> m4 = AnyOf(greater_than_5, less_than_10, less_than_10); in TEST()
771 Matcher<int&> m5 = AnyOf(greater_than_5, less_than_10, less_than_10); in TEST()
775 Matcher<int> m; in TEST_P()
849 Matcher<double> m = Truly(IsPositive); in TEST()
856 Matcher<int> m = Truly(IsGreaterThan(5)); in TEST()
877 Matcher<int> m = Truly(IsNotZero); in TEST()
884 Matcher<double> m = Truly(IsPositive); in TEST()
891 Matcher<const int&> m = Truly(ReferencesFooAndIsZero); in TEST()
922 Matcher<int> eq5 = Eq(5); in TEST()
936 const Matcher<int> is_zero = Eq(0); in TEST()
941 const Matcher<const int&> ref_n = Ref(n); in TEST()
1051 Matcher<RawType> m1 = matcher_maker(0.0); in TestMatches()
1057 Matcher<RawType> m2 = matcher_maker(close_to_positive_zero_); in TestMatches()
1060 Matcher<RawType> m3 = matcher_maker(1.0); in TestMatches()
1067 Matcher<RawType> m4 = matcher_maker(-infinity_); in TestMatches()
1070 Matcher<RawType> m5 = matcher_maker(infinity_); in TestMatches()
1079 Matcher<const RawType&> m6 = matcher_maker(0.0); in TestMatches()
1086 Matcher<RawType&> m7 = matcher_maker(0.0); in TestMatches()
1133 Matcher<RawType> m1 = matcher_maker(0.0, 0.0); in TestNearMatches()
1140 Matcher<RawType> m2 = matcher_maker(0.0, 1.0); in TestNearMatches()
1150 Matcher<RawType> m3 = matcher_maker(ParentType::infinity_, 0.0); in TestNearMatches()
1155 Matcher<RawType> m4 = matcher_maker(-ParentType::infinity_, 0.0); in TestNearMatches()
1161 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_); in TestNearMatches()
1165 Matcher<RawType> m6 = matcher_maker(-ParentType::max_, ParentType::max_); in TestNearMatches()
1169 Matcher<RawType> m7 = matcher_maker(ParentType::max_, 0); in TestNearMatches()
1173 Matcher<RawType> m8 = matcher_maker(-ParentType::max_, 0); in TestNearMatches()
1179 Matcher<RawType> m9 = in TestNearMatches()
1185 Matcher<const RawType&> m10 = matcher_maker(0.0, 1.0); in TestNearMatches()
1192 Matcher<RawType&> m11 = matcher_maker(0.0, 1.0); in TestNearMatches()
1217 Matcher<float> m = FloatEq(nan1_); in TEST_F()
1225 Matcher<float> m = NanSensitiveFloatEq(nan1_); in TEST_F()
1232 Matcher<float> m1 = FloatEq(2.0f); in TEST_F()
1236 Matcher<float> m2 = FloatEq(0.5f); in TEST_F()
1240 Matcher<float> m3 = FloatEq(nan1_); in TEST_F()
1246 Matcher<float> m1 = NanSensitiveFloatEq(2.0f); in TEST_F()
1250 Matcher<float> m2 = NanSensitiveFloatEq(0.5f); in TEST_F()
1254 Matcher<float> m3 = NanSensitiveFloatEq(nan1_); in TEST_F()
1270 Matcher<float> m1 = FloatNear(2.0f, 0.5f); in TEST_F()
1275 Matcher<float> m2 = FloatNear(0.5f, 0.5f); in TEST_F()
1280 Matcher<float> m3 = FloatNear(nan1_, 0.0); in TEST_F()
1286 Matcher<float> m1 = NanSensitiveFloatNear(2.0f, 0.5f); in TEST_F()
1291 Matcher<float> m2 = NanSensitiveFloatNear(0.5f, 0.5f); in TEST_F()
1296 Matcher<float> m3 = NanSensitiveFloatNear(nan1_, 0.1f); in TEST_F()
1303 Matcher<float> m = FloatNear(ParentType::nan1_, 0.1f); in TEST_F()
1311 Matcher<float> m = NanSensitiveFloatNear(nan1_, 0.1f); in TEST_F()
1330 Matcher<double> m = DoubleEq(nan1_); in TEST_F()
1338 Matcher<double> m = NanSensitiveDoubleEq(nan1_); in TEST_F()
1345 Matcher<double> m1 = DoubleEq(2.0); in TEST_F()
1349 Matcher<double> m2 = DoubleEq(0.5); in TEST_F()
1353 Matcher<double> m3 = DoubleEq(nan1_); in TEST_F()
1359 Matcher<double> m1 = NanSensitiveDoubleEq(2.0); in TEST_F()
1363 Matcher<double> m2 = NanSensitiveDoubleEq(0.5); in TEST_F()
1367 Matcher<double> m3 = NanSensitiveDoubleEq(nan1_); in TEST_F()
1383 Matcher<double> m1 = DoubleNear(2.0, 0.5); in TEST_F()
1388 Matcher<double> m2 = DoubleNear(0.5, 0.5); in TEST_F()
1393 Matcher<double> m3 = DoubleNear(nan1_, 0.0); in TEST_F()
1413 Matcher<double> m1 = NanSensitiveDoubleNear(2.0, 0.5); in TEST_F()
1418 Matcher<double> m2 = NanSensitiveDoubleNear(0.5, 0.5); in TEST_F()
1423 Matcher<double> m3 = NanSensitiveDoubleNear(nan1_, 0.1); in TEST_F()
1430 Matcher<double> m = DoubleNear(ParentType::nan1_, 0.1); in TEST_F()
1438 Matcher<double> m = NanSensitiveDoubleNear(nan1_, 0.1); in TEST_F()