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

/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DPinyinIME.java1947 public boolean pageReady(int pageNo) { argument
1949 if (pageNo < 0) return false;
1951 // Page pageNo's ending information is not ready.
1952 if (mPageStart.size() <= pageNo + 1) {
1959 public boolean preparePage(int pageNo) { argument
1961 if (pageNo < 0) return false;
1963 // Make sure the starting information for page pageNo is ready.
1964 if (mPageStart.size() <= pageNo) {
1968 // Page pageNo's ending information is also ready.
1969 if (mPageStart.size() > pageNo
[all...]
H A DCandidateView.java314 * @param pageNo Which page to show.
319 public void showPage(int pageNo, int activeCandInPage, argument
322 mPageNo = pageNo;
409 private boolean calculatePage(int pageNo) { argument
410 if (pageNo == mPageNoCalculated) return true;
422 if (mDecInfo.mPageStart.size() > pageNo + 1) {
424 fromPage = pageNo;
428 for (int p = fromPage; p <= pageNo; p++) {
475 mPageNoCalculated = pageNo;
722 public void startTimer(long afterMillis, int pageNo, in argument
[all...]

Completed in 57 milliseconds