Searched refs:cacheAbcFilePath (Results 1 – 6 of 6) sorted by relevance
| /developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/ |
| D | bundle_mode.ts | 128 const cacheAbcFilePath: string = changeFileExtension(cacheFilePath, EXTNAME_ABC); constant 134 if (fs.existsSync(cacheAbcFilePath)) { 136 const hashAbcContentData: string = toHashData(cacheAbcFilePath); 138 jsonObject[cacheAbcFilePath] === hashAbcContentData) { 140 updatedJsonObject[cacheAbcFilePath] = hashAbcContentData; 355 const cacheAbcFilePath: string = changeFileExtension(cacheFilePath, EXTNAME_ABC); constant 356 if (!fs.existsSync(cacheFilePath) || !fs.existsSync(cacheAbcFilePath)) { 358 `${cacheFilePath} or ${cacheAbcFilePath} is not found.`); 361 const hashCacheAbcContentData: string = toHashData(cacheAbcFilePath); 363 this.hashJsonObject[cacheAbcFilePath] = hashCacheAbcContentData; [all …]
|
| /developtools/ace_js2bundle/ace-loader/src/ |
| D | gen-abc.js | 30 const cacheAbcFilePath = cacheOutputPath.replace(/\.temp\.js$/, ".abc"); 32 …const singleCmd = `${cmd} "${cacheOutputPath}" -o "${cacheAbcFilePath}" --source-file "${sourceFil…
|
| D | genAbc-plugin.js | 314 const cacheAbcFilePath = cacheOutputPath.replace(/\.temp\.js$/, '.abc'); 321 if (fs.existsSync(cacheAbcFilePath)) { 323 const hashAbcContentData = toHashData(cacheAbcFilePath); 324 …if (jsonObject[cacheOutputPath] === hashInputContentData && jsonObject[cacheAbcFilePath] === hashA… 326 updateJsonObject[cacheAbcFilePath] = hashAbcContentData; 342 const cacheAbcFilePath = cacheOutputPath.replace(/\.temp\.js$/, '.abc'); 343 if (!fs.existsSync(cacheOutputPath) || !fs.existsSync(cacheAbcFilePath)) { 349 const hashAbcContentData = toHashData(cacheAbcFilePath); 351 hashJsonObject[cacheAbcFilePath] = hashAbcContentData; 414 const cacheAbcFilePath = intermediateJsBundle[i].cacheOutputPath.replace(/\.temp\.js$/, ".abc"); [all …]
|
| /developtools/ace_ets2bundle/compiler/src/ |
| D | gen_abc.ts | 33 const cacheAbcFilePath: string = cacheOutputPath.replace(/\.temp\.js$/, '.abc'); constant 35 …const singleCmd: string = `${cmd} "${cacheOutputPath}" -o "${cacheAbcFilePath}" --source-file "${s…
|
| D | gen_abc_plugin.ts | 952 const cacheAbcFilePath: string = cacheOutputPath.replace(/\.temp\.js$/, '.abc'); constant 958 if (fs.existsSync(cacheAbcFilePath)) { 960 const hashAbcContentData: string = toHashData(cacheAbcFilePath); 961 …if (jsonObject[cacheOutputPath] === hashInputContentData && jsonObject[cacheAbcFilePath] === hashA… 963 updateJsonObject[cacheAbcFilePath] = hashAbcContentData; 979 const cacheAbcFilePath: string = cacheOutputPath.replace(/\.temp\.js$/, '.abc'); constant 980 if (!fs.existsSync(cacheOutputPath) || !fs.existsSync(cacheAbcFilePath)) { 986 const hashAbcContentData: string = toHashData(cacheAbcFilePath); 988 hashJsonObject[cacheAbcFilePath] = hashAbcContentData; 1050 …const cacheAbcFilePath: string = intermediateJsBundle[i].cacheOutputPath.replace(/\.temp\.js$/, '.… constant [all …]
|
| /developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/ |
| D | gen_abc.ts | 37 const cacheAbcFilePath: string = changeFileExtension(cacheFilePath, EXTNAME_ABC); constant 39 …const singleCmd: string = `${cmd} "${cacheFilePath}" -o "${cacheAbcFilePath}" --source-file "${sou…
|