Home
last modified time | relevance | path

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

/aosp12/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
H A DSortDocumentUiTest.java103 bots.sort.sortBy( in testSortByName_Descending_listMode()
113 bots.sort.sortBy( in testSortBySize_Ascending_listMode()
123 bots.sort.sortBy( in testSortBySize_Descending_listMode()
133 bots.sort.sortBy( in testSortByModified_Ascending_listMode()
143 bots.sort.sortBy( in testSortByModified_Descending_listMode()
153 bots.sort.sortBy( in testSortByType_Ascending_listMode()
163 bots.sort.sortBy( in testSortByType_Descending_listMode()
173 bots.sort.sortBy( in testSortByName_Descending_gridMode()
183 bots.sort.sortBy( in testSortBySize_Ascending_gridMode()
193 bots.sort.sortBy( in testSortBySize_Descending_gridMode()
[all …]
H A DFileManagementUiTest.java158 bots.sort.sortBy( in testCopyLargeAmountOfFiles()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DFontInterpolatorTest.kt38 val expectAxes = expect.axes?.also { it.sortBy { axis -> axis.tag } }
39 val actualAxes = actual.axes?.also { it.sortBy { axis -> axis.tag } }
46 it.sortBy { axis -> axis.tag }
48 val actualAxes = actual.axes?.also { it.sortBy { axis -> axis.tag } }
/aosp12/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DFontInterpolator.kt67 axes.toMutableList().apply { sortBy { it.tag } }
75 sortedAxes.sortBy { it.tag }
166 start.sortBy { axis -> axis.tag }
167 end.sortBy { axis -> axis.tag }
/aosp12/packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
H A DSortBot.java70 public void sortBy(@SortDimensionId int id, @SortDirection int direction) { in sortBy() method in SortBot
77 result = mColumnBot.sortBy(label, direction); in sortBy()
134 private boolean sortBy(String label, @SortDirection int direction) { in sortBy() method in SortBot.ColumnSortBot