Searched defs:mBadgingEnabled (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingHelper.java97 private SparseBooleanArray mBadgingEnabled; field in class:RankingHelper
1158 if (mBadgingEnabled == null) {
1159 mBadgingEnabled = new SparseBooleanArray();
1163 for (int index = 0; index < mBadgingEnabled.size(); index++) {
1164 int userId = mBadgingEnabled.keyAt(index);
1165 final boolean oldValue = mBadgingEnabled.get(userId);
1169 mBadgingEnabled.put(userId, newValue);
1182 if (mBadgingEnabled.indexOfKey(userId) < 0) {
1183 mBadgingEnabled.put(userId,
1188 return mBadgingEnabled
[all...]

Completed in 55 milliseconds