Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/extractortool/src/
Dfile_path_utils.cpp170 std::string moduleInstallPath = GetInstallPath(curJsModulePath, true); in MakeNewJsModulePath() local
171 if (moduleInstallPath.empty()) { in MakeNewJsModulePath()
176 SplitString(curJsModulePath, pathVector, moduleInstallPath.length()); in MakeNewJsModulePath()
201 std::string jsModulePath = moduleInstallPath + JoinString(pathVector, '/'); in MakeNewJsModulePath()
260 const std::string& moduleInstallPath, const std::string& npmPackage, size_t start) in FindNpmPackageInTopLevel() argument
263 …std::string path = moduleInstallPath + NPM_PATH_SEGMENT + '/' + std::to_string(level) + '/' + npmP… in FindNpmPackageInTopLevel()
279 std::string moduleInstallPath = GetInstallPath(curJsModulePath); in FindNpmPackage() local
280 if (moduleInstallPath.empty()) { in FindNpmPackage()
284 SplitString(curJsModulePath, pathVector, moduleInstallPath.length()); in FindNpmPackage()
290 return FindNpmPackageInTopLevel(moduleInstallPath, npmPackage); in FindNpmPackage()
[all …]
Dfile_path_utils.h36 const std::string& moduleInstallPath, const std::string& npmPackage, size_t start = 0);