OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ShortcutQuery
(Results
1 - 24
of
24
) sorted by null
/cts/hostsidetests/shortcuts/deviceside/common/src/android/content/pm/cts/shortcut/device/common/
ShortcutManagerDeviceTestBase.java
25
import android.content.pm.LauncherApps.
ShortcutQuery
;
86
final
ShortcutQuery
q = new
ShortcutQuery
()
87
.setQueryFlags(
ShortcutQuery
.FLAG_MATCH_DYNAMIC
88
|
ShortcutQuery
.FLAG_MATCH_MANIFEST
89
|
ShortcutQuery
.FLAG_MATCH_PINNED
90
|
ShortcutQuery
.FLAG_GET_KEY_FIELDS_ONLY)
116
final
ShortcutQuery
q = new
ShortcutQuery
()
117
.setQueryFlags(
ShortcutQuery
.FLAG_MATCH_DYNAMI
[
all
...]
/development/samples/ShortcutDemo/launcher/src/com/example/android/pm/shortcutlauncherdemo/
AppListFragment.java
20
import android.content.pm.LauncherApps.
ShortcutQuery
;
42
mQuery.setQueryFlags(
ShortcutQuery
.FLAG_MATCH_DYNAMIC
43
|
ShortcutQuery
.FLAG_MATCH_PINNED
44
|
ShortcutQuery
.FLAG_MATCH_MANIFEST
45
|
ShortcutQuery
.FLAG_GET_KEY_FIELDS_ONLY);
ShortcutListFragment.java
21
import android.content.pm.LauncherApps.
ShortcutQuery
;
98
final
ShortcutQuery
q = new
ShortcutQuery
()
100
.setQueryFlags(
ShortcutQuery
.FLAG_MATCH_PINNED)
144
ShortcutQuery
.FLAG_MATCH_PINNED |
ShortcutQuery
.FLAG_MATCH_DYNAMIC
145
|
ShortcutQuery
.FLAG_MATCH_MANIFEST
146
|
ShortcutQuery
.FLAG_GET_KEY_FIELDS_ONLY);
159
(b.getBoolean(ARG_INCLUDE_DYNAMIC) ?
ShortcutQuery
.FLAG_MATCH_DYNAMIC : 0) |
160
(b.getBoolean(ARG_INCLUDE_MANIFEST) ?
ShortcutQuery
.FLAG_MATCH_MANIFEST : 0)
[
all
...]
MyBaseListFragment.java
25
import android.content.pm.LauncherApps.
ShortcutQuery
;
45
protected final
ShortcutQuery
mQuery = new
ShortcutQuery
();
/cts/hostsidetests/shortcuts/deviceside/multiuser/src/android/content/pm/cts/shortcut/multiuser/
ShortcutManagerManagedUserTest.java
24
import android.content.pm.LauncherApps.
ShortcutQuery
;
39
final
ShortcutQuery
q = new
ShortcutQuery
();
71
final
ShortcutQuery
q = new
ShortcutQuery
()
72
.setQueryFlags(
ShortcutQuery
.FLAG_MATCH_DYNAMIC)
105
final
ShortcutQuery
q = new
ShortcutQuery
()
106
.setQueryFlags(
ShortcutQuery
.FLAG_MATCH_DYNAMIC)
ShortcutManagerSecondaryUserTest.java
25
import android.content.pm.LauncherApps.
ShortcutQuery
;
48
final
ShortcutQuery
q = new
ShortcutQuery
()
49
.setQueryFlags(
ShortcutQuery
.FLAG_MATCH_DYNAMIC)
80
final
ShortcutQuery
q = new
ShortcutQuery
();
/cts/tests/tests/shortcutmanager/src/android/content/pm/cts/shortcutmanager/
ShortcutManagerRequestPinTest.java
24
import android.content.pm.LauncherApps.
ShortcutQuery
;
82
final
ShortcutQuery
query = new
ShortcutQuery
()
85
.setQueryFlags(
ShortcutQuery
.FLAG_MATCH_DYNAMIC
86
|
ShortcutQuery
.FLAG_MATCH_PINNED |
ShortcutQuery
.FLAG_MATCH_MANIFEST);
ShortcutManagerSpoofDetectionTest.java
25
import android.content.pm.LauncherApps.
ShortcutQuery
;
94
ShortcutQuery
q = new
ShortcutQuery
();
ShortcutManagerMultiLauncherTest.java
18
import static android.content.pm.LauncherApps.
ShortcutQuery
.FLAG_GET_KEY_FIELDS_ONLY;
19
import static android.content.pm.LauncherApps.
ShortcutQuery
.FLAG_MATCH_DYNAMIC;
20
import static android.content.pm.LauncherApps.
ShortcutQuery
.FLAG_MATCH_MANIFEST;
21
import static android.content.pm.LauncherApps.
ShortcutQuery
.FLAG_MATCH_PINNED;
ShortcutManagerCtsTestsBase.java
26
import android.content.pm.LauncherApps.
ShortcutQuery
;
445
final
ShortcutQuery
q = new
ShortcutQuery
()
446
.setQueryFlags(
ShortcutQuery
.FLAG_MATCH_DYNAMIC
447
|
ShortcutQuery
.FLAG_MATCH_MANIFEST
448
|
ShortcutQuery
.FLAG_MATCH_PINNED
449
|
ShortcutQuery
.FLAG_GET_KEY_FIELDS_ONLY)
515
final
ShortcutQuery
q = new
ShortcutQuery
();
ShortcutManagerLauncherApiTest.java
18
import static android.content.pm.LauncherApps.
ShortcutQuery
.FLAG_GET_KEY_FIELDS_ONLY;
19
import static android.content.pm.LauncherApps.
ShortcutQuery
.FLAG_MATCH_DYNAMIC;
20
import static android.content.pm.LauncherApps.
ShortcutQuery
.FLAG_MATCH_MANIFEST;
21
import static android.content.pm.LauncherApps.
ShortcutQuery
.FLAG_MATCH_PINNED;
/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
DeepShortcutManager.java
23
import android.content.pm.LauncherApps.
ShortcutQuery
;
45
private static final int FLAG_GET_ALL =
ShortcutQuery
.FLAG_MATCH_DYNAMIC
46
|
ShortcutQuery
.FLAG_MATCH_MANIFEST |
ShortcutQuery
.FLAG_MATCH_PINNED;
97
return query(
ShortcutQuery
.FLAG_MATCH_MANIFEST |
ShortcutQuery
.FLAG_MATCH_DYNAMIC,
182
return query(
ShortcutQuery
.FLAG_MATCH_PINNED, packageName, null, null, user);
207
ShortcutQuery
q = new
ShortcutQuery
();
/frameworks/base/core/java/android/content/pm/
ShortcutServiceInternal.java
26
import android.content.pm.LauncherApps.
ShortcutQuery
;
48
@Nullable ComponentName componentName, @
ShortcutQuery
.QueryFlags int flags,
LauncherApps.java
254
* Represents a query passed to {@link #getShortcuts(
ShortcutQuery
, UserHandle)}.
256
public static class
ShortcutQuery
{
340
public
ShortcutQuery
() {
348
public
ShortcutQuery
setChangedSince(long changedSince) {
356
public
ShortcutQuery
setPackage(@Nullable String packageName) {
365
public
ShortcutQuery
setShortcutIds(@Nullable List<String> shortcutIds) {
375
public
ShortcutQuery
setActivity(@Nullable ComponentName activity) {
391
public
ShortcutQuery
setQueryFlags(@QueryFlags int queryFlags) {
697
public List<ShortcutInfo> getShortcuts(@NonNull
ShortcutQuery
query,
717
final
ShortcutQuery
q = new ShortcutQuery()
[
all
...]
ShortcutInfo.java
26
import android.content.pm.LauncherApps.
ShortcutQuery
;
[
all
...]
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
ShortcutManagerTest1.java
74
import android.content.pm.LauncherApps.
ShortcutQuery
;
[
all
...]
BaseShortcutManagerTest.java
56
import android.content.pm.LauncherApps.
ShortcutQuery
;
679
protected static final
ShortcutQuery
QUERY_ALL = new
ShortcutQuery
();
702
ShortcutQuery
.FLAG_GET_ALL_KINDS);
[
all
...]
/frameworks/base/services/core/java/com/android/server/pm/
LauncherAppsService.java
34
import android.content.pm.LauncherApps.
ShortcutQuery
;
[
all
...]
ShortcutService.java
40
import android.content.pm.LauncherApps.
ShortcutQuery
;
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
LockscreenFragment.java
25
import android.content.pm.LauncherApps.
ShortcutQuery
;
/frameworks/base/
compiled-classes-phone
[
all
...]
/prebuilts/sdk/26/
android.jar
/prebuilts/sdk/current/
android.jar
/prebuilts/sdk/system_current/
android.jar
Completed in 661 milliseconds