Home
last modified time | relevance | path

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

/pdf/pdf-viewer/src/main/java/androidx/pdf/viewer/
DSearchModel.java80 private int[] mPageToMatchCount; field in SearchModel
107 mPageToMatchCount = new int[numPages]; in setNumPages()
113 return (mPageToMatchCount != null) ? mPageToMatchCount.length : -1; in getNumPages()
174 if (mPageToMatchCount != null) { in clearPageToMatchCount()
175 Arrays.fill(mPageToMatchCount, -1); in clearPageToMatchCount()
196 if (mPageToMatchCount[page] == -1) { in updateMatches()
197 mPageToMatchCount[page] = matches.size(); in updateMatches()
239 if (mPageToMatchCount[p] > 0) { in updateMatchCount()
240 overallSelectedIndex += mPageToMatchCount[p]; in updateMatchCount()
315 while (iterator.hasNext() && !condition.apply(mPageToMatchCount[iterator.peekNext()])) { in searchNextPageThat()