Lines Matching refs:screenShape
528 if (distroFilterLeft.screenShape != null && distroFilterRight.screenShape != null) { in checkDistroFilterDisjoint()
529 …if (checkPolicyValueDisjoint(distroFilterLeft.screenShape.policy, distroFilterLeft.screenShape.val… in checkDistroFilterDisjoint()
530 distroFilterRight.screenShape.policy, distroFilterRight.screenShape.value)) { in checkDistroFilterDisjoint()
668 if (!checkScreenShapeCovered(featureHap.getDistroFilter().screenShape, entryHaps)) { in checkFeatureDistroFilter()
745 …private static boolean checkScreenShapeCovered(ScreenShape screenShape, List<HapVerifyInfo> entryH… in checkScreenShapeCovered() argument
750 … (hapVerifyInfo.getDistroFilter() == null || hapVerifyInfo.getDistroFilter().screenShape == null) { in checkScreenShapeCovered()
753 if (hapVerifyInfo.getDistroFilter().screenShape.policy == null) { in checkScreenShapeCovered()
757 if (INCLUDE.equals(hapVerifyInfo.getDistroFilter().screenShape.policy)) { in checkScreenShapeCovered()
761 include.addAll(hapVerifyInfo.getDistroFilter().screenShape.value); in checkScreenShapeCovered()
762 } else if (EXCLUDE.equals(hapVerifyInfo.getDistroFilter().screenShape.policy)) { in checkScreenShapeCovered()
766 exclude = Stream.of(exclude, hapVerifyInfo.getDistroFilter().screenShape.value). in checkScreenShapeCovered()
779 if (screenShape == null) { in checkScreenShapeCovered()
782 return checkPolicyValueCovered(screenShape.policy, screenShape.value, include, exclude); in checkScreenShapeCovered()