Home
last modified time | relevance | path

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

/external/skia/include/core/
DSkString.h31 bool SkStrEndsWith(const char string[], const char suffixStr[]);
147 bool endsWith(const char suffixStr[]) const { in endsWith() argument
148 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()
/external/opencv3/modules/core/src/
Docl.cpp113 cv::String suffixStr = value.substr(pos, value.length() - pos); in getConfigurationParameterForSize() local
115 if (suffixStr.length() == 0) in getConfigurationParameterForSize()
117 else if (suffixStr == "MB" || suffixStr == "Mb" || suffixStr == "mb") in getConfigurationParameterForSize()
119 else if (suffixStr == "KB" || suffixStr == "Kb" || suffixStr == "kb") in getConfigurationParameterForSize()