HomeSort by relevance Sort by last modified time
    Searched refs:Ranking (Results 1 - 25 of 30) sorted by null

1 2

  /packages/apps/Settings/src/com/android/settings/search/
SearchIndexableResources.java 72 Ranking.getRankForClassName(WifiSettings.class.getName()),
79 Ranking.getRankForClassName(AdvancedWifiSettings.class.getName()),
86 Ranking.getRankForClassName(SavedAccessPointsWifiSettings.class.getName()),
93 Ranking.getRankForClassName(BluetoothSettings.class.getName()),
100 Ranking.getRankForClassName(SimSettings.class.getName()),
107 Ranking.getRankForClassName(DataUsageSummary.class.getName()),
114 Ranking.getRankForClassName(DataUsageMeteredSettings.class.getName()),
121 Ranking.getRankForClassName(WirelessSettings.class.getName()),
128 Ranking.getRankForClassName(ScreenZoomSettings.class.getName()),
135 Ranking.getRankForClassName(DisplaySettings.class.getName())
    [all...]
Ranking.java 62 * Utility class for dealing with Search Ranking.
64 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;
164 notBlockable ? Ranking.IMPORTANCE_MIN : Ranking.IMPORTANCE_NONE);
165 mImportance.setMax(Ranking.IMPORTANCE_MAX);
167 mImportance.setAutoOn(importance == Ranking.IMPORTANCE_UNSPECIFIED);
182 boolean blocked = importance == Ranking.IMPORTANCE_NONE || banned;
189 blocked ? Ranking.IMPORTANCE_NONE : Ranking.IMPORTANCE_UNSPECIFIED;
199 mSilent.setChecked(importance == Ranking.IMPORTANCE_LOW);
205 silenced ? Ranking.IMPORTANCE_LOW : Ranking.IMPORTANCE_UNSPECIFIED
    [all...]
AppNotificationSettings.java 28 import android.service.notification.NotificationListenerService.Ranking;
111 setVisible(mSilent, checkCanBeVisible(Ranking.IMPORTANCE_MIN, importance));
112 mSilent.setChecked(importance == Ranking.IMPORTANCE_LOW);
114 setVisible(mPriority, checkCanBeVisible(Ranking.IMPORTANCE_DEFAULT, importance)
115 || (checkCanBeVisible(Ranking.IMPORTANCE_LOW, importance)
118 checkCanBeVisible(Ranking.IMPORTANCE_MIN, importance) && lockscreenSecure);
122 if (importance == Ranking.IMPORTANCE_UNSPECIFIED) {
NotificationBackend.java 111 return NotificationListenerService.Ranking.VISIBILITY_NO_OVERRIDE;
140 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/
NotificationData.java 23 import android.service.notification.NotificationListenerService.Ranking;
175 private final Ranking mTmpRanking = new Ranking();
182 private final Ranking mRankingA = new Ranking();
183 private final Ranking mRankingB = new Ranking();
189 int aImportance = Ranking.IMPORTANCE_DEFAULT;
190 int bImportance = Ranking.IMPORTANCE_DEFAULT;
208 && aImportance > Ranking.IMPORTANCE_MIN
    [all...]
NotificationGuts.java 33 import android.service.notification.NotificationListenerService.Ranking;
181 mStartingUserImportance = NotificationListenerService.Ranking.IMPORTANCE_UNSPECIFIED;
242 return Ranking.IMPORTANCE_UNSPECIFIED;
246 return Ranking.IMPORTANCE_NONE;
248 return Ranking.IMPORTANCE_LOW;
250 return Ranking.IMPORTANCE_UNSPECIFIED;
275 if (importance == NotificationListenerService.Ranking.IMPORTANCE_LOW) {
291 NotificationListenerService.Ranking.IMPORTANCE_MIN
292 : NotificationListenerService.Ranking.IMPORTANCE_NONE;
293 mSeekBar.setMax(NotificationListenerService.Ranking.IMPORTANCE_MAX)
    [all...]
BaseStatusBar.java 122 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;
193 // 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;
238 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 1710 removeNotification(toRemove.get(i).getStatusBarNotification().getKey(), ranking); local
    [all...]

Completed in 437 milliseconds

1 2