Home | History | Annotate | Download | only in test

Lines Matching defs:is_zero

2307   const Matcher<int> is_zero = Eq(0);
2308 EXPECT_TRUE(Value(0, is_zero));
2309 EXPECT_FALSE(Value('a', is_zero));
2333 const Matcher<const double&> is_zero = Eq(0);
2335 EXPECT_FALSE(ExplainMatchResult(is_zero, 1.5, &listener2));