• Home
  • Raw
  • Download

Lines Matching refs:j

140             for (int j = i + 1; j < hapVerifyInfos.size(); j++) {  in checkSharedApppIsValid()
141 if (!checkDuplicatedIsValid(hapVerifyInfos.get(i), hapVerifyInfos.get(j))) { in checkSharedApppIsValid()
242 for (int j = i + 1; j < hapVerifyInfos.size(); ++j) { in checkModuleNameIsValid()
243 … if (hapVerifyInfos.get(i).getModuleName().equals(hapVerifyInfos.get(j).getModuleName()) && in checkModuleNameIsValid()
244 !checkDuplicatedIsValid(hapVerifyInfos.get(i), hapVerifyInfos.get(j))) { in checkModuleNameIsValid()
246 hapVerifyInfos.get(j).getModuleName() + ") have the same moduleName, " + in checkModuleNameIsValid()
250 … LOG.error("Another Module: " + hapVerifyInfos.get(j).getModuleName() + " has deviceType " in checkModuleNameIsValid()
251 + hapVerifyInfos.get(j).getDeviceType() + "."); in checkModuleNameIsValid()
256 if (!EMPTY_STRING.equals(hapVerifyInfos.get(j).getDistroFilter().dump())) { in checkModuleNameIsValid()
257 … LOG.error("Another Module: " + hapVerifyInfos.get(j).getModuleName() + " DistroFilter is " in checkModuleNameIsValid()
258 + hapVerifyInfos.get(j).getDistroFilter().dump() + "."); in checkModuleNameIsValid()
281 for (int j = i + 1; j < hapVerifyInfos.size(); ++j) { in checkPackageNameIsValid()
282 … if (hapVerifyInfos.get(i).getPackageName().equals(hapVerifyInfos.get(j).getPackageName()) && in checkPackageNameIsValid()
283 !checkDuplicatedIsValid(hapVerifyInfos.get(i), hapVerifyInfos.get(j))) { in checkPackageNameIsValid()
285 … hapVerifyInfos.get(j).getModuleName() + ") have the same packageName, " + in checkPackageNameIsValid()
289 … LOG.error("Another Module: " + hapVerifyInfos.get(j).getModuleName() + " has deviceType " in checkPackageNameIsValid()
290 + hapVerifyInfos.get(j).getDeviceType() + "."); in checkPackageNameIsValid()
295 if (!EMPTY_STRING.equals(hapVerifyInfos.get(j).getDistroFilter().dump())) { in checkPackageNameIsValid()
296 … LOG.error("Another Module: " + hapVerifyInfos.get(j).getModuleName() + " DistroFilter is " + in checkPackageNameIsValid()
297 hapVerifyInfos.get(j).getDistroFilter().dump() + "."); in checkPackageNameIsValid()
328 for (int j = i + 1; j < hapVerifyInfos.size(); ++j) { in checkAbilityNameIsValid()
330 hapVerifyInfos.get(j).getAbilityNames()) && in checkAbilityNameIsValid()
331 !checkDuplicatedIsValid(hapVerifyInfos.get(i), hapVerifyInfos.get(j))) { in checkAbilityNameIsValid()
333 … hapVerifyInfos.get(j).getModuleName() + ") have the same ability name."); in checkAbilityNameIsValid()
336 LOG.warning("Module: " + hapVerifyInfos.get(j).getModuleName() + " has ability " in checkAbilityNameIsValid()
337 + hapVerifyInfos.get(j).getAbilityNames() + "."); in checkAbilityNameIsValid()
453 for (int j = i + 1; j < entryHapVerifyInfos.size(); ++j) { in checkEntryIsValid()
454 … if (!checkDuplicatedIsValid(entryHapVerifyInfos.get(i), entryHapVerifyInfos.get(j))) { in checkEntryIsValid()
456 entryHapVerifyInfos.get(j).getModuleName() + ") are entry, " + in checkEntryIsValid()
460 … LOG.error("Another Module: " + entryHapVerifyInfos.get(j).getModuleName() + " has deviceType " in checkEntryIsValid()
461 + entryHapVerifyInfos.get(j).getDeviceType() + "."); in checkEntryIsValid()
466 if (!EMPTY_STRING.equals(entryHapVerifyInfos.get(j).getDistroFilter().dump())) { in checkEntryIsValid()
467 LOG.error("Another Module: " + entryHapVerifyInfos.get(j).getModuleName() + in checkEntryIsValid()
468 … " DistroFilter is " + entryHapVerifyInfos.get(j).getDistroFilter().dump() + "."); in checkEntryIsValid()
1130 for (int j = i + 1; j < dependencyList.size(); ++j) { in checkDependencyListCirculate()
1131 if (isSameHapVerifyInfo(dependencyList.get(i), dependencyList.get(j))) { in checkDependencyListCirculate()