Home
last modified time | relevance | path

Searched refs:suffixChar (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/include/core/
DSkString.h39 bool SkStrEndsWith(const char string[], const char suffixChar);
150 bool endsWith(const char suffixChar) const { in endsWith() argument
151 return SkStrEndsWith(fRec->data(), suffixChar); in endsWith()
/third_party/skia/src/core/
DSkString.cpp68 bool SkStrEndsWith(const char string[], const char suffixChar) { in SkStrEndsWith() argument
74 return (suffixChar == string[strLen-1]); in SkStrEndsWith()