Searched refs:otherRanges (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
H A DPageRangeUtils.java67 * @param otherRanges The contained page ranges.
71 public static boolean contains(PageRange[] ourRanges, PageRange[] otherRanges, int pageCount) { argument
72 if (ourRanges == null || otherRanges == null) {
80 if (Arrays.equals(otherRanges, ALL_PAGES_RANGE)) {
81 otherRanges[0] = new PageRange(0, pageCount - 1);
85 otherRanges = normalize(otherRanges);
92 final int otherRangeCount = otherRanges.length;
96 PageRange otherRange = otherRanges[otherRangeIdx];

Completed in 30 milliseconds