OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:numShortcuts
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/services/core/java/com/android/server/pm/
ShortcutParser.java
123
int
numShortcuts
= 0;
158
if (
numShortcuts
>= maxShortcuts) {
189
numShortcuts
++;
/packages/apps/Launcher3/src/com/android/launcher3/popup/
PopupPopulator.java
79
int
numShortcuts
= shortcutIds.size();
80
if (hasNotifications &&
numShortcuts
> MAX_SHORTCUTS_IF_NOTIFICATIONS) {
81
numShortcuts
= MAX_SHORTCUTS_IF_NOTIFICATIONS;
83
int numItems = Math.min(MAX_ITEMS,
numShortcuts
+ numNotificationItems)
PopupContainerWithArrow.java
205
int
numShortcuts
= shortcutViews.size() + systemShortcutViews.size();
209
numShortcuts
, originalIcon.getContentDescription().toString()));
212
R.string.shortcuts_menu_with_notifications_description,
numShortcuts
,
[
all
...]
/development/samples/ShortcutDemo/launcher/src/com/example/android/pm/shortcutlauncherdemo/
ShortcutListFragment.java
150
final int
numShortcuts
= mLauncherApps.getShortcuts(mQuery, user).size();
151
if (
numShortcuts
== 0) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
PersonalDictionaryLookup.java
632
int
numShortcuts
= 0;
634
numShortcuts
+= shortcuts.size();
636
stats.add(new DictionaryStats(ANY_LOCALE, Dictionary.TYPE_USER_SHORTCUT,
numShortcuts
));
647
+ " words and " +
numShortcuts
+ " shortcuts");
Completed in 1537 milliseconds