Searched refs:suffixStr (Results 1 - 4 of 4) sorted by relevance

/external/skia/include/core/
H A DSkString.h33 bool SkStrEndsWith(const char string[], const char suffixStr[]);
148 bool endsWith(const char suffixStr[]) const {
149 return SkStrEndsWith(fRec->data(), suffixStr);
/external/skqp/include/core/
H A DSkString.h33 bool SkStrEndsWith(const char string[], const char suffixStr[]);
148 bool endsWith(const char suffixStr[]) const {
149 return SkStrEndsWith(fRec->data(), suffixStr);
/external/skia/src/core/
H A DSkString.cpp53 bool SkStrEndsWith(const char string[], const char suffixStr[]) { argument
55 SkASSERT(suffixStr);
57 size_t suffixLen = strlen(suffixStr);
59 !strncmp(string + strLen - suffixLen, suffixStr, suffixLen);
/external/skqp/src/core/
H A DSkString.cpp90 bool SkStrEndsWith(const char string[], const char suffixStr[]) { argument
92 SkASSERT(suffixStr);
94 size_t suffixLen = strlen(suffixStr);
96 !strncmp(string + strLen - suffixLen, suffixStr, suffixLen);

Completed in 129 milliseconds