Home
last modified time | relevance | path

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

/external/skia/include/core/
DSkString.h32 bool SkStrEndsWith(const char string[], const char suffixChar);
143 bool endsWith(const char suffixChar) const { in endsWith() argument
144 return SkStrEndsWith(fRec->data(), suffixChar); in endsWith()
/external/skia/src/core/
DSkString.cpp49 bool SkStrEndsWith(const char string[], const char suffixChar) { in SkStrEndsWith() argument
55 return (suffixChar == string[strLen-1]); in SkStrEndsWith()