Home
last modified time | relevance | path

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

/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/
DSortModelTest.java131 mModel.sortByUser(DIMENSION_1.getId(), SortDimension.SORT_DIRECTION_DESCENDING); in testSortByUser()
143 mModel.sortByUser(DIMENSION_1.getId(), SortDimension.SORT_DIRECTION_DESCENDING); in testOrderNotChanged_sortByDefaultAfterSortByUser()
157 mModel.sortByUser(DIMENSION_1.getId(), SortDimension.SORT_DIRECTION_DESCENDING); in testOrderChanged_sortByUserAfterSortByDefault()
169 mModel.sortByUser(DIMENSION_1.getId(), SortDimension.SORT_DIRECTION_DESCENDING); in testSortByUserTwice()
170 mModel.sortByUser(DIMENSION_2.getId(), SortDimension.SORT_DIRECTION_ASCENDING); in testSortByUserTwice()
181 mModel.sortByUser(DIMENSION_1.getId(), SortDimension.SORT_DIRECTION_DESCENDING); in testSortByUserTwice_sameDimension()
182 mModel.sortByUser(DIMENSION_1.getId(), SortDimension.SORT_DIRECTION_ASCENDING); in testSortByUserTwice_sameDimension()
202 mModel.sortByUser(DIMENSION_3.getId(), SortDimension.SORT_DIRECTION_DESCENDING); in testSortByUser_noSortingCapability()
212 mModel.sortByUser(DIMENSION_2.getId(), SortDimension.SORT_DIRECTION_DESCENDING); in testParceling()
DSortingCursorWrapperTest.java138 sortModel.sortByUser(SortModel.SORT_DIMENSION_ID_TITLE, in testSort_names_ascending()
162 sortModel.sortByUser(SortModel.SORT_DIMENSION_ID_TITLE, in testSort_names_descending()
183 sortModel.sortByUser(SortModel.SORT_DIMENSION_ID_SIZE, in testSort_sizes_ascending()
206 sortModel.sortByUser(SortModel.SORT_DIMENSION_ID_SIZE, in testSort_sizes_descending()
241 sortModel.sortByUser(SortModel.SORT_DIMENSION_ID_SIZE, in testSort_sizesWithBucketing_ascending()
293 sortModel.sortByUser(SortModel.SORT_DIMENSION_ID_SIZE, in testSort_sizesWithBucketing_descending()
351 sortModel.sortByUser(SortModel.SORT_DIMENSION_ID_DATE, in testSort_time_ascending()
388 sortModel.sortByUser(SortModel.SORT_DIMENSION_ID_DATE, in testSort_time_descending()
407 sortModel.sortByUser( in testSort_type_ascending()
439 sortModel.sortByUser( in testSort_type_descending()
[all …]
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/
DGlobalSearchLoaderTest.java249 mEnv.state.sortModel.sortByUser( in testSearchResult_includeSearchString()
283 mEnv.state.sortModel.sortByUser( in testSearchResult_includeDifferentRoot()
315 mEnv.state.sortModel.sortByUser( in testSearchResult_includeCurrentUserRootOnly()
353 mEnv.state.sortModel.sortByUser( in testSearchResult_includeBothUsersRoots()
382 mEnv.state.sortModel.sortByUser( in testSearchResult_emptyCurrentUsersRoot()
DAbstractActionHandlerTest.java288 mEnv.state.sortModel.sortByUser( in testLoadChildrenDocuments()
317 mEnv.state.sortModel.sortByUser( in testCrossProfileDocuments_success()
415 mEnv.state.sortModel.sortByUser( in testCrossProfileDocuments_reloadSuccessAfterCrossProfileError()
/packages/apps/DocumentsUI/src/com/android/documentsui/sorting/
DTableHeaderController.java98 mModel.sortByUser(dimension.getId(), dimension.getNextDirection()); in onCellClicked()
DSortListFragment.java59 mModel.sortByUser(item.id, item.direction); in onItemClicked()
DSortModel.java165 public void sortByUser(int dimensionId, @SortDirection int direction) { in sortByUser() method in SortModel