Home
last modified time | relevance | path

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

/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/class_mock/
Dmodule_mode_mock.ts37 addModuleInfoItemMock(rollupObject: object, isCommonJs: boolean, extName: string) {
43 this.addModuleInfoItem(filePath, isCommonJs, extName, metaInfo, this.moduleInfos);
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts275 …const extName: string = shouldETSOrTSFileTransformToJS(moduleId, this.projectConfig) ? EXTNAME_JS … constant
276 this.addModuleInfoItem(moduleId, false, extName, metaInfo, moduleInfos);
280 …const extName: string = shouldETSOrTSFileTransformToJS(moduleId, this.projectConfig) ? EXTNAME_JS … constant
281 this.addModuleInfoItem(moduleId, false, extName, metaInfo, moduleInfos);
287 …const extName: string = (moduleId.endsWith(EXTNAME_MJS) || moduleId.endsWith(EXTNAME_CJS)) ? EXTNA… constant
289 this.addModuleInfoItem(moduleId, isCommonJS, extName, metaInfo, moduleInfos);
301 private addModuleInfoItem(filePath: string, isCommonJs: boolean, extName: string,
316 if (extName.length !== 0) {
317 cacheFilePath = changeFileExtension(cacheFilePath, extName);
/developtools/ace_js2bundle/ace-loader/src/
DcardJson-plugin.js46 const extName = path.extname(key);
47 if (extName === '.js') {
59 assets[key.replace(extName, '') + '.json'] = {
/developtools/hdc/src/common/
Dtransfer.h110 bool MatchPackageExtendName(string fileName, string extName);
Dtransfer.cpp353 bool HdcTransferBase::MatchPackageExtendName(string fileName, string extName) in MatchPackageExtendName() argument
356 int subfixIndex = fileName.rfind(extName); in MatchPackageExtendName()
357 if ((fileName.size() - subfixIndex) != extName.size()) { in MatchPackageExtendName()