Lines Matching refs:m5
1187 Matcher<pair<const std::string, int> > m5 = Pair("25", 42); in TEST() local
1391 Matcher<const ::std::wstring&> m5 = StrEq(str); in TEST() local
1392 EXPECT_TRUE(m5.Matches(str)); in TEST()
1409 Matcher<const ::std::wstring&> m5 = StrEq(str); in TEST() local
1410 EXPECT_EQ("is equal to L\"\\012\\045\\0\\08\\0\\0\"", Describe(m5)); in TEST()
1582 Matcher<const ::wstring&> m5 = StrEq(str); in TEST() local
1583 EXPECT_TRUE(m5.Matches(str)); in TEST()
1600 Matcher<const ::wstring&> m5 = StrEq(str); in TEST() local
1601 EXPECT_EQ("is equal to L\"\\012\\045\\0\\08\\0\\0\"", Describe(m5)); in TEST()
1999 Matcher<int&> m5 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST() local
2166 Matcher<int&> m5 = AnyOf(greater_than_5, less_than_10, less_than_10); in TEST() local
2534 Matcher<RawType> m5 = matcher_maker(infinity_); in TestMatches() local
2535 EXPECT_TRUE(m5.Matches(close_to_infinity_)); in TestMatches()
2539 EXPECT_FALSE(m5.Matches(nan1_)); in TestMatches()