Home | History | Annotate | Download | only in googletest

Lines Matching refs:suffix

1687 // Returns true iff this String ends with the given suffix.  *Any*
1688 // String is considered to end with a NULL or empty suffix.
1689 bool String::EndsWith(const char* suffix) const {
1690 if (suffix == NULL || CStringEquals(suffix, "")) return true;
1695 const size_t suffix_len = strlen(suffix);
1697 CStringEquals(c_str() + this_len - suffix_len, suffix);
1700 // Returns true iff this String ends with the given suffix, ignoring case.
1701 // Any String is considered to end with a NULL or empty suffix.
1702 bool String::EndsWithCaseInsensitive(const char* suffix) const {
1703 if (suffix == NULL || CStringEquals(suffix, "")) return true;
1708 const size_t suffix_len = strlen(suffix);
1710 CaseInsensitiveCStringEquals(c_str() + this_len - suffix_len, suffix);