Home
last modified time | relevance | path

Searched refs:modulePath (Results 1 – 16 of 16) sorted by relevance

/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/
Dmodule_info.ts25 constructor(entryModuleName: string, modulePath: string) {
30 this.pkgPath = modulePath;
40 constructor(id: string, entryModuleName: string, modulePath: string) {
41 this.meta = new Meta(entryModuleName, modulePath);
Dproject_config.ts76 modulePath: string; property in ProjectConfig
145 this.modulePath = `${proPath}/${this.entryModuleName}`;
159 this.DynamicImportpath = `${this.modulePath}/DynamicImport.ets`;
Drollup_plugin_mock.ts195 this.share.projectConfig.modulePath));
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/common/
Dutils.test.ts528 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
545 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
562 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
579 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
616 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
629 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
642 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
655 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
682 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
695 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
[all …]
/developtools/global_resource_tool/src/
Dresource_module.cpp31 ResourceModule::ResourceModule(const string &modulePath, const string &moduleOutput, const string &… in ResourceModule() argument
32 : modulePath_(modulePath), moduleOutput_(moduleOutput), moduleName_(moduleName) in ResourceModule()
/developtools/ace_js2bundle/ace-loader/src/
Dcompile-plugin.js67 const modulePath = path.join(module.context);
68 const srcIndex = modulePath.lastIndexOf(path.join('src', 'main', 'js'));
72 const commonPath = path.resolve(modulePath.substring(0, srcIndex),
77 const i18nPath = path.resolve(modulePath.substring(0, srcIndex),
/developtools/ace_ets2bundle/compiler/src/
Dets_checker.ts737 const containingFile: string = path.join(projectConfig.modulePath, "build-profile.json5");
782 const modulePath: string = resolveModuleInfo.modulePath; constant
784 …temModules.includes(moduleName + (isDETS ? '.d.ets' : '.d.ts')) && ts.sys.fileExists(modulePath)) {
785 resolvedModules.push(getResolveModule(modulePath, isDETS ? '.d.ets' : '.d.ts'));
794 const modulePath: string = path.resolve(path.dirname(containingFile), moduleName); constant
795 if (ts.sys.fileExists(modulePath)) {
796 resolvedModules.push(getResolveModule(modulePath, '.ets'));
801 const modulePath: string = path.resolve(path.dirname(containingFile), moduleName); constant
802 if (ts.sys.fileExists(modulePath)) {
803 resolvedModules.push(getResolveModule(modulePath, '.ts'));
[all …]
Dark_utils.ts145 const modulePath: string = projectConfig.modulePathMap[moduleName]; constant
146 const tryModulePkg: string = toUnixPath(path.resolve(modulePath, packageDir));
226 const modulePath: string = resolveModuleInfo.modulePath; constant
227 if (!fs.existsSync(modulePath)) {
230 const bundleInfo: BundleInfo = parseOhmBundle(modulePath);
685 function parseOhmBundle(modulePath: string): BundleInfo {
686 const apiCode: string = fs.readFileSync(modulePath, {encoding: 'utf-8'});
Dprocess_visual.ts326 const modulePath = path.join(moduleNames[i], moduleNames[i + 1], moduleNames[i + 2]); constant
327 if (modulePath === MODULE_ETS_PATH) {
Dprocess_import.ts615 const systemModule: string = resolveModuleInfo.modulePath;
/developtools/global_resource_tool/include/
Dresource_module.h28 …ResourceModule(const std::string &modulePath, const std::string &moduleOutput, const std::string &…
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_source_file.ts123 …let mockFilePath: string = `${toUnixPath(rollupObject.share.projectConfig.modulePath)}/${mockFile}…
139 …let absoluteMockFilePath: string = `${toUnixPath(rollupObject.share.projectConfig.modulePath)}/${m…
287 replace(toUnixPath(rollupObject.share.projectConfig.modulePath), '').
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/module/
Dmodule_source_file.test.ts538 this.rollup.share.projectConfig.modulePath);
567 this.rollup.share.projectConfig.modulePath);
596 this.rollup.share.projectConfig.modulePath);
625 this.rollup.share.projectConfig.modulePath);
Dmodule_mode.test.ts216 this.rollup.share.projectConfig.modulePath = this.rollup.share.projectConfig.projectPath;
726 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
744 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
762 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles);
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dprocess_ark_config.ts166 const ohPackagePath = path.join(projectConfig.modulePath, 'oh-package.json5');
/developtools/packing_tool/adapter/ohos/
DCompressVerify.java956 for (String modulePath : modulePathList) { in verifyIsAppService()
957 HapVerifyInfo hapVerifyInfo = Compressor.parseStageHapVerifyInfo(modulePath); in verifyIsAppService()