Home
last modified time | relevance | path

Searched refs:shortcutIntent (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/policy/
DModifierShortcutManager.java148 Intent shortcutIntent = null; in getIntent() local
156 shortcutIntent = shortcutMap.get(shortcutChar); in getIntent()
160 if (shortcutIntent == null) { in getIntent()
163 shortcutIntent = shortcutMap.get(shortcutChar); in getIntent()
165 if (shortcutIntent == null) { in getIntent()
170 shortcutIntent = getRoleLaunchIntent(role); in getIntent()
176 return shortcutIntent; in getIntent()
399 final Intent shortcutIntent = getIntent(kcm, keyCode, metaState); in handleIntentShortcut() local
400 if (shortcutIntent != null) { in handleIntentShortcut()
401 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in handleIntentShortcut()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/shortcut/
DCreateBubbleShortcutActivity.kt45 val shortcutIntent = shortcutManager?.createShortcutResultIntent(shortcutInfo) in createShortcut() constant
46 if (shortcutIntent != null) { in createShortcut()
47 setResult(RESULT_OK, shortcutIntent) in createShortcut()
/frameworks/base/core/tests/coretests/src/android/content/pm/
DAppSearchShortcutInfoTest.java49 final Intent shortcutIntent = new Intent(Intent.ACTION_VIEW); in testBuildShortcutAndGetValue() local
54 .setIntent(shortcutIntent) in testBuildShortcutAndGetValue()
65 assertThat(shortcut.getIntent().toString()).isEqualTo(shortcutIntent.toString()); in testBuildShortcutAndGetValue()
/frameworks/base/packages/SystemUI/src/com/android/systemui/notetask/shortcut/
DCreateNoteTaskShortcutActivity.kt50 val shortcutIntent = shortcutManager.createShortcutResultIntent(shortcutInfo) in onCreate() constant
51 setResult(Activity.RESULT_OK, shortcutIntent) in onCreate()