Home
last modified time | relevance | path

Searched refs:secondPos (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/quick_fix/
H A Dquick_fix_boot_scanner.cpp164 size_t secondPos = fileStr.rfind(ServiceConstants::PATH_SEPARATOR, firstPos - 1); in ProcessQuickFixDir() local
165 if (secondPos == std::string::npos) { in ProcessQuickFixDir()
170 std::string bundleName = fileStr.substr(secondPos + 1, firstPos - secondPos - 1); in ProcessQuickFixDir()
/ohos5.0/foundation/ability/ability_runtime/js_environment/frameworks/js_environment/src/
H A Dsource_map.cpp496 uint32_t secondPos = rawStack.rfind(':', lineEnd); in GetErrorPos() local
497 uint32_t fristPos = rawStack.rfind(':', secondPos - 1); in GetErrorPos()
499 std::string lineStr = rawStack.substr(fristPos + 1, secondPos - 1 - fristPos); in GetErrorPos()
500 std::string columnStr = rawStack.substr(secondPos + 1, lineEnd - 1 - secondPos); in GetErrorPos()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H A Djsi_base_utils.cpp272 size_t secondPos = rawStack.rfind(':', lineEnd); in GetErrorPos() local
273 if (secondPos == std::string::npos) { in GetErrorPos()
277 size_t firstPos = rawStack.rfind(':', secondPos - 1); in GetErrorPos()
282 std::string lineStr = rawStack.substr(firstPos + 1, secondPos - 1 - firstPos); in GetErrorPos()
283 std::string columnStr = rawStack.substr(secondPos + 1, lineEnd - 1 - secondPos); in GetErrorPos()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dbase_bundle_installer.cpp5607 auto secondPos = tempSoDir.find(ServiceConstants::PATH_SEPARATOR, firstPos); in RemoveTempSoDir() local
5608 if (secondPos == std::string::npos) { in RemoveTempSoDir()
5612 auto thirdPos = tempSoDir.find(ServiceConstants::PATH_SEPARATOR, secondPos + 1); in RemoveTempSoDir()