Searched refs:FolderPoint (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/folder/ |
D | FolderTest.kt | 40 import com.android.launcher3.celllayout.board.FolderPoint 97 workspaceBuilder.createFolderInCell(FolderPoint(Point(1, 0), TWO_ICON_FOLDER_TYPE), 0) in Undo a folder with 1 icon when onDropCompleted is called() 114 workspaceBuilder.createFolderInCell(FolderPoint(Point(1, 0), TWO_ICON_FOLDER_TYPE), 0) in Do not undo a folder with 2 icons when onDropCompleted is called() 191 workspaceBuilder.createFolderInCell(FolderPoint(Point(1, 0), TWO_ICON_FOLDER_TYPE), 0) in We should animate open if items greater than 1() 296 workspaceBuilder.createFolderInCell(FolderPoint(Point(1, 0), TWO_ICON_FOLDER_TYPE), 0) in Verify that onDragStart has an effect if dragSource is this folder() 379 workspaceBuilder.createFolderInCell(FolderPoint(Point(1, 0), TWO_ICON_FOLDER_TYPE), 0) in Ensure we set the title and hint correctly onBackKey when we have a new title() 401 workspaceBuilder.createFolderInCell(FolderPoint(Point(1, 0), TWO_ICON_FOLDER_TYPE), 0) in Ensure we set the title and hint correctly onBackKey when we do not have a new title() 608 workspaceBuilder.createFolderInCell(FolderPoint(Point(1, 0), TWO_ICON_FOLDER_TYPE), 0) in getItemCount should return the number of items in the folder() 711 workspaceBuilder.createFolderInCell(FolderPoint(Point(1, 0), TWO_ICON_FOLDER_TYPE), 0) in getItemCount should return the size of info getContents size() 832 workspaceBuilder.createFolderInCell(FolderPoint(Point(1, 0), TWO_ICON_FOLDER_TYPE), 0) in onRemove should call removeItem with the correct views() [all …]
|
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/celllayout/board/ |
D | CellLayoutBoard.java | 54 List<FolderPoint> mFolderPoints = new ArrayList<>(); 107 public List<FolderPoint> getFolders() { in getFolders() 318 private static List<FolderPoint> getFolderPoints(char[][] board) { in getFolderPoints() 319 List<FolderPoint> folderPoints = new ArrayList<>(); in getFolderPoints() 323 folderPoints.add(new FolderPoint(new Point(x, y), board[x][y])); in getFolderPoints()
|
D | BoardClasses.kt | 40 data class FolderPoint(val coord: Point, val type: Char) { in shouldIgnore() class
|
D | TestWorkspaceBuilder.kt | 145 fun createFolderInCell(folderPoint: FolderPoint, paramScreenId: Int): FolderInfo = in createFolderInCell()
|