Home
last modified time | relevance | path

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

123

/packages/apps/Launcher3/src/com/android/launcher3/logging/
DStatsLogManager.java62 case LauncherLogProto.ContainerType.ALLAPPS_VALUE: in containerTypeToAtomState()
64 case LauncherLogProto.ContainerType.OVERVIEW_VALUE: in containerTypeToAtomState()
66 case LauncherLogProto.ContainerType.WORKSPACE_VALUE: in containerTypeToAtomState()
68 case LauncherLogProto.ContainerType.APP_VALUE: in containerTypeToAtomState()
80 if (startContainerType == LauncherLogProto.ContainerType.WORKSPACE.getNumber() in getLauncherAtomEvent()
81 && targetContainerType == LauncherLogProto.ContainerType.WORKSPACE.getNumber()) { in getLauncherAtomEvent()
83 } else if (startContainerType != LauncherLogProto.ContainerType.TASKSWITCHER.getNumber() in getLauncherAtomEvent()
84 && targetContainerType == LauncherLogProto.ContainerType.TASKSWITCHER.getNumber()) { in getLauncherAtomEvent()
86 } else if (startContainerType != LauncherLogProto.ContainerType.ALLAPPS.getNumber() in getLauncherAtomEvent()
87 && targetContainerType == LauncherLogProto.ContainerType.ALLAPPS.getNumber()) { in getLauncherAtomEvent()
[all …]
/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);
43 public static final String CONTAINER_OVERVIEW = Integer.toString(ContainerType.OVERVIEW);
44 public static final String CONTAINER_HOTSEAT = Integer.toString(ContainerType.HOTSEAT);
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DGestureState.java26 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
47 HOME(true, ContainerType.WORKSPACE, false),
49 RECENTS(true, ContainerType.TASKSWITCHER, true),
51 NEW_TASK(false, ContainerType.APP, true),
53 LAST_TASK(false, ContainerType.APP, true);
/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.java39 protected LauncherInstrumentation.ContainerType getContainerType() { in getContainerType()
40 return LauncherInstrumentation.ContainerType.WORKSPACE; in getContainerType()
DBaseOverview.java41 protected LauncherInstrumentation.ContainerType getContainerType() { in getContainerType()
42 return LauncherInstrumentation.ContainerType.FALLBACK_OVERVIEW; in getContainerType()
DWidgets.java89 protected LauncherInstrumentation.ContainerType getContainerType() { in getContainerType()
90 return LauncherInstrumentation.ContainerType.WIDGETS; in getContainerType()
/packages/apps/Launcher3/src/com/android/launcher3/touch/
DAllAppsSwipeController.java27 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
75 ? ContainerType.HOTSEAT : ContainerType.WORKSPACE; in getLogContainerTypeForNormalState()
/packages/apps/Launcher3/src/com/android/launcher3/widget/
DBaseWidgetSheet.java40 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
155 Target target = newContainerTarget(ContainerType.WIDGETS); in fillInLogContainerData()
169 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, FLAG_DISABLE_RESTORE); in OverviewState()
DAllAppsState.java25 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
44 super(id, ContainerType.ALLAPPS, STATE_FLAGS); in AllAppsState()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/states/
DOverviewState.java35 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
57 this(id, ContainerType.TASKSWITCHER, stateFlags); in OverviewState()
183 newContainerTarget(ContainerType.OVERVIEW));
DOverviewModalTaskState.java24 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
37 super(id, ContainerType.OVERVIEW, STATE_FLAGS); in OverviewModalTaskState()
/packages/apps/Launcher3/src/com/android/launcher3/states/
DHintState.java22 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
33 super(id, ContainerType.DEFAULT_CONTAINERTYPE, STATE_FLAGS); in HintState()
DSpringLoadedState.java25 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
38 super(id, ContainerType.WORKSPACE, STATE_FLAGS); in SpringLoadedState()
/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/src/com/android/launcher3/uioverrides/states/
DAllAppsState.java28 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
46 super(id, ContainerType.ALLAPPS, STATE_FLAGS); in AllAppsState()
/packages/apps/Launcher3/protos/
Dlauncher_log.proto36 // Used mainly for ContainerType.FOLDER, ItemType.*
43 optional ContainerType container_type = 6;
113 enum ContainerType { enum
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/logging/
DUserEventDispatcherExtension.java49 dstContainerType == LauncherLogProto.ContainerType.TASKSWITCHER); in logStateChangeAction()
61 target.containerType = LauncherLogProto.ContainerType.TIP; in logActionTip()
/packages/apps/Launcher3/tests/src/com/android/launcher3/ui/
DAbstractLauncherUiTest.java60 import com.android.launcher3.tapl.LauncherInstrumentation.ContainerType;
531 Launcher launcher, ContainerType expectedContainerType) { in checkLauncherIntegrity()
589 expectedContainerType == ContainerType.BACKGROUND || in checkLauncherIntegrity()
590 expectedContainerType == ContainerType.FALLBACK_OVERVIEW); in checkLauncherIntegrity()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/
DPortraitStatesTouchController.java53 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
177 return isTouchOverHotseat(mLauncher, ev) ? ContainerType.HOTSEAT : ContainerType.WORKSPACE; in getLogContainerTypeForNormalState()
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DAllAppsRecyclerView.java43 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
182 getApps().hasFilter() ? ContainerType.SEARCHRESULT : ContainerType.ALLAPPS)); in fillInLogContainerData()
DDiscoveryBounce.java21 import static com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType.HOTSEAT;
22 import static com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType.PREDICTION;
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/
DFallbackActivityInterface.java152 ? LauncherLogProto.ContainerType.OTHER_LAUNCHER_APP in getContainerType()
153 : LauncherLogProto.ContainerType.APP; in getContainerType()
/packages/apps/Launcher3/src/com/android/launcher3/model/data/
DFolderInfo.java383 .setContainerType(LauncherLogProto.ContainerType.FOLDER) in getFolderLabelStateLauncherEvent()
400 return builder.setContainerType(LauncherLogProto.ContainerType.HOTSEAT); in newParentContainerTarget()
402 return builder.setContainerType(LauncherLogProto.ContainerType.WORKSPACE); in newParentContainerTarget()

123