Home
last modified time | relevance | path

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

/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_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/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.cpp121 string inputPath = ResourceUtil::RealPath(argValue); in AddInput() local
122 if (inputPath.empty()) { in AddInput()
127 …auto ret = find_if(inputs_.begin(), inputs_.end(), [inputPath](auto iter) {return inputPath == ite… in AddInput()
133 if (!IsAscii(inputPath)) { in AddInput()
136 inputs_.push_back(inputPath); in AddInput()
Did_defined_parser.cpp44 for (const auto &inputPath : packageParser_.GetInputs()) { in Init() local
47 idDefinedPath = FileEntry::FilePath(inputPath).Append(ID_DEFINED_FILE).GetPath(); in Init()
49 … idDefinedPath = ResourceUtil::GetBaseElementPath(inputPath).Append(ID_DEFINED_FILE).GetPath(); in Init()
/developtools/profiler/device/plugins/hiebpf_plugin/tools/include/
Debpf_converter.h28 EbpfConverter(const std::string& inputPath, const std::string& outPath);
/developtools/packing_tool/adapter/ohos/
DCompressVerify.java704 private static boolean compatibleProcess(Utility utility, String inputPath, in compatibleProcess() argument
706 if (isPathValid(inputPath, TYPE_DIR, null)) { in compatibleProcess()
707 File inputFile = new File(inputPath); in compatibleProcess()
720 List<String> pathList = removeDuplicatePath(inputPath); in compatibleProcess()
732 …private static boolean handleHapAndHspInput(Utility utility, String inputPath, List<String> fileLi… in handleHapAndHspInput() argument
733 if (isPathValid(inputPath, TYPE_DIR, null)) { in handleHapAndHspInput()
734 File inputFile = new File(inputPath); in handleHapAndHspInput()
748 List<String> pathList = removeDuplicatePath(inputPath); in handleHapAndHspInput()
/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()
487 std::string inputPath, outputPath; in main() local
491 inputPath = optarg; in main()
509 OHOS::EBPF_TOOLS::EbpfConverter ec(inputPath, outputPath); in main()
/developtools/global_resource_tool/
DREADME_zh.md32 | -i/--inputPath | 不可缺省 | 带参数 | 指定需要构建的资源目录或者需要构建的资源中间文件目录。同一个命令可以多次指定。 |
/developtools/ace_ets2bundle/compiler/src/
Dutils.ts250 export function circularFile(inputPath: string, outputPath: string): void {
251 if (!inputPath || !outputPath) {
254 fs.readdir(inputPath, function (err, files) {
259 const inputFile: string = path.resolve(inputPath, file);