Home
last modified time | relevance | path

Searched refs:unreadCount (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Email/src/com/android/email/activity/
DMailboxFragmentAdapter.java476 int mailboxType, int unreadCount, int messageCount, int rowType, int flags, in addMailboxRow() argument
487 row.add(unreadCount); in addMailboxRow()
580 final int unreadCount = Utility.getFirstRowInt(mContext, in loadInBackground() local
584 unreadCount, messageCount, ROW_TYPE_MAILBOX, mailbox.mFlags, in loadInBackground()
632 final int unreadCount = Mailbox.getUnreadCountByAccountAndMailboxType( in loadInBackground() local
635 unreadCount, unreadCount, ROW_TYPE_ACCOUNT, Mailbox.FLAG_NONE, in loadInBackground()
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertService.java270 int unreadCount = CellBroadcastReceiverApp.incrementUnreadAlertCount(); in addToNotificationBar() local
271 if (unreadCount > 1) { in addToNotificationBar()
274 builder.setContentText(getString(R.string.notification_multiple, unreadCount)); in addToNotificationBar()
/packages/apps/Email/src/com/android/email/
DFolderProperties.java152 public int getMessageCount(int mailboxType, int unreadCount, int totalCount) { in getMessageCount() argument
161 return unreadCount; in getMessageCount()
DNotificationController.java434 long newestMessageId, int unseenMessageCount, int unreadCount) { in createNewMessageNotification() argument
460 final Integer number = unreadCount > 1 ? unreadCount : null; in createNewMessageNotification()
880 Integer unreadCount = Utility.getFirstRowInt( in onChange() local
884 if (unreadCount == null) { in onChange()
891 newMessageCount, unreadCount); in onChange()
/packages/apps/Mms/src/com/android/mms/widget/
DMmsWidgetService.java158 int unreadCount = 0; in queryUnreadCount() local
164 unreadCount = cursor.getCount(); in queryUnreadCount()
171 return unreadCount; in queryUnreadCount()
/packages/apps/Email/tests/src/com/android/email/mail/store/
DImapStoreUnitTests.java742 int unreadCount = mFolder.getUnreadMessageCount(); in testGetUnreadMessageCountWithQuotedString() local
743 assertEquals("getUnreadMessageCount with quoted string", 2, unreadCount); in testGetUnreadMessageCountWithQuotedString()
759 int unreadCount = mFolder.getUnreadMessageCount(); in testGetUnreadMessageCountWithLiteralString() local
760 assertEquals("getUnreadMessageCount with literal string", 10, unreadCount); in testGetUnreadMessageCountWithLiteralString()