Home
last modified time | relevance | path

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

/packages/apps/Launcher2/src/com/android/launcher2/
DFocusHelper.java143 final int pageCount = container.getChildCount(); in handlePagedViewGridLayoutWidgetKeyEvent() local
180 if (pageIndex < (pageCount - 1)) { in handlePagedViewGridLayoutWidgetKeyEvent()
244 if (pageIndex < (pageCount - 1)) { in handlePagedViewGridLayoutWidgetKeyEvent()
303 final int pageCount = container.getChildCount(); in handleAppsCustomizeKeyEvent() local
340 if (pageIndex < (pageCount - 1)) { in handleAppsCustomizeKeyEvent()
404 if (pageIndex < (pageCount - 1)) { in handleAppsCustomizeKeyEvent()
672 int pageCount = workspace.getChildCount(); in handleIconKeyEvent() local
707 if (pageIndex < (pageCount - 1)) { in handleIconKeyEvent()
771 if (pageIndex < (pageCount - 1)) { in handleIconKeyEvent()
DPagedView.java598 final int pageCount = getChildCount(); in scrollToNewPageWithoutMovingPages() local
599 for (int i = 0; i < pageCount; i++) { in scrollToNewPageWithoutMovingPages()
785 final int pageCount = getChildCount(); in getVisiblePages() local
787 if (pageCount > 0) { in getVisiblePages()
789 int leftScreen = isRtl ? pageCount - 1 : 0; in getVisiblePages()
791 int endIndex = isRtl ? 0 : pageCount - 1; in getVisiblePages()
835 final int pageCount = getChildCount(); in dispatchDraw() local
836 if (pageCount > 0) { in dispatchDraw()
/packages/apps/Launcher3/src/com/android/launcher3/
DFocusHelper.java142 final int pageCount = container.getChildCount(); in handlePagedViewGridLayoutWidgetKeyEvent() local
179 if (pageIndex < (pageCount - 1)) { in handlePagedViewGridLayoutWidgetKeyEvent()
243 if (pageIndex < (pageCount - 1)) { in handlePagedViewGridLayoutWidgetKeyEvent()
302 final int pageCount = container.getChildCount(); in handleAppsCustomizeKeyEvent() local
339 if (pageIndex < (pageCount - 1)) { in handleAppsCustomizeKeyEvent()
403 if (pageIndex < (pageCount - 1)) { in handleAppsCustomizeKeyEvent()
671 int pageCount = workspace.getChildCount(); in handleIconKeyEvent() local
706 if (pageIndex < (pageCount - 1)) { in handleIconKeyEvent()
770 if (pageIndex < (pageCount - 1)) { in handleIconKeyEvent()
DPagedView.java1114 final int pageCount = getChildCount(); in getVisiblePages() local
1120 if (pageCount > 0) { in getVisiblePages()
1167 final int pageCount = getChildCount(); in dispatchDraw() local
1168 if (pageCount > 0) { in dispatchDraw()
1193 for (int i = pageCount - 1; i >= 0; i--) { in dispatchDraw()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DEmojiPalettesView.java104 public CategoryProperties(final int categoryId, final int pageCount) { in CategoryProperties() argument
106 mPageCount = pageCount; in CategoryProperties()
375 final int pageCount = (keys.length - 1) / maxPageCount + 1; in sortKeys() local
376 final Key[][] retval = new Key[pageCount][maxPageCount]; in sortKeys()