| /developtools/global_resource_tool/include/ |
| D | resource_append.h | 40 bool ScanResources(const std::string &resourcePath, const std::string &outputPath); 42 const std::string &outputPath); 44 const std::string &outputPath); 45 bool ScanIegalResources(const std::string &resourcePath, const std::string &outputPath); 47 const std::string outputPath); 49 const std::string &outputPath); 50 bool ScanFile(const FileInfo &fileInfo, const std::string &outputPath); 51 bool ScanSingleFile(const std::string &filePath, const std::string &outputPath); 52 bool WriteFileInner(std::ostringstream &outStream, const std::string &outputPath) const; 55 bool ScanRawFiles(const std::string &path, const std::string &outputPath); [all …]
|
| D | header.h | 31 Header(const std::string &outputPath);
|
| /developtools/global_resource_tool/src/ |
| D | resource_append.cpp | 44 string outputPath = packageParser_.GetOutput(); in Append() local 46 if (!ScanResources(iter, outputPath)) { in Append() 111 bool ResourceAppend::ScanResources(const string &resourcePath, const string &outputPath) in ScanResources() argument 114 …string filePath = FileEntry::FilePath(outputPath).Append(ResourceUtil::GenerateHash(resourcePath))… in ScanResources() 128 return ScanSingleFile(resourcePath, outputPath); in ScanResources() 131 return ScanSubResources(entry, resourcePath, outputPath); in ScanResources() 134 …pend::ScanSubResources(const FileEntry entry, const string &resourcePath, const string &outputPath) in ScanSubResources() argument 142 if (!ScanIegalResources(child->GetFilePath().GetPath(), outputPath)) { in ScanSubResources() 150 return ScanIegalResources(resourcePath, outputPath); in ScanSubResources() 153 return ScanSubLimitkeyResources(entry, resourcePath, outputPath); in ScanSubResources() [all …]
|
| D | header.cpp | 41 Header::Header(const string &outputPath) : outputPath_(outputPath) in Header() argument
|
| D | resource_pack.cpp | 301 string outputPath = FileEntry::FilePath(packageParser_.GetOutput()) in GenerateConfigJson() local 303 return configJson_.Save(outputPath); in GenerateConfigJson() 413 string outputPath = FileEntry::FilePath(output).Append(ConfigParser::GetConfigName()).GetPath(); in HandleFeature() local 414 if (config.Save(outputPath) != RESTOOL_SUCCESS) { in HandleFeature()
|
| /developtools/syscap_codec/include/ |
| D | syscap_tool.h | 31 int32_t PCIDEncode(char *inputFile, char *outputPath); 33 int32_t PCIDDecode(char *inputFile, char *outputPath); 35 int32_t RPCIDEncode(char *inputFile, char *outputPath); 37 int32_t RPCIDDecode(char *inputFile, char *outputPath);
|
| /developtools/smartperf_host/ide/src/trace/component/setting/ |
| D | SpRecordSetting.ts | 31 private outputPath: HTMLInputElement | undefined; property in SpRecordSetting 43 if (this.outputPath && this.outputPath.value != '') { 44 return '/data/local/tmp/' + this.outputPath.value; 121 …this.outputPath = this.shadowRoot?.querySelector<HTMLInputElement>('#trace_path') as HTMLInputElem…
|
| /developtools/profiler/host/smartperf/ide/src/trace/component/setting/ |
| D | SpRecordSetting.ts | 31 private outputPath: HTMLInputElement | undefined; property in SpRecordSetting 43 if (this.outputPath && this.outputPath.value != '') { 44 return '/data/local/tmp/' + this.outputPath.value; 121 …this.outputPath = this.shadowRoot?.querySelector<HTMLInputElement>('#trace_path') as HTMLInputElem…
|
| /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}"` 102 qjscSecond(outputPath)
|
| /developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/ |
| D | bundle_mode.ts | 89 const outputPath: string = path.resolve(this.projectConfig.aceModuleBuild, tempFilePath); constant 90 const cacheOutputPath: string = this.genCacheBundleFilePath(outputPath, tempFilePath); 103 this.collectIntermediateJsBundle(outputPath, cacheOutputPath); 225 private genCacheBundleFilePath(outputPath: string, tempFilePath: string): string { 230 cacheOutputPath = outputPath;
|
| /developtools/profiler/host/smartperf/ide/src/trace/component/setting/utils/ |
| D | PluginConvertUtils.ts | 22 public static createHdcCmd(requestString: string, outputPath: string, time: number) { 29 outputPath +
|
| /developtools/smartperf_host/ide/src/trace/component/setting/utils/ |
| D | PluginConvertUtils.ts | 22 public static createHdcCmd(requestString: string, outputPath: string, time: number) { 29 outputPath +
|
| /developtools/syscap_codec/src/ |
| D | syscap_tool.c | 180 int32_t RPCIDEncode(char *inputFile, char *outputPath) in RPCIDEncode() argument 273 ret = ConvertedContextSaveAsFile(outputPath, "RPCID.sc", convertedBuffer, convertedBufLen); in RPCIDEncode() 275 … PRINT_ERR("ConvertedContextSaveAsFile failed, outputPath:%s, filename:rpcid.sc\n", outputPath); in RPCIDEncode() 374 int32_t RPCIDDecode(char *inputFile, char *outputPath) in RPCIDDecode() argument 396 …ret = ConvertedContextSaveAsFile(outputPath, "RPCID.json", convertedBuffer, strlen(convertedBuffer… in RPCIDDecode() 398 … PRINT_ERR("ConvertedContextSaveAsFile failed, outputPath:%s, filename:rpcid.json\n", outputPath); in RPCIDDecode()
|
| /developtools/ace_ets2bundle/compiler/src/ |
| D | gen_abc_plugin.ts | 881 let outputPath: string = genProtoFileName(moduleInfos[i].tempFilePath); variable 887 if (fs.existsSync(outputPath)) { 889 const hashAbcContentData: any = toHashData(outputPath); 890 … if (jsonObject[input] === hashInputContentData && jsonObject[outputPath] === hashAbcContentData) { 892 updateJsonObject[outputPath] = hashAbcContentData; 908 let outputPath: string = genProtoFileName(filterModuleInfos[i].tempFilePath);; 909 if (!fs.existsSync(input) || !fs.existsSync(outputPath)) { 915 const hashOutputContentData: any = toHashData(outputPath); 917 moduleHashJsonObject[outputPath] = hashOutputContentData;
|
| D | utils.ts | 240 export function circularFile(inputPath: string, outputPath: string): void { 241 if (!inputPath || !outputPath) { 250 const outputFile: string = path.resolve(outputPath, file);
|
| /developtools/profiler/device/plugins/hiebpf_plugin/tools/src/ |
| D | ebpf_converter.cpp | 483 std::string inputPath, outputPath; in main() local 491 outputPath = optarg; in main() 505 OHOS::EBPF_TOOLS::EbpfConverter ec(inputPath, outputPath); in main()
|
| /developtools/global_resource_tool/ |
| D | README_zh.md | 34 | -o/--outputPath | 不可缺省 | 带参数 | 指定已编译资源的输出路径。 |
|
| /developtools/ace_js2bundle/ace-loader/ |
| D | webpack.lite.config.js | 67 name: '[name].[ext]', outputPath: 'common' property
|
| D | webpack.rich.config.js | 63 outputPath: 'common' property
|
| /developtools/hiperf/interfaces/kits/js/napi/ |
| D | hiperf_client_napi.cpp | 512 std::string outputPath = GetJsStringFromOption(env, info); in Setup() local 516 bool result = g_hiperfClient->Setup(outputPath); in Setup()
|