Home
last modified time | relevance | path

Searched refs:SORT_DIMENSION_ID_UNKNOWN (Results 1 – 4 of 4) sorted by relevance

/packages/apps/DocumentsUI/src/com/android/documentsui/sorting/
DSortModel.java51 SORT_DIMENSION_ID_UNKNOWN,
60 public static final int SORT_DIMENSION_ID_UNKNOWN = 0; field in SortModel
100 private int mDefaultDimensionId = SORT_DIMENSION_ID_UNKNOWN;
109 if (column.getId() == SORT_DIMENSION_ID_UNKNOWN) { in SortModel()
111 "SortDimension id can't be " + SORT_DIMENSION_ID_UNKNOWN + "."); in SortModel()
141 return mSortedDimension != null ? mSortedDimension.getId() : SORT_DIMENSION_ID_UNKNOWN; in getSortedDimensionId()
243 case SORT_DIMENSION_ID_UNKNOWN: in addQuerySortArgs()
300 case SORT_DIMENSION_ID_UNKNOWN: in getDocumentSortQuery()
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DDirectoryState.java41 int mLastSortDimensionId = SortModel.SORT_DIMENSION_ID_UNKNOWN;
DDirectoryFragment.java1179 || mLocalState.mLastSortDimensionId == SortModel.SORT_DIMENSION_ID_UNKNOWN in accept()
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/
DSortModelTest.java114 assertEquals(SortModel.SORT_DIMENSION_ID_UNKNOWN, mModel.getSortedDimensionId()); in testNotSortedByDefault()