Searched refs:unread (Results 1 - 13 of 13) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
H A DMimeBoundaryInputStream.java68 this.s.unread(b);
103 * Consumes all unread bytes of this stream. After a call to this method
138 s.unread(b2);
153 s.unread(b);
156 s.unread(boundary[j]);
H A DEOLConvertingInputStream.java106 in.unread(c);
/packages/services/Telephony/src/org/apache/james/mime4j/
H A DMimeBoundaryInputStream.java68 this.s.unread(b);
103 * Consumes all unread bytes of this stream. After a call to this method
138 s.unread(b2);
153 s.unread(b);
156 s.unread(boundary[j]);
H A DEOLConvertingInputStream.java106 in.unread(c);
/packages/apps/Messaging/tests/src/com/android/messaging/ui/conversationlist/
H A DConversationListItemViewTest.java89 final boolean unread = !isRead(cursor, index);
90 verifyContent(view, name, snippet, timestamp, unread);
98 final boolean unread) {
111 if (unread) {
93 verifyContent( final ConversationListItemView view, final String conversationName, final String snippet, final String timestamp, final boolean unread) argument
/packages/apps/Messaging/src/com/android/messaging/widget/
H A DBaseWidgetFactory.java156 * Make the given text bold if the item is unread
158 protected CharSequence boldifyIfUnread(CharSequence text, final boolean unread) { argument
159 if (!unread) {
/packages/apps/UnifiedEmail/src/com/android/mail/analytics/
H A DAnalyticsUtils.java77 } else if (id == R.id.unread) {
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DSelectedConversationsActionMenu.java163 } else if (itemId == R.id.unread) {
312 * marked unread.
405 final MenuItem unread = menu.findItem(R.id.unread);
406 unread.setVisible(showMarkUnread);
H A DConversationItemViewModel.java64 public boolean unread; field in class:ConversationItemViewModel
156 header.unread = !conv.read;
251 // If any are unread, get the first unread sender.
252 // If all are unread, get the first sender.
H A DConversationItemView.java713 createSubject(mHeader.unread);
1185 boolean isUnread = mHeader.unread;
1348 * 1. Read / Unread (unread messages have a lighter background)
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DFolderItemView.java85 mUnreadCountTextView = (TextView)findViewById(R.id.unread);
141 * Sets the unread count, taking care to hide/show the textview if the count is zero/non-zero.
165 * Used if we detect a problem with the unread count and want to force an override.
169 LogUtils.e(LOG_TAG, "FLF->FolderItem.getFolderView: unread count mismatch found (%s vs %d)",
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
H A DMockUiProvider.java277 String name, int unread, int total) {
278 return createFolderDetailsMap(folderId, accountId, name, false, unread, total);
282 String name, boolean hasChildren, int unread, int total) {
293 folderMap.put(FolderColumns.UNREAD_COUNT, unread);
276 createFolderDetailsMap(int folderId, int accountId, String name, int unread, int total) argument
281 createFolderDetailsMap(int folderId, int accountId, String name, boolean hasChildren, int unread, int total) argument
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DNotificationUtils.java91 public static final String EXTRA_UNREAD_COUNT = "unread-count";
95 /** Contains a list of <(account, label), unread conversations> */
143 * Class representing the existing notifications, and the number of unread and
195 * Returns the unread count for the given NotificationKey.
203 * Returns the unread unseen count for the given NotificationKey.
211 * Store the unread and unseen value for the given NotificationKey
213 public void put(NotificationKey key, int unread, int unseen) { argument
215 new Pair<Integer, Integer>(Integer.valueOf(unread), Integer.valueOf(unseen));
302 * @return the title of this notification with each account and the number of unread and unseen
303 * conversations for it. Also remove any account in the map that has 0 unread
[all...]

Completed in 1232 milliseconds