Home
last modified time | relevance | path

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

/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/
DSortingCursorWrapperTest.java156 int previousSize = Integer.MIN_VALUE; in testSort_sizes_ascending() local
163 assertTrue(previousSize <= size); in testSort_sizes_ascending()
164 previousSize = size; in testSort_sizes_ascending()
179 int previousSize = Integer.MAX_VALUE; in testSort_sizes_descending() local
186 assertTrue(previousSize >= size); in testSort_sizes_descending()
187 previousSize = size; in testSort_sizes_descending()
214 int previousSize = Integer.MIN_VALUE; in testSort_sizesWithBucketing_ascending() local
232 previousSize = Integer.MIN_VALUE; in testSort_sizesWithBucketing_ascending()
237 assertTrue(previousSize <= size); in testSort_sizesWithBucketing_ascending()
238 previousSize = size; in testSort_sizesWithBucketing_ascending()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DSuggestedWords.java219 final int previousSize = previousSuggestions.size(); in getTypedWordAndPreviousSuggestions() local
220 for (int index = 1; index < previousSize; index++) { in getTypedWordAndPreviousSuggestions()