Searched refs:mImportance (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/service/notification/
H A DNotificationRankingUpdate.java31 private final int[] mImportance; field in class:NotificationRankingUpdate
50 mImportance = importance;
66 mImportance = new int[mKeys.length];
67 in.readIntArray(mImportance);
89 out.writeIntArray(mImportance);
128 return mImportance;
H A DNotificationListenerService.java1416 private @NotificationManager.Importance int mImportance; field in class:NotificationListenerService.Ranking
1495 return mImportance;
1593 mImportance = importance;
1642 private ArrayMap<String, Integer> mImportance; field in class:NotificationListenerService.RankingMap
1730 if (mImportance == null) {
1734 Integer importance = mImportance.get(key);
1855 mImportance = new ArrayMap<>(orderedKeys.length);
1858 mImportance.put(key, importance[i]);
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java139 private int mImportance = IMPORTANCE_UNSPECIFIED; field in class:NotificationRecord
190 mImportance = calculateImportance();
517 pw.println(prefix + "mImportance="
518 + NotificationListenerService.Ranking.importanceToString(mImportance));
585 this.sbn.getTag(), this.mImportance, this.sbn.getKey(),
635 if (mImportance < IMPORTANCE_DEFAULT &&
699 mImportance = mUserImportance;
710 mImportance = importance;
717 return mImportance;
1113 .addTaggedData(MetricsEvent.FIELD_NOTIFICATION_CHANNEL_IMPORTANCE, mImportance)
[all...]
/frameworks/base/core/java/android/app/
H A DNotificationChannel.java138 private int mImportance = DEFAULT_IMPORTANCE; field in class:NotificationChannel
172 this.mImportance = importance;
194 mImportance = in.readInt();
239 dest.writeInt(mImportance);
434 this.mImportance = importance;
489 return mImportance;
951 + ", mImportance=" + mImportance
976 proto.write(NotificationChannelProto.IMPORTANCE, mImportance);

Completed in 139 milliseconds