Home
last modified time | relevance | path

Searched refs:ContainerType (Results 1 – 25 of 63) sorted by relevance

123

/packages/apps/Launcher3/src/com/android/launcher3/model/
DAppLaunchTracker.java26 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
39 public static final String CONTAINER_DEFAULT = Integer.toString(ContainerType.WORKSPACE);
40 public static final String CONTAINER_ALL_APPS = Integer.toString(ContainerType.ALLAPPS);
41 public static final String CONTAINER_PREDICTIONS = Integer.toString(ContainerType.PREDICTION);
42 public static final String CONTAINER_SEARCH = Integer.toString(ContainerType.SEARCHRESULT);
DBgDataModel.java37 import com.android.launcher3.model.nano.LauncherDumpProto.ContainerType;
182 DumpTargetWrapper hotseat = new DumpTargetWrapper(ContainerType.HOTSEAT, 0); in dumpProto()
187 new DumpTargetWrapper(ContainerType.WORKSPACE, i)); in dumpProto()
193 dtw = new DumpTargetWrapper(ContainerType.FOLDER, folders.size()); in dumpProto()
/packages/apps/Launcher3/src/com/android/launcher3/logging/
DStatsLogUtils.java3 import static com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType.DEFAULT_CONTAINER…
9 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
75 containerType = ContainerType.ALLAPPS; in getContainerTypeFromState()
78 containerType = ContainerType.WORKSPACE; in getContainerTypeFromState()
81 containerType = ContainerType.OVERVIEW; in getContainerTypeFromState()
DLoggerUtils.java18 import static com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType.NAVBAR;
30 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
106 str = getFieldName(t.containerType, ContainerType.class); in getTargetStr()
107 if (t.containerType == ContainerType.WORKSPACE || in getTargetStr()
108 t.containerType == ContainerType.HOTSEAT || in getTargetStr()
111 } else if (t.containerType == ContainerType.FOLDER) { in getTargetStr()
DDumpTargetWrapper.java29 import com.android.launcher3.model.nano.LauncherDumpProto.ContainerType;
118 String str = LoggerUtils.getFieldName(t.containerType, ContainerType.class); in getDumpTargetStr()
119 if (t.containerType == ContainerType.WORKSPACE) { in getDumpTargetStr()
121 } else if (t.containerType == ContainerType.FOLDER) { in getDumpTargetStr()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/logging/
DStatsLogCompatManager.java40 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
199 case ContainerType.HOTSEAT: in copy()
202 case ContainerType.FOLDER: in copy()
205 case ContainerType.PREDICTION: in copy()
208 case ContainerType.SEARCHRESULT: in copy()
DUserEventDispatcherExtension.java49 dstContainerType == LauncherLogProto.ContainerType.TASKSWITCHER); in logStateChangeAction()
61 target.containerType = LauncherLogProto.ContainerType.TIP; in logActionTip()
/packages/apps/Launcher3/tests/tapl/com/android/launcher3/tapl/
DOverview.java23 import com.android.launcher3.tapl.LauncherInstrumentation.ContainerType;
37 protected ContainerType getContainerType() { in getContainerType()
38 return LauncherInstrumentation.ContainerType.OVERVIEW; in getContainerType()
DHome.java40 protected LauncherInstrumentation.ContainerType getContainerType() { in getContainerType()
41 return LauncherInstrumentation.ContainerType.WORKSPACE; in getContainerType()
DLauncherInstrumentation.java94 public enum ContainerType { enum in LauncherInstrumentation
109 protected abstract ContainerType getContainerType(); in getContainerType()
143 private Consumer<ContainerType> mOnSettledStateAction;
312 public void setOnSettledStateAction(Consumer<ContainerType> onSettledStateAction) { in setOnSettledStateAction()
417 private UiObject2 verifyContainerType(ContainerType containerType) { in verifyContainerType()
444 private UiObject2 verifyVisibleObjects(ContainerType containerType) { in verifyVisibleObjects()
DWidgets.java81 protected LauncherInstrumentation.ContainerType getContainerType() { in getContainerType()
82 return LauncherInstrumentation.ContainerType.WIDGETS; in getContainerType()
DBaseOverview.java43 protected LauncherInstrumentation.ContainerType getContainerType() { in getContainerType()
44 return LauncherInstrumentation.ContainerType.FALLBACK_OVERVIEW; in getContainerType()
/packages/apps/Launcher3/src_ui_overrides/com/android/launcher3/uioverrides/
DAllAppsSwipeController.java14 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
62 ContainerType.HOTSEAT : ContainerType.WORKSPACE; in getLogContainerTypeForNormalState()
/packages/apps/Launcher3/src/com/android/launcher3/widget/
DBaseWidgetSheet.java40 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
159 targetParent.containerType = ContainerType.WIDGETS; in fillInLogContainerData()
172 return ContainerType.WIDGETS; in getLogContainerType()
/packages/apps/Launcher3/src_ui_overrides/com/android/launcher3/uioverrides/states/
DOverviewState.java21 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
29 super(id, ContainerType.WORKSPACE, OVERVIEW_TRANSITION_MS, FLAG_DISABLE_RESTORE); in OverviewState()
DAllAppsState.java26 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
45 super(id, ContainerType.ALLAPPS, ALL_APPS_TRANSITION_MS, STATE_FLAGS); in AllAppsState()
/packages/apps/Launcher3/src/com/android/launcher3/
DShortcutAndWidgetContainer.java28 import com.android.launcher3.CellLayout.ContainerType;
39 @ContainerType private final int mContainerType;
50 public ShortcutAndWidgetContainer(Context context, @ContainerType int containerType) { in ShortcutAndWidgetContainer()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/
DWindowTransformSwipeHandler.java73 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
153 ContainerType.WORKSPACE, false),
156 | STATE_SCREENSHOT_VIEW_SHOWN, true, false, ContainerType.TASKSWITCHER, true),
159 ContainerType.APP, true),
161 LAST_TASK(0, STATE_RESUME_LAST_TASK, false, true, ContainerType.APP, false);
853 ContainerType.NAVBAR, ContainerType.APP, in doLogGesture()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/states/
DOverviewState.java48 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
72 this(id, ContainerType.TASKSWITCHER, transitionDuration, stateFlags); in OverviewState()
183 newContainerTarget(ContainerType.OVERVIEW));
/packages/apps/Launcher3/tests/src/com/android/launcher3/ui/
DAbstractLauncherUiTest.java18 import static com.android.launcher3.tapl.LauncherInstrumentation.ContainerType;
409 Launcher launcher, ContainerType expectedContainerType) { in checkLauncherIntegrity()
467 expectedContainerType == ContainerType.BACKGROUND || in checkLauncherIntegrity()
468 expectedContainerType == ContainerType.FALLBACK_OVERVIEW); in checkLauncherIntegrity()
/packages/apps/Launcher3/protos/
Dlauncher_log.proto36 // Used mainly for ContainerType.FOLDER, ItemType.*
43 optional ContainerType container_type = 6;
79 enum ContainerType { enum
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/states/
DAllAppsState.java25 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
43 super(id, ContainerType.ALLAPPS, ALL_APPS_TRANSITION_MS, STATE_FLAGS); in AllAppsState()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/
DPortraitStatesTouchController.java49 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
151 return isTouchOverHotseat(mLauncher, ev) ? ContainerType.HOTSEAT : ContainerType.WORKSPACE; in getLogContainerTypeForNormalState()
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DAllAppsRecyclerView.java40 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
151 targetParent.containerType = ContainerType.SEARCHRESULT; in fillInLogContainerData()
153 targetParent.containerType = ContainerType.ALLAPPS; in fillInLogContainerData()
/packages/apps/Launcher3/src/com/android/launcher3/states/
DSpringLoadedState.java28 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
40 super(id, ContainerType.OVERVIEW, SPRING_LOADED_TRANSITION_MS, STATE_FLAGS); in SpringLoadedState()

123