Lines Matching refs:m_with_name
382 Matcher<AStruct> m_with_name = Field("x", &AStruct::x, Ge(0));
386 EXPECT_TRUE(m_with_name.Matches(a));
389 EXPECT_FALSE(m_with_name.Matches(a));
397 Matcher<AStruct> m_with_name = Field("y", &AStruct::y, Ge(0.0));
399 EXPECT_TRUE(m_with_name.Matches(a));
401 m_with_name = Field("y", &AStruct::y, Le(0.0));
403 EXPECT_FALSE(m_with_name.Matches(a));
654 Matcher<const AClass&> m_with_name = Property("n", &AClass::n, Ge(0));
659 EXPECT_TRUE(m_with_name.Matches(a));
663 EXPECT_FALSE(m_with_name.Matches(a));
670 Matcher<const AClass&> m_with_name =
676 EXPECT_TRUE(m_with_name.Matches(a));
680 EXPECT_FALSE(m_with_name.Matches(a));
687 Matcher<const AClass&> m_with_name =
693 EXPECT_TRUE(m_with_name.Matches(a));
697 EXPECT_FALSE(m_with_name.Matches(a));
747 Matcher<const AClass&> m_with_name =
752 EXPECT_TRUE(m_with_name.Matches(a));
755 EXPECT_FALSE(m_with_name.Matches(a));