Home
last modified time | relevance | path

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

/external/autotest/frontend/client/src/autotest/common/ui/
DPaginator.java48 protected int resultsPerPage, numTotalResults; field in Paginator
61 currentStart -= Paginator.this.resultsPerPage; in Paginator()
68 currentStart += Paginator.this.resultsPerPage; in Paginator()
112 int end = currentStart + resultsPerPage; in getEnd()
122 return resultsPerPage; in getResultsPerPage()
128 public void setResultsPerPage(int resultsPerPage) { in setResultsPerPage() argument
129 this.resultsPerPage = resultsPerPage; in setResultsPerPage()
150 return ((numTotalResults - 1) / resultsPerPage) * resultsPerPage; in getLastPageStart()
155 boolean nextEnabled = currentStart + resultsPerPage < numTotalResults; in update()