Searched refs:inputPath (Results 1 – 10 of 10) sorted by relevance
| /developtools/ace_ets2bundle/compiler/ |
| D | uglify-source.js | 22 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/ |
| D | uglify-source.js | 22 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/ |
| D | genBin-plugin.js | 93 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/ |
| D | cmd_parser.cpp | 113 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()
|
| D | id_worker.cpp | 204 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/ |
| D | ebpf_converter.h | 28 EbpfConverter(const std::string& inputPath, const std::string& outPath);
|
| /developtools/profiler/device/plugins/hiebpf_plugin/tools/src/ |
| D | ebpf_converter.cpp | 52 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/ |
| D | CompressVerify.java | 521 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/ |
| D | README_zh.md | 32 | -i/--inputPath | 不可缺省 | 带参数 | 指定需要构建的资源目录或者需要构建的资源中间文件目录。同一个命令可以多次指定。 |
|
| /developtools/ace_ets2bundle/compiler/src/ |
| D | utils.ts | 240 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);
|