Home
last modified time | relevance | path

Searched refs:StringStartWith (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/module/
Dmodule_path_helper.h165 … if (StringHelper::StringStartWith(requestName, ModulePathHelper::REQUIRE_NAPI_OHOS_PREFIX) || in IsNativeModuleRequest()
166 StringHelper::StringStartWith(requestName, ModulePathHelper::REQUIRE_NAPI_APP_PREFIX) || in IsNativeModuleRequest()
167 … StringHelper::StringStartWith(requestName, ModulePathHelper::REQUIRE_NAITVE_MODULE_PREFIX)) { in IsNativeModuleRequest()
Dmodule_path_helper.cpp25 if (StringHelper::StringStartWith(requestName, PREFIX_BUNDLE)) { in ConcatFileNameWithMerge()
28 } else if (StringHelper::StringStartWith(requestName, PREFIX_PACKAGE)) { in ConcatFileNameWithMerge()
86 if (StringHelper::StringStartWith(inputFileName, PREFIX_BUNDLE)) { in ParseOhmUrl()
97 if (StringHelper::StringStartWith(inputFileName, PREVIER_TEST_DIR)) { in ParseOhmUrl()
293 if (StringHelper::StringStartWith(recordName, PACKAGE_PATH_SEGMENT)) { in FindPackageInTopLevelWithNamespace()
333 if (StringHelper::StringStartWith(recordName, PACKAGE_PATH_SEGMENT)) { in ParseOhpmPackage()
364 if (StringHelper::StringStartWith(recordName, packagePath)) { in ParseThirdPartyPackage()
Djs_module_source_text.cpp287 StringHelper::StringStartWith(moduleRequestName, ModulePathHelper::PREFIX_BUNDLE) || in CheckNativeModule()
288 StringHelper::StringStartWith(moduleRequestName, ModulePathHelper::PREFIX_PACKAGE)|| in CheckNativeModule()
293 …if (StringHelper::StringStartWith(moduleRequestName, ModulePathHelper::REQUIRE_NAPI_OHOS_PREFIX)) { in CheckNativeModule()
296 … if (StringHelper::StringStartWith(moduleRequestName, ModulePathHelper::REQUIRE_NAPI_APP_PREFIX)) { in CheckNativeModule()
299 …if (StringHelper::StringStartWith(moduleRequestName, ModulePathHelper::REQUIRE_NAITVE_MODULE_PREFI… in CheckNativeModule()
Djs_module_manager.cpp352 … (base::StringHelper::StringStartWith(moduleFileName, ModulePathHelper::BUNDLE_INSTALL_PATH) || in SkipDefaultBundleFile()
353 base::StringHelper::StringStartWith(moduleFileName, relativeFilePath)); in SkipDefaultBundleFile()
/arkcompiler/ets_runtime/ecmascript/base/
Dstring_helper.h405 static bool StringStartWith(const CString& str, const CString& startStr) in StringStartWith() function