Lines Matching defs:result
181 // the result of the type inference, you can specify the types by
185 // is used. You can assign the result of expression Foo(p1, ..., pk)
303 // A match result listener that stores the explanation in a string.
581 // the match result to the listener. Returns the match result.
732 // appending each result to the 'out' iterator. Returns the final value
1311 std::string result = slistener.str();
1312 if (!result.empty()) {
1314 all_match_result += result;
1419 std::string result = slistener.str();
1420 if (!result.empty()) {
1422 no_match_result += result;
1690 // of error bounds. If the result of value - expected_ would result in
1691 // overflow or if either value is inf, the default result is infinity,
1979 // The result of dynamic_cast<To> is forwarded to the inner matcher.
2011 // To is a pointer. Cast and forward the result.
2152 RefToConstProperty result = (obj.*property_)();
2153 return MatchPrintAndExplain(result, matcher_, listener);
2272 ResultType result =
2274 return MatchPrintAndExplain(result, matcher_, listener);
2325 const bool result = size_matcher_.MatchAndExplain(size, &size_listener);
2327 << (result ? " matches" : " doesn't match");
2329 return result;
2380 const bool result =
2383 << (result ? " matches" : " doesn't match");
2385 return result;
4346 // The result of dynamic_cast<To> is forwarded to the inner matcher.
4441 // Creates a matcher that matches an object if and only if the result of
4457 // result to provide better error messages.
5004 // EXPECT_THAT(result, Conditional(condition, Eq(expected), Ne(expected)));
5062 // result to listener.