Home
last modified time | relevance | path

Searched refs:firstUnread (Results 1 – 3 of 3) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DConversationItemViewModel.java265 ParticipantInfo firstUnread = null; in getContentDescription() local
268 firstUnread = p; in getContentDescription()
272 if (firstUnread != null) { in getContentDescription()
273 participant = TextUtils.isEmpty(firstUnread.name) ? in getContentDescription()
274 SendersView.getMe(showToHeader /* useObjectMe */) : firstUnread.name; in getContentDescription()
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
DConversationInfo.java46 public ConversationInfo(int messageCount, int draft, String first, String firstUnread, in ConversationInfo() argument
51 set(messageCount, draft, first, firstUnread, last); in ConversationInfo()
112 public void set(int count, int draft, String first, String firstUnread, String last) { in set() argument
117 firstUnreadSnippet = firstUnread; in set()
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
DSendersFormattingTests.java110 final String firstUnread = "*^*^*"; in testConversationSnippetsBadInput() local
113 final ConversationInfo before = new ConversationInfo(42, 49, first, firstUnread, last); in testConversationSnippetsBadInput()
116 assertEquals(firstUnread, before.firstUnreadSnippet); in testConversationSnippetsBadInput()