Home
last modified time | relevance | path

Searched refs:inputPath (Results 1 – 10 of 10) sorted by relevance

/developtools/ace_ets2bundle/compiler/
Duglify-source.js22 function readCode(inputPath) { argument
23 if (fs.existsSync(inputPath)) {
24 const files = fs.readdirSync(inputPath)
26 const filePath = path.join(inputPath, file)
/developtools/ace_js2bundle/ace-loader/
Duglify-source.js22 function readCode(inputPath) { argument
23 if (fs.existsSync(inputPath)) {
24 const files = fs.readdirSync(inputPath)
26 const filePath = path.join(inputPath, file)
/developtools/ace_js2bundle/ace-loader/src/
DgenBin-plugin.js93 function qjscFirst(inputPath, outputPath) { argument
94 const cmd = `"${qjsc}" -o "${outputPath}" -N buf -c "${inputPath}"`
98 console.error('\u001b[31m', `Failed to convert file ${inputPath} to bin`, '\u001b[39m')
100 if (fs.existsSync(inputPath)) {
101 fs.unlinkSync(inputPath)
104 …console.error('\u001b[31m', `Failed to convert file ${inputPath} to bin. ${inputPath} is lost`, '\…
/developtools/global_resource_tool/src/
Dcmd_parser.cpp113 string inputPath = ResourceUtil::RealPath(argValue); in AddInput() local
114 if (inputPath.empty()) { in AddInput()
119 …auto ret = find_if(inputs_.begin(), inputs_.end(), [inputPath](auto iter) {return inputPath == ite… in AddInput()
125 if (!IsAscii(inputPath)) { in AddInput()
128 inputs_.push_back(inputPath); in AddInput()
Did_worker.cpp204 for (const auto &inputPath : packageParser.GetInputs()) { in InitIdDefined() local
207 idDefinedPath = FileEntry::FilePath(inputPath).Append(ID_DEFINED_FILE).GetPath(); in InitIdDefined()
209 … idDefinedPath = ResourceUtil::GetBaseElementPath(inputPath).Append(ID_DEFINED_FILE).GetPath(); in InitIdDefined()
/developtools/profiler/device/plugins/hiebpf_plugin/tools/include/
Debpf_converter.h28 EbpfConverter(const std::string& inputPath, const std::string& outPath);
/developtools/profiler/device/plugins/hiebpf_plugin/tools/src/
Debpf_converter.cpp52 EbpfConverter::EbpfConverter(const std::string& inputPath, const std::string& outPath) in EbpfConverter() argument
53 : inputPath_(inputPath), outputPath_(outPath) {} in EbpfConverter()
483 std::string inputPath, outputPath; in main() local
487 inputPath = optarg; in main()
505 OHOS::EBPF_TOOLS::EbpfConverter ec(inputPath, outputPath); in main()
/developtools/packing_tool/adapter/ohos/
DCompressVerify.java521 private static boolean compatibleProcess(Utility utility, String inputPath, in compatibleProcess() argument
523 if (isPathValid(inputPath, TYPE_DIR, null)) { in compatibleProcess()
524 File inputFile = new File(inputPath); in compatibleProcess()
537 List<String> pathList = removeDuplicatePath(inputPath); in compatibleProcess()
/developtools/global_resource_tool/
DREADME_zh.md32 | -i/--inputPath | 不可缺省 | 带参数 | 指定需要构建的资源目录或者需要构建的资源中间文件目录。同一个命令可以多次指定。 |
/developtools/ace_ets2bundle/compiler/src/
Dutils.ts240 export function circularFile(inputPath: string, outputPath: string): void {
241 if (!inputPath || !outputPath) {
244 fs.readdir(inputPath, function(err, files) {
249 const inputFile: string = path.resolve(inputPath, file);