Searched refs:startStrLen (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/module/ |
H A D | module_path_helper.h | 218 size_t startStrLen = bundleSubInstallName.length(); in ParseHapPath() local 219 if (baseFileName.length() > startStrLen && baseFileName.compare(0, startStrLen, bundleSubInstallName) == 0) { in ParseHapPath() 220 CString hapPath = baseFileName.substr(startStrLen); in ParseHapPath()
|
/arkcompiler/ets_runtime/ecmascript/extractortool/src/ |
H A D | file_path_utils.h | 25 bool StringStartWith(const std::string& str, const char* startStr, size_t startStrLen);
|
H A D | file_path_utils.cpp | 64 bool StringStartWith(const std::string& str, const char* startStr, size_t startStrLen) in StringStartWith() argument 66 return ((str.length() >= startStrLen) && (str.compare(0, startStrLen, startStr) == 0)); in StringStartWith()
|
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | string_helper.h | 430 size_t startStrLen = startStr.length(); in StringStartWith() local 431 return ((str.length() >= startStrLen) && (str.compare(0, startStrLen, startStr) == 0)); in StringStartWith()
|
Completed in 6 milliseconds