Home | History | Annotate | Download | only in gmock

Lines Matching refs:string_

942       : string_(str), expect_eq_(expect_eq), case_sensitive_(case_sensitive) {}
944 // When expect_eq_ is true, returns true iff s is equal to string_;
945 // otherwise returns true iff s is not equal to string_.
956 const bool eq = case_sensitive_ ? s == string_ :
957 CaseInsensitiveStringEquals(s, string_);
976 UniversalPrint(string_, os);
979 const StringType string_;