Lines Matching refs:moduleName

30  * baseFileName = 'data/storage/el1/bundle/moduleName/ets/modules.abc';
32 * baseFileName = 'data/storage/el1/bundle/bundleName/moduleName/moduleName/ets/modules.abc';
33 * recordName = bundleName/moduleName/xxx(entry)/xxx(ets)/xxx(pages)/xxx specific abc file
38 * {project_path}\entry\src\main\ets\pages\Index --> @bundle:bundleName/moduleName/ets/pages/Index
40 * {project_path}\namespace\src\main\ets\pages\Index --> @bundle:bundleName/moduleName@namespace/ets/pages/Index
47 * libxxx.so --> @app:bundleName/moduleName/xxx
142 static CString ConcatHspFileNameCrossBundle(const CString &bundleName, const CString &moduleName);
143 static CString ConcatHspFileName(const CString &moduleName);
180 static CVector<CString> GetPkgContextInfoListElements(EcmaVM *vm, CString &moduleName,
187 static CString ConcatNativeSoNormalizedOhmurl(const CString &moduleName, const CString &bundleName,
189 static CString ConcatNotSoNormalizedOhmurl(const CString &moduleName, const CString &bundleName,
206 static CString ConcatOtherNormalizedOhmurlWithFilePath(EcmaVM *vm, size_t filePathPos, CString &moduleName,
212 * Before: /data/storage/el1/bundle/moduleName/ets/modules.abc
213 * After: bundle/moduleName
262 * Before: bundleName/moduleName/ets/xxx/xxx
263 * After: moduleName
272 CString moduleName = recordName.substr(pos1, pos2 - pos1);
273 PathHelper::DeleteNamespace(moduleName);
274 return moduleName;
281 * Before: &moduleName/src/xxx
282 * After: moduleName
291 CString moduleName = recordName.substr(pos1, pos2 - pos1);
292 return moduleName;
299 * Before: bundleName/moduleName
300 * After: moduleName
328 * Before: moduleName
329 * After: data/storage/el1/bundle/moduleName/ets/modules.abc
331 inline static CString ConcatPandaFilePath(const CString &moduleName)
333 if (moduleName.size() == 0) {
336 return BUNDLE_INSTALL_PATH + moduleName + MERGE_ABC_ETS_MODULES;
339 inline static CString GetBundleNameFromNormalized(const EcmaVM *vm, const CString &moduleName)
341 CVector<CString> res = SplitNormalizedOhmurl(moduleName);
353 inline static CString GetNormalizedPathFromOhmUrl(const CString &moduleName)
355 CVector<CString> res = SplitNormalizedOhmurl(moduleName);