Home
last modified time | relevance | path

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

/external/skqp/include/core/
DSkString.h23 static bool SkStrStartsWith(const char string[], const char prefixStr[]) { in SkStrStartsWith() argument
25 SkASSERT(prefixStr); in SkStrStartsWith()
26 return !strncmp(string, prefixStr, strlen(prefixStr)); in SkStrStartsWith()
142 bool startsWith(const char prefixStr[]) const { in startsWith() argument
143 return SkStrStartsWith(fRec->data(), prefixStr); in startsWith()
/external/skia/include/core/
DSkString.h24 static inline bool SkStrStartsWith(const char string[], const char prefixStr[]) { in SkStrStartsWith() argument
26 SkASSERT(prefixStr); in SkStrStartsWith()
27 return !strncmp(string, prefixStr, strlen(prefixStr)); in SkStrStartsWith()
136 bool startsWith(const char prefixStr[]) const { in startsWith() argument
137 return SkStrStartsWith(fRec->data(), prefixStr); in startsWith()