Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
Dpatricia_trie_policy.cpp38 int nextPos = dicNode->getChildrenPtNodeArrayPos(); in createAndGetAllChildDicNodes() local
39 if (!isValidPos(nextPos)) { in createAndGetAllChildDicNodes()
41 nextPos, mBuffer.size()); in createAndGetAllChildDicNodes()
47 mBuffer.data(), &nextPos); in createAndGetAllChildDicNodes()
49 if (!isValidPos(nextPos)) { in createAndGetAllChildDicNodes()
51 nextPos, mBuffer.size(), i, childCount); in createAndGetAllChildDicNodes()
56 nextPos = createAndGetLeavingChildNode(dicNode, nextPos, childDicNodes); in createAndGetAllChildDicNodes()
/packages/apps/Calendar/src/com/android/calendar/agenda/
DAgendaByDayAdapter.java659 int nextPos = listPos + 1; in getCursorPosition() local
660 if (nextPos < mRowInfo.size()) { in getCursorPosition()
661 nextPos = getCursorPosition(nextPos); in getCursorPosition()
662 if (nextPos >= 0) { in getCursorPosition()
663 return -nextPos; in getCursorPosition()
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderPagedView.java658 int nextPos = i + direction; in realTimeReorder() local
659 View v = page.getChildAt(nextPos % mGridCountX, nextPos / mGridCountX); in realTimeReorder()