Home
last modified time | relevance | path

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

/external/skia/include/core/
DSkString.h31 bool SkStrEndsWith(const char string[], const char suffixStr[]);
140 bool endsWith(const char suffixStr[]) const { in endsWith() argument
141 return SkStrEndsWith(fRec->data(), suffixStr); in endsWith()
/external/skia/src/core/
DSkString.cpp40 bool SkStrEndsWith(const char string[], const char suffixStr[]) { in SkStrEndsWith() argument
42 SkASSERT(suffixStr); in SkStrEndsWith()
44 size_t suffixLen = strlen(suffixStr); in SkStrEndsWith()
46 !strncmp(string + strLen - suffixLen, suffixStr, suffixLen); in SkStrEndsWith()