Home
last modified time | relevance | path

Searched refs:keyPath (Results 1 – 6 of 6) sorted by relevance

/developtools/ace_js2bundle/ace-loader/src/
DgenBin-plugin.js64 const keyPath = key.replace(/\.js$/, firstFileEXT)
65 writeFileSync(newContent, path.resolve(output, keyPath), key)
DgenAbc-plugin.js111 const keyPath = key.replace(/\.js$/, ".temp.js");
112 writeFileSync(newContent, output, keyPath, key, true);
170 function writeFileSync(inputString, buildPath, keyPath, jsBundleFile, isToBin) { argument
171 let output = path.resolve(buildPath, keyPath);
185 cacheOutputPath = path.join(process.env.cachePath, TEMPORARY, abilityDir, keyPath);
/developtools/smartperf_host/ide/src/trace/database/
DDBUtils.ts42 let objectStore = db.createObjectStore('trace_file', { keyPath: 'file_index' });
/developtools/profiler/host/smartperf/ide/src/trace/database/
DDBUtils.ts41 let objectStore = db.createObjectStore('trace_file', { keyPath: 'file_index' });
/developtools/ace_ets2bundle/compiler/src/
Dgen_abc_plugin.ts260 const keyPath: string = key.replace(/\.js$/, ".temp.js"); constant
261 writeFileSync(newContent, output, keyPath, key);
624 function writeFileSync(inputString: string, buildPath: string, keyPath: string, jsBundleFile: strin…
625 let output = path.resolve(buildPath, keyPath);
635 cacheOutputPath = path.join(process.env.cachePath, TEMPORARY, abilityDir, keyPath);
/developtools/hdc/src/host/
Dclient.cpp125 string keyPath = strCmd.substr(CMDSTR_GENERATE_KEY.size() + 1, strCmd.size()); in DoCtrlServiceWork() local
126 HdcAuth::GenerateKey(keyPath.c_str()); in DoCtrlServiceWork()