Home | History | Annotate | Download | only in src

Lines Matching refs:Matcher

34 // This file implements Matcher<const string&>, Matcher<string>, and
46 // Constructs a matcher that matches a const string& whose value is
48 Matcher<const internal::string&>::Matcher(const internal::string& s) {
52 // Constructs a matcher that matches a const string& whose value is
54 Matcher<const internal::string&>::Matcher(const char* s) {
58 // Constructs a matcher that matches a string whose value is equal to s.
59 Matcher<internal::string>::Matcher(const internal::string& s) { *this = Eq(s); }
61 // Constructs a matcher that matches a string whose value is equal to s.
62 Matcher<internal::string>::Matcher(const char* s) {
87 // Returns the description for a matcher defined using the MATCHER*()
90 // negation of the matcher. 'param_values' contains a list of strings
91 // that are the print-out of the matcher's parameters.