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

/packages/apps/UnifiedEmail/src/com/android/mail/adapter/
H A DDrawerItem.java174 * @param unreadCount the unread count of the account, pass zero if
179 int unreadCount, boolean isCurrentAccount, BidiFormatter bidiFormatter) {
180 return new DrawerItem(VIEW_ACCOUNT, activity, null, ACCOUNT, account, unreadCount,
178 ofAccount(ControllableActivity activity, Account account, int unreadCount, boolean isCurrentAccount, BidiFormatter bidiFormatter) argument
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DNotificationUtils.java219 final Integer unreadCount = value.first;
221 if (unreadCount != null && unseenCount != null) {
224 unreadCount.toString(), unseenCount.toString()};
400 public static void setNewEmailIndicator(Context context, final int unreadCount, argument
403 LogUtils.d(LOG_TAG, "setNewEmailIndicator unreadCount = %d, unseenCount = %d, account = %s,"
404 + " folder = %s, getAttention = %b", unreadCount, unseenCount, account.name,
414 if (unreadCount == 0) {
427 notificationMap.put(key, unreadCount, unseenCount);
464 final int unreadCount = unread != null ? unread.intValue() : 0;
501 if (unseenCount > unreadCount) {
733 configureLatestEventInfoFromConversation(final Context context, final Account account, final FolderPreferences folderPreferences, final NotificationCompat.Builder notification, final Cursor conversationCursor, final PendingIntent clickIntent, final Intent notificationIntent, final int unreadCount, final int unseenCount, final Folder folder, final long when) argument
[all...]
H A DUtils.java653 public static String getUnreadCountString(Context context, int unreadCount) { argument
659 if (unreadCount > sMaxUnreadCount) {
665 } else if (unreadCount <= 0) {
669 unreadCountString = String.format("%d", unreadCount);
677 public static CharSequence getUnreadMessageString(Context context, int unreadCount) { argument
683 if (unreadCount > sMaxUnreadCount) {
688 R.plurals.actionbar_unread_messages, unreadCount, unreadCount));
1284 return folder.unreadCount;
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DFolder.java122 public int unreadCount; field in class:Folder
274 public Builder setUnreadCount(final int unreadCount) { argument
275 mUnreadCount = unreadCount;
338 int unseenCount, int unreadCount, int totalCount, Uri refreshUri, int syncStatus,
352 this.unreadCount = unreadCount;
391 unreadCount = cursor.getInt(UIProvider.FOLDER_UNREAD_COUNT_COLUMN);
451 unreadCount = in.readInt();
488 dest.writeInt(unreadCount);
824 f.unreadCount
336 Folder(int id, String persistentId, Uri uri, String name, int capabilities, boolean hasChildren, int syncWindow, Uri conversationListUri, Uri childFoldersListUri, int unseenCount, int unreadCount, int totalCount, Uri refreshUri, int syncStatus, int lastSyncResult, int type, int iconResId, int notificationIconResId, String bgColor, String fgColor, Uri loadMoreUri, String hierarchicalDesc, Uri parent, final long lastMessageTimestamp, final String unreadSenders) argument
[all...]

Completed in 763 milliseconds