OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:systemShortcut
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Launcher3/src/com/android/launcher3/popup/
PopupPopulator.java
76
@NonNull List<
SystemShortcut
> systemShortcuts) {
186
final NotificationItemView notificationView, final List<
SystemShortcut
> systemShortcuts,
223
final
SystemShortcut
systemShortcut
= systemShortcuts.get(i);
225
systemShortcutViews.get(i),
systemShortcut
, launcher, originalInfo));
282
private final
SystemShortcut
mSystemShortcutInfo;
287
SystemShortcut
systemShortcut
, Launcher launcher, ItemInfo originalInfo) {
290
mSystemShortcutInfo =
systemShortcut
;
304
public static void initializeSystemShortcut(Context context, View view,
SystemShortcut
info)
[
all
...]
PopupDataProvider.java
53
private static final
SystemShortcut
[] SYSTEM_SHORTCUTS = new
SystemShortcut
[] {
54
new
SystemShortcut
.AppInfo(),
55
new
SystemShortcut
.Widgets(),
251
public @NonNull List<
SystemShortcut
> getEnabledSystemShortcutsForItem(ItemInfo info) {
252
List<
SystemShortcut
> systemShortcuts = new ArrayList<>();
253
for (
SystemShortcut
systemShortcut
: SYSTEM_SHORTCUTS) {
254
if (
systemShortcut
.getOnClickListener(mLauncher, info) != null) {
255
systemShortcuts.add(
systemShortcut
);
[
all
...]
Completed in 354 milliseconds