Lines Matching refs:assetPath
72 std::string GetCustomAssetPath(std::string assetPath)
74 if (assetPath.empty()) {
79 if (OHOS::Ace::Framework::EndWith(assetPath, DELIMITER)) {
80 assetPath = assetPath.substr(0, assetPath.size() - 1);
82 customAssetPath = assetPath.substr(0, assetPath.find_last_of(DELIMITER) + 1);
90 LOGI("runArgs.asset: %{private}s", runArgs.assetPath.c_str());
293 paths.push_back(runArgs_.assetPath);
301 paths.push_back(runArgs_.assetPath + DELIMITER + "ets");
306 paths.push_back(GetCustomAssetPath(runArgs_.assetPath) + ASSET_PATH_SHARE);
372 container->InitializeAppConfig(runArgs_.assetPath, bundleName_, moduleName_, compileMode_);