/packages/apps/Launcher3/src/com/android/launcher3/logging/ |
D | StatsLogUtils.java | 72 int containerType = DEFAULT_CONTAINERTYPE; in getContainerTypeFromState() local 75 containerType = ContainerType.ALLAPPS; in getContainerTypeFromState() 78 containerType = ContainerType.WORKSPACE; in getContainerTypeFromState() 81 containerType = ContainerType.OVERVIEW; in getContainerTypeFromState() 84 return containerType; in getContainerTypeFromState()
|
D | LoggerUtils.java | 106 str = getFieldName(t.containerType, ContainerType.class); in getTargetStr() 107 if (t.containerType == ContainerType.WORKSPACE || in getTargetStr() 108 t.containerType == ContainerType.HOTSEAT || in getTargetStr() 109 t.containerType == NAVBAR) { in getTargetStr() 111 } else if (t.containerType == ContainerType.FOLDER) { in getTargetStr() 226 public static Target newContainerTarget(int containerType) { in newContainerTarget() argument 228 t.containerType = containerType; in newContainerTarget()
|
D | DumpTargetWrapper.java | 49 public DumpTargetWrapper(int containerType, int id) { in DumpTargetWrapper() argument 51 node = newContainerTarget(containerType, id); in DumpTargetWrapper() 105 dt.containerType = type; in newContainerTarget() 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()
|
D | UserEventDispatcher.java | 240 event.srcTarget[0].containerType = srcContainerType; in logActionCommand() 277 event.srcTarget[1].containerType = parentContainerType; in logActionOnControl() 292 public void logActionBounceTip(int containerType) { in logActionBounceTip() argument 294 newContainerTarget(containerType)); in logActionBounceTip() 299 public void logActionOnContainer(int action, int dir, int containerType) { in logActionOnContainer() argument 300 logActionOnContainer(action, dir, containerType, 0); in logActionOnContainer() 303 public void logActionOnContainer(int action, int dir, int containerType, int pageIndex) { in logActionOnContainer() argument 305 newContainerTarget(containerType)); in logActionOnContainer() 402 boolean gestureSwipeLeft, int containerType) { in logActionBack() argument 413 LauncherEvent event = newLauncherEvent(action, target, newContainerTarget(containerType)); in logActionBack()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | LauncherState.java | 122 public final int containerType; field in LauncherState 178 public LauncherState(int id, int containerType, int transitionDuration, int flags) { in LauncherState() argument 179 this.containerType = containerType; in LauncherState()
|
D | Launcher.java | 947 int containerType = mStateManager.getState().containerType; in logStopAndResume() local 948 if (containerType == ContainerType.WORKSPACE && mWorkspace != null) { in logStopAndResume() 950 containerType, -1, mWorkspace.isOverlayShown() ? -1 : 0); in logStopAndResume() 952 getUserEventDispatcher().logActionCommand(command, containerType, -1); in logStopAndResume() 1420 Target target = newContainerTarget(mStateManager.getState().containerType); in onNewIntent() 1826 event.srcTarget[1].containerType == ContainerType.PREDICTION) { in modifyUserEvent() 1834 event.srcTarget[2].containerType = ContainerType.ALLAPPS; in modifyUserEvent() 1836 event.srcTarget[2].containerType = ContainerType.TASKSWITCHER; in modifyUserEvent()
|
D | ShortcutAndWidgetContainer.java | 50 public ShortcutAndWidgetContainer(Context context, @ContainerType int containerType) { in ShortcutAndWidgetContainer() argument 54 mContainerType = containerType; in ShortcutAndWidgetContainer()
|
D | DeviceProfile.java | 607 public int getCellHeight(@ContainerType int containerType) { in getCellHeight() argument 608 switch (containerType) { in getCellHeight()
|
D | Hotseat.java | 76 targetParent.containerType = LauncherLogProto.ContainerType.HOTSEAT; in fillInLogContainerData()
|
/packages/apps/Launcher3/tests/tapl/com/android/launcher3/tapl/ |
D | LauncherInstrumentation.java | 417 private UiObject2 verifyContainerType(ContainerType containerType) { in verifyContainerType() argument 435 log("verifyContainerType: " + containerType); in verifyContainerType() 437 final UiObject2 container = verifyVisibleObjects(containerType); in verifyContainerType() 439 if (mOnSettledStateAction != null) mOnSettledStateAction.accept(containerType); in verifyContainerType() 444 private UiObject2 verifyVisibleObjects(ContainerType containerType) { in verifyVisibleObjects() argument 446 "but the current state is not " + containerType.name())) { in verifyVisibleObjects() 447 switch (containerType) { in verifyVisibleObjects() 492 fail("Invalid state: " + containerType); in verifyVisibleObjects()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/inputconsumers/ |
D | OverviewWithoutFocusInputConsumer.java | 155 int containerType = StatsLogUtils.getContainerTypeFromState(activity.getCurrentState()); in finishTouchTracking() local 157 touch, Direction.UP, containerType, pageIndex); in finishTouchTracking()
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
D | DiscoveryBounce.java | 136 private void show(int containerType) { in show() argument 139 mLauncher.getUserEventDispatcher().logActionBounceTip(containerType); in show()
|
D | AllAppsRecyclerView.java | 151 targetParent.containerType = ContainerType.SEARCHRESULT; in fillInLogContainerData() 153 targetParent.containerType = ContainerType.ALLAPPS; in fillInLogContainerData()
|
D | AllAppsContainerView.java | 312 targetParent.containerType = ContainerType.SEARCHRESULT; in fillInLogContainerData() 314 targetParent.containerType = ContainerType.ALLAPPS; in fillInLogContainerData()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/ |
D | WindowTransformSwipeHandler.java | 164 int containerType, boolean recentsAttachedToAppWindow) { in GestureEndTarget() argument 169 this.containerType = containerType; in GestureEndTarget() 182 public final int containerType; field in WindowTransformSwipeHandler.GestureEndTarget 854 endTarget.containerType, in doLogGesture()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/touchcontrollers/ |
D | NavBarToHomeTouchController.java | 198 logStateChange(mStartState.containerType, logAction); in onDragEnd() 233 mEndState.containerType, in logStateChange()
|
D | NoButtonQuickSwitchTouchController.java | 441 mStartState.containerType, in onAnimationToStateCompleted() 442 targetState.containerType, in onAnimationToStateCompleted()
|
/packages/apps/Launcher3/tests/src/com/android/launcher3/ui/ |
D | AbstractLauncherUiTest.java | 112 containerType -> executeOnLauncher( in AbstractLauncherUiTest() 114 checkLauncherIntegrity(launcher, containerType))); in AbstractLauncherUiTest()
|
/packages/apps/Launcher3/src/com/android/launcher3/touch/ |
D | AbstractStateChangeTouchController.java | 537 mStartState.containerType, in logReachedState() 538 targetState.containerType, in logReachedState()
|
/packages/apps/Launcher3/src/com/android/launcher3/folder/ |
D | Folder.java | 1369 targetParent.containerType = ContainerType.FOLDER; in fillInLogContainerData() 1542 folder_target.containerType = LauncherLogProto.ContainerType.FOLDER; in logEditFolderLabel() 1552 parent_target.containerType = LauncherLogProto.ContainerType.HOTSEAT; in logEditFolderLabel() 1555 parent_target.containerType = LauncherLogProto.ContainerType.WORKSPACE; in logEditFolderLabel()
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/logging/ |
D | UserEventDispatcherExtension.java | 61 target.containerType = LauncherLogProto.ContainerType.TIP; in logActionTip()
|
D | StatsLogCompatManager.java | 198 switch (src.containerType) { in copy()
|
/packages/apps/Launcher3/go/quickstep/src/com/android/quickstep/ |
D | LauncherActivityControllerHelper.java | 104 return launcher != null ? launcher.getStateManager().getState().containerType
|
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/ |
D | PinItemDragListener.java | 109 targetParent.containerType = LauncherLogProto.ContainerType.PINITEM; in fillInLogContainerData()
|
/packages/apps/Launcher3/src/com/android/launcher3/widget/ |
D | BaseWidgetSheet.java | 159 targetParent.containerType = ContainerType.WIDGETS; in fillInLogContainerData()
|