Home
last modified time | relevance | path

Searched refs:deviceTypes (Results 1 – 11 of 11) sorted by relevance

/developtools/packing_tool/adapter/ohos/
DHQFInfo.java38 private List<String> deviceTypes = new ArrayList<>(); field in HQFInfo
99 return deviceTypes; in getDeviceTypes()
102 public void setDeviceTypes(List<String> deviceTypes) { in setDeviceTypes() argument
103 this.deviceTypes = deviceTypes; in setDeviceTypes()
DModuleJsonUtil.java747 List<String> deviceTypes = new ArrayList<>(); in parseFaEntry() local
756 deviceTypes = getDeviceTypeFromFAModule(moduleObj); in parseFaEntry()
758 return deviceTypes; in parseFaEntry()
783 List<String> deviceTypes = new ArrayList<>(); in parseStageEntry() local
786 deviceTypes = getDeviceTypesFromStageModule(moduleObj); in parseStageEntry()
789 return deviceTypes; in parseStageEntry()
799 List<String> deviceTypes = new ArrayList<>(); in getDeviceTypeFromFAModule() local
801 return deviceTypes; in getDeviceTypeFromFAModule()
803 deviceTypes = JSONObject.parseArray(getJsonString(moduleObj, DEVICE_TYPE), String.class); in getDeviceTypeFromFAModule()
804 return deviceTypes; in getDeviceTypeFromFAModule()
[all …]
DJsonUtil.java184 String deviceTypes = getJsonString(tmpObj, DEVICE_TYPE); in parseHapList() local
185 if (deviceTypes == null || EMPTY.equals(deviceTypes)) { in parseHapList()
186 deviceTypes = getJsonString(tmpObj, DEVICE_TYPE_NEW); in parseHapList()
188 if (deviceTypes != null && deviceTypes.toLowerCase(Locale.ENGLISH).contains( in parseHapList()
196 packInfo.deviceType = JSONArray.parseArray(deviceTypes, String.class); in parseHapList()
280 String deviceTypes = getJsonString(tmpObj, DEVICE_TYPE_NEW); in parseDeviceTypeToHapInfo() local
281 if (deviceTypes == null || deviceTypes.isEmpty()) { in parseDeviceTypeToHapInfo()
282 deviceTypes = getJsonString(tmpObj, DEVICE_TYPE); in parseDeviceTypeToHapInfo()
284 if (deviceTypes != null && !deviceTypes.isEmpty()) { in parseDeviceTypeToHapInfo()
285 hapInfo.deviceType = JSONArray.parseArray(deviceTypes in parseDeviceTypeToHapInfo()
[all …]
DModuleInfo.java77 public List<String> deviceTypes = new ArrayList<String>(); field in ModuleInfo
DModuleAppInfo.java113 public Map<String, ModuleDeviceType> deviceTypes = new HashMap<>(); field in ModuleAppInfo
DModuleAdaption.java113 for(Map.Entry<String, ModuleDeviceType> entrty : moduleAppInfo.deviceTypes.entrySet()) { in convertToDeviceConfig()
145 hapInfo.deviceType = moduleInfo.deviceTypes; in convertToHapInfo()
DCompressor.java788 String deviceTypes = utility.getDeviceType().replace("\"", "").trim(); in compressHapMode() local
789 if (DEVICE_TYPE_FITNESSWATCH.equals(deviceTypes) || in compressHapMode()
790 DEVICE_TYPE_FITNESSWATCH_NEW.equals(deviceTypes)) { in compressHapMode()
865 String deviceTypes = utility.getDeviceType().replace("\"", "").trim(); in compressHapModeForModule() local
866 if (DEVICE_TYPE_FITNESSWATCH.equals(deviceTypes) || in compressHapModeForModule()
867 DEVICE_TYPE_FITNESSWATCH_NEW.equals(deviceTypes)) { in compressHapModeForModule()
DHapVerify.java1213 List<String> deviceTypes = hapVerifyInfo.getDeviceType(); in getDeviceHapVerifyInfoMap() local
1214 for (String device : deviceTypes) { in getDeviceHapVerifyInfoMap()
/developtools/ace_ets2bundle/compiler/src/fast_build/system_api/
Dapi_check_utils.ts25 config.deviceTypesMessage = config.deviceTypes.join(',');
30 config.deviceTypes.forEach((deviceType: string) => {
34 collectExternalSyscapInfos(config.externalApiPaths, config.deviceTypes, deviceInfoMap);
52 if (config.deviceTypes.length === 1 || syscaps.length === 1) {
80 deviceTypes: string[],
91 deviceTypes.forEach((deviceType: string) => {
/developtools/ace_ets2bundle/compiler/src/fast_build/ets_ui/
Drollup-plugin-ets-checker.ts60 if (this.share.projectConfig.deviceTypes) {
/developtools/packing_tool/
DREADME_zh.md402 …<String> | 标识hap可以运行在哪类设备上 | 对应stage模型中的deviceTypes |