Home
last modified time | relevance | path

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

/packages/apps/Launcher3/tests/tapl/com/android/launcher3/tapl/
DHomeAppIcon.java132 public WorkspaceAppIcon dragToHotseat(int cellInd) { in dragToHotseat() argument
135 String.format("want to drag the icon to hotseat cell %d", cellInd)) in dragToHotseat() argument
137 final Supplier<Point> dest = () -> Workspace.getHotseatCellCenter(mLauncher, cellInd); in dragToHotseat()
150 cellInd), in dragToHotseat()
151 appIcon.isInHotseatCell(cellInd)); in dragToHotseat()
163 boolean isInHotseatCell(int cellInd) { in isInHotseatCell() argument
164 final Point center = Workspace.getHotseatCellCenter(mLauncher, cellInd); in isInHotseatCell()
DWorkspace.java333 public HomeAppIcon getHotseatAppIcon(int cellInd) { in getHotseatAppIcon() argument
335 final Point center = getHotseatCellCenter(mLauncher, cellInd); in getHotseatAppIcon()
341 new AssertionError("Unable to get a hotseat icon on " + cellInd)); in getHotseatAppIcon()
504 static Point getHotseatCellCenter(LauncherInstrumentation launcher, int cellInd) {
506 .setCellInd(cellInd).build()).getParcelable(TestProtocol.TEST_INFO_RESPONSE_FIELD);
/packages/apps/Launcher3/tests/multivalentTests/shared/com/android/launcher3/testing/shared/
DHotseatCellCenterRequest.java26 public final int cellInd; field in HotseatCellCenterRequest
35 dest.writeInt(cellInd); in writeToParcel()
57 private HotseatCellCenterRequest(int cellInd) { in HotseatCellCenterRequest() argument
58 this.cellInd = cellInd; in HotseatCellCenterRequest()
/packages/apps/Launcher3/src/com/android/launcher3/testing/
DTestInformationHandler.java307 hotseat, request.cellInd, /* cellY= */ 0, in call()