/packages/apps/Settings/src/com/android/settings/search/ |
SearchIndexableResources.java | 71 Ranking.getRankForClassName(WifiSettings.class.getName()), 78 Ranking.getRankForClassName(AdvancedWifiSettings.class.getName()), 85 Ranking.getRankForClassName(SavedAccessPointsWifiSettings.class.getName()), 92 Ranking.getRankForClassName(BluetoothSettings.class.getName()), 99 Ranking.getRankForClassName(SimSettings.class.getName()), 106 Ranking.getRankForClassName(DataUsageSummary.class.getName()), 113 Ranking.getRankForClassName(DataUsageMeteredSettings.class.getName()), 120 Ranking.getRankForClassName(WirelessSettings.class.getName()), 127 Ranking.getRankForClassName(ScreenZoomSettings.class.getName()), 134 Ranking.getRankForClassName(DisplaySettings.class.getName()) [all...] |
Ranking.java | 61 * Utility class for dealing with Search Ranking. 63 public final class Ranking {
|
Index.java | 334 final int baseRank = Ranking.getBaseRankForAuthority(authority); [all...] |
/packages/apps/Settings/src/com/android/settings/notification/ |
ImportanceSeekBarPreference.java | 122 setProgress(NotificationListenerService.Ranking.IMPORTANCE_DEFAULT); 124 NotificationListenerService.Ranking.IMPORTANCE_DEFAULT, true); 127 NotificationListenerService.Ranking.IMPORTANCE_UNSPECIFIED, true); 143 setProgress(NotificationListenerService.Ranking.IMPORTANCE_DEFAULT); 145 NotificationListenerService.Ranking.IMPORTANCE_UNSPECIFIED); 171 case NotificationListenerService.Ranking.IMPORTANCE_NONE: 173 case NotificationListenerService.Ranking.IMPORTANCE_MIN: 175 case NotificationListenerService.Ranking.IMPORTANCE_LOW: 177 case NotificationListenerService.Ranking.IMPORTANCE_DEFAULT: 179 case NotificationListenerService.Ranking.IMPORTANCE_HIGH [all...] |
NotificationSettingsBase.java | 36 import android.service.notification.NotificationListenerService.Ranking; 163 isSystemApp ? Ranking.IMPORTANCE_MIN : Ranking.IMPORTANCE_NONE); 164 mImportance.setMax(Ranking.IMPORTANCE_MAX); 166 mImportance.setAutoOn(importance == Ranking.IMPORTANCE_UNSPECIFIED); 181 boolean blocked = importance == Ranking.IMPORTANCE_NONE || banned; 188 blocked ? Ranking.IMPORTANCE_NONE : Ranking.IMPORTANCE_UNSPECIFIED; 200 silenced ? Ranking.IMPORTANCE_LOW : Ranking.IMPORTANCE_UNSPECIFIED [all...] |
AppNotificationSettings.java | 28 import android.service.notification.NotificationListenerService.Ranking; 112 setVisible(mSilent, checkCanBeVisible(Ranking.IMPORTANCE_MIN, importance)); 113 mSilent.setChecked(importance == Ranking.IMPORTANCE_LOW); 115 setVisible(mPriority, checkCanBeVisible(Ranking.IMPORTANCE_DEFAULT, importance) 118 checkCanBeVisible(Ranking.IMPORTANCE_MIN, importance) && lockscreenSecure); 122 if (importance == Ranking.IMPORTANCE_UNSPECIFIED) {
|
NotificationBackend.java | 101 return NotificationListenerService.Ranking.VISIBILITY_NO_OVERRIDE; 130 return NotificationListenerService.Ranking.IMPORTANCE_UNSPECIFIED;
|
NotificationStation.java | 31 import android.service.notification.NotificationListenerService.Ranking; 90 public void onNotificationPosted(StatusBarNotification sbn, RankingMap ranking) { 92 ranking == null ? 0 : ranking.getOrderedKeys().length); 93 mRanking = ranking; 98 public void onNotificationRemoved(StatusBarNotification notification, RankingMap ranking) { 100 ranking == null ? 0 : ranking.getOrderedKeys().length); 101 mRanking = ranking; 106 public void onNotificationRankingUpdate(RankingMap ranking) { [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
NotificationGuts.java | 33 import android.service.notification.NotificationListenerService.Ranking; 179 mStartingUserImportance = NotificationListenerService.Ranking.IMPORTANCE_UNSPECIFIED; 228 return Ranking.IMPORTANCE_UNSPECIFIED; 232 return Ranking.IMPORTANCE_NONE; 234 return Ranking.IMPORTANCE_LOW; 236 return Ranking.IMPORTANCE_UNSPECIFIED; 261 if (importance == NotificationListenerService.Ranking.IMPORTANCE_LOW) { 277 NotificationListenerService.Ranking.IMPORTANCE_MIN 278 : NotificationListenerService.Ranking.IMPORTANCE_NONE; 279 mSeekBar.setMax(NotificationListenerService.Ranking.IMPORTANCE_MAX) [all...] |
NotificationData.java | 23 import android.service.notification.NotificationListenerService.Ranking; 176 private final Ranking mTmpRanking = new Ranking(); 183 private final Ranking mRankingA = new Ranking(); 184 private final Ranking mRankingB = new Ranking(); 190 int aImportance = Ranking.IMPORTANCE_DEFAULT; 191 int bImportance = Ranking.IMPORTANCE_DEFAULT; 209 && aImportance > Ranking.IMPORTANCE_MIN [all...] |
BaseStatusBar.java | 120 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_HIGH; [all...] |
/frameworks/base/services/core/java/com/android/server/notification/ |
NotificationRecord.java | 18 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_MIN; 19 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_UNSPECIFIED; 20 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_DEFAULT; 21 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_HIGH; 22 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_LOW; 23 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_MAX; 70 // to communicate with the ranking module. 77 // The timestamp used for ranking. 169 // copy any notes that the ranking system may have made before the update 274 + NotificationListenerService.Ranking.importanceToString(mUserImportance)) [all...] |
NotificationIntrusivenessExtractor.java | 27 * notifications and marks them to get a temporary ranking bump. 34 the top of the ranking order, before it falls back to its natural position. */ 47 if (record.getImportance() >= NotificationListenerService.Ranking.IMPORTANCE_DEFAULT) {
|
RankingHelper.java | 23 import android.service.notification.NotificationListenerService.Ranking; 49 private static final String TAG_RANKING = "ranking"; 62 private static final int DEFAULT_VISIBILITY = Ranking.VISIBILITY_NO_OVERRIDE; 63 private static final int DEFAULT_IMPORTANCE = Ranking.IMPORTANCE_UNSPECIFIED; 247 // record individual ranking result and nominate proxies for each group 290 // Do a second ranking pass, using group proxies 369 boolean wasEnabled = getImportance(packageName, uid) != Ranking.IMPORTANCE_NONE; 373 setImportance(packageName, uid, enabled ? DEFAULT_IMPORTANCE : Ranking.IMPORTANCE_NONE); 412 pw.print(Ranking.importanceToString(r.importance)); 428 JSONObject ranking = new JSONObject() local [all...] |
NotificationManagerService.java | 41 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_DEFAULT; 42 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_NONE; 192 // ranking thread messages [all...] |
NotificationUsageStats.java | 19 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_HIGH; [all...] |
/packages/experimental/NotificationListenerSample/src/com/android/example/notificationlistener/ |
Listener.java | 30 import android.service.notification.NotificationListenerService.Ranking; 89 private final Ranking mTmpRanking = new Ranking(); 108 private final Ranking mLhsRanking = new Ranking(); 109 private final Ranking mRhsRanking = new Ranking();
|
/packages/apps/Settings/src/com/android/settings/applications/ |
AppStateNotificationBridge.java | 95 return row.appImportance > NotificationListenerService.Ranking.IMPORTANCE_NONE 96 && row.appImportance < NotificationListenerService.Ranking.IMPORTANCE_DEFAULT;
|
InstalledAppDetails.java | 55 import android.service.notification.NotificationListenerService.Ranking; [all...] |
/frameworks/base/core/java/android/service/notification/ |
NotificationListenerService.java | 60 * posted or removed, or their ranking changed. 233 * @param rankingMap The current ranking map that can be used to retrieve ranking information 277 * @param rankingMap The current ranking map that can be used to retrieve ranking information 304 * Implement this method to be notified when the notification ranking changes. 306 * @param rankingMap The current ranking map that can be used to retrieve ranking information 622 * {@link Ranking#matchesInterruptionFilter()}. 694 * Returns current ranking information [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/ |
MockListener.java | 198 Ranking rank = new Ranking();
|
/frameworks/base/services/tests/servicestests/src/com/android/server/notification/ |
BuzzBeepBlinkTest.java | 29 import android.service.notification.NotificationListenerService.Ranking; 237 r.setImportance(Ranking.IMPORTANCE_MIN, "foo");
|
/frameworks/base/packages/ExtServices/src/android/ext/services/notification/ |
Ranker.java | 19 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_UNSPECIFIED;
|
/frameworks/base/core/java/android/app/ |
NotificationManager.java | 39 import android.service.notification.NotificationListenerService.Ranking; [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
PhoneStatusBar.java | 1585 removeNotification(toRemove.get(i).getStatusBarNotification().getKey(), ranking); local [all...] |