Home
last modified time | relevance | path

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

/aosp_15_r20/external/skia/include/core/
H A DSkString.h37 bool SkStrEndsWith(const char string[], const char suffixChar);
151 bool endsWith(const char suffixChar) const { in endsWith() argument
152 return SkStrEndsWith(fRec->data(), suffixChar); in endsWith()
/aosp_15_r20/external/skia/src/core/
H A DSkString.cpp77 bool SkStrEndsWith(const char string[], const char suffixChar) { in SkStrEndsWith() argument
83 return (suffixChar == string[strLen-1]); in SkStrEndsWith()