/packages/apps/Launcher3/src/com/android/launcher3/logging/ |
D | StatsLogManager.java | 62 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/ |
D | AppLaunchTracker.java | 26 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/ |
D | GestureState.java | 26 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/ |
D | Overview.java | 23 import com.android.launcher3.tapl.LauncherInstrumentation.ContainerType; 37 protected ContainerType getContainerType() { in getContainerType() 38 return LauncherInstrumentation.ContainerType.OVERVIEW; in getContainerType()
|
D | Home.java | 39 protected LauncherInstrumentation.ContainerType getContainerType() { in getContainerType() 40 return LauncherInstrumentation.ContainerType.WORKSPACE; in getContainerType()
|
D | BaseOverview.java | 41 protected LauncherInstrumentation.ContainerType getContainerType() { in getContainerType() 42 return LauncherInstrumentation.ContainerType.FALLBACK_OVERVIEW; in getContainerType()
|
D | Widgets.java | 89 protected LauncherInstrumentation.ContainerType getContainerType() { in getContainerType() 90 return LauncherInstrumentation.ContainerType.WIDGETS; in getContainerType()
|
/packages/apps/Launcher3/src/com/android/launcher3/touch/ |
D | AllAppsSwipeController.java | 27 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType; 75 ? ContainerType.HOTSEAT : ContainerType.WORKSPACE; in getLogContainerTypeForNormalState()
|
/packages/apps/Launcher3/src/com/android/launcher3/widget/ |
D | BaseWidgetSheet.java | 40 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/ |
D | OverviewState.java | 21 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType; 29 super(id, ContainerType.WORKSPACE, FLAG_DISABLE_RESTORE); in OverviewState()
|
D | AllAppsState.java | 25 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/ |
D | OverviewState.java | 35 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType; 57 this(id, ContainerType.TASKSWITCHER, stateFlags); in OverviewState() 183 newContainerTarget(ContainerType.OVERVIEW));
|
D | OverviewModalTaskState.java | 24 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/ |
D | HintState.java | 22 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType; 33 super(id, ContainerType.DEFAULT_CONTAINERTYPE, STATE_FLAGS); in HintState()
|
D | SpringLoadedState.java | 25 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType; 38 super(id, ContainerType.WORKSPACE, STATE_FLAGS); in SpringLoadedState()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | ShortcutAndWidgetContainer.java | 28 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/ |
D | AllAppsState.java | 28 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType; 46 super(id, ContainerType.ALLAPPS, STATE_FLAGS); in AllAppsState()
|
/packages/apps/Launcher3/protos/ |
D | launcher_log.proto | 36 // 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/ |
D | UserEventDispatcherExtension.java | 49 dstContainerType == LauncherLogProto.ContainerType.TASKSWITCHER); in logStateChangeAction() 61 target.containerType = LauncherLogProto.ContainerType.TIP; in logActionTip()
|
/packages/apps/Launcher3/tests/src/com/android/launcher3/ui/ |
D | AbstractLauncherUiTest.java | 60 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/ |
D | PortraitStatesTouchController.java | 53 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/ |
D | AllAppsRecyclerView.java | 43 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType; 182 getApps().hasFilter() ? ContainerType.SEARCHRESULT : ContainerType.ALLAPPS)); in fillInLogContainerData()
|
D | DiscoveryBounce.java | 21 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/ |
D | FallbackActivityInterface.java | 152 ? LauncherLogProto.ContainerType.OTHER_LAUNCHER_APP in getContainerType() 153 : LauncherLogProto.ContainerType.APP; in getContainerType()
|
/packages/apps/Launcher3/src/com/android/launcher3/model/data/ |
D | FolderInfo.java | 383 .setContainerType(LauncherLogProto.ContainerType.FOLDER) in getFolderLabelStateLauncherEvent() 400 return builder.setContainerType(LauncherLogProto.ContainerType.HOTSEAT); in newParentContainerTarget() 402 return builder.setContainerType(LauncherLogProto.ContainerType.WORKSPACE); in newParentContainerTarget()
|