Home
last modified time | relevance | path

Searched refs:actionHandler (Results 1 – 10 of 10) sorted by relevance

/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DAppsRowItemData.java45 public AppsRowItemData(Item item, ActionHandler actionHandler, boolean shouldShowSummary, in AppsRowItemData() argument
50 mActionHandler = actionHandler; in AppsRowItemData()
76 public AppData(AppItem item, ActionHandler actionHandler, boolean shouldShowSummary, in AppData() argument
78 super(item, actionHandler, shouldShowSummary, maybeShowBadge); in AppData()
97 public RootData(RootItem item, ActionHandler actionHandler, boolean shouldShowSummary, in RootData() argument
99 super(item, actionHandler, shouldShowSummary, maybeShowBadge); in RootData()
/packages/services/Car/car_product/car_ui_portrait/apps/CarUiPortraitSystemUI/src/com/android/systemui/car/qc/
DCarUiPortraitProfileSwitcher.java66 QCItem.ActionHandler actionHandler = (item, context, intent) -> { in createUserProfileRowForCurrentProfile() local
73 mUserIconProvider.getDrawableWithBadge(mContext, userInfo), actionHandler); in createUserProfileRowForCurrentProfile()
77 QCItem.ActionHandler actionHandler = (item, context, intent) -> { in createGuestProfileRowForCurrentProfile() local
90 actionHandler); in createGuestProfileRowForCurrentProfile()
94 QCItem.ActionHandler actionHandler) { in createUserProfileRowForCurrentProfile() argument
103 row.setActionHandler(actionHandler); in createUserProfileRowForCurrentProfile()
/packages/services/Car/car_product/distant_display/apps/CarDistantDisplaySystemUI/src/com/android/systemui/car/distantdisplay/common/
DDistantDisplayQcItem.java36 @Nullable Drawable icon, @Nullable QCItem.ActionHandler actionHandler) { in DistantDisplayQcItem() argument
40 mActionHandler = actionHandler; in DistantDisplayQcItem()
99 public Builder setActionHandler(@Nullable QCItem.ActionHandler actionHandler) { in setActionHandler() argument
100 mActionHandler = actionHandler; in setActionHandler()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/qc/
DProfileSwitcher.java217 QCItem.ActionHandler actionHandler = (item, context, intent) -> { in createUserProfileRow() local
225 mUserIconProvider.getDrawableWithBadge(mContext, userInfo), actionHandler); in createUserProfileRow()
229 QCItem.ActionHandler actionHandler = (item, context, intent) -> { in createGuestProfileRow() local
241 actionHandler); in createGuestProfileRow()
245 QCItem.ActionHandler actionHandler = (item, context, intent) -> { in createAddProfileRow() local
258 actionHandler); in createAddProfileRow()
271 QCItem.ActionHandler actionHandler) { in createProfileRow() argument
278 row.setActionHandler(actionHandler); in createProfileRow()
/packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/
DRootItem.java57 public RootItem(RootInfo root, ActionHandler actionHandler, boolean maybeShowBadge) { in RootItem() argument
58 this(root, actionHandler, "" /* packageName */, maybeShowBadge); in RootItem()
61 public RootItem(RootInfo root, ActionHandler actionHandler, String packageName, in RootItem() argument
65 mActionHandler = actionHandler; in RootItem()
DProfileItem.java31 public ProfileItem(ResolveInfo info, String title, ActionHandler actionHandler) { in ProfileItem() argument
32 super(info, title, UserId.CURRENT_USER, actionHandler); in ProfileItem()
DRootAndAppItem.java39 public RootAndAppItem(RootInfo root, ResolveInfo info, ActionHandler actionHandler, in RootAndAppItem() argument
41 super(root, actionHandler, info.activityInfo.packageName, maybeShowBadge); in RootAndAppItem()
DAppItem.java46 public AppItem(ResolveInfo info, String title, UserId userId, ActionHandler actionHandler) { in AppItem() argument
49 mActionHandler = actionHandler; in AppItem()
DRootsFragment.java757 static void ejectClicked(View ejectIcon, RootInfo root, ActionHandler actionHandler) { in ejectClicked() argument
762 actionHandler.ejectRoot( in ejectClicked()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/dirlist/
DTestEnvironment.java33 public TestEnvironment(Context testContext, TestEnv env, ActionHandler actionHandler) { in TestEnvironment() argument
36 mActionHandler = actionHandler; in TestEnvironment()