Lines Matching defs:value
97 // Tests that ASSERT_THAT() and EXPECT_THAT() work when the value
106 // Tests that ASSERT_THAT() and EXPECT_THAT() work when the value
304 // Tests that we can write Pointee(value) instead of Pointee(Eq(value)).
317 EXPECT_EQ("points to a value that is > 3", Describe(m));
318 EXPECT_EQ("does not point to a value that is > 3", DescribeNegation(m));
344 int value() const { return value_; }
353 // Returns true if and only if x.value() is positive.
354 bool ValueIsPositive(const Uncopyable& x) { return x.value() > 0; }
357 return ExplainMatchResult(inner_matcher, arg.value(), result_listener);
364 : x(rhs.x), y(rhs.y), z(rhs.z.value()), p(rhs.p) {}
714 // passed by value.
934 "is mapped by the given callable to a value that "
938 "is mapped by the given callable to a value that "
1375 explicit PostIncrProxy(const value_type& value) : value_(value) {}
1940 // The element with value '3' matches nothing: fail fast.
2249 "contains 3 values, where each value and its corresponding value "
2253 "doesn't contain exactly 3 values, or contains a value x at some "
2254 "index i where x and the i-th value of { 1, 2, 3 } are a pair "
2324 "where the value pair (2, 6) at index #1 don't match, "
2350 MATCHER(PointeeEquals, "Points to an equal value") {