Home
last modified time | relevance | path

Searched refs:addParticipant (Results 1 – 4 of 4) sorted by relevance

/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
DSendersFormattingTests.java46 conv.addParticipant(new ParticipantInfo(null, "something@somewhere.com", 0, false)); in testMeFromNullName()
58 conv.addParticipant(new ParticipantInfo("", "something@somewhere.com", 0, false)); in testMeFromEmptyName()
70 conv.addParticipant(new ParticipantInfo("", "something@somewhere.com", 0, false)); in testMeFromDuplicateEmptyNames()
71 conv.addParticipant(new ParticipantInfo("", "something@somewhere.com", 0, false)); in testMeFromDuplicateEmptyNames()
84 conv.addParticipant(new ParticipantInfo("Something", "something@somewhere.com", 0, false)); in testDuplicates()
85 conv.addParticipant(new ParticipantInfo("Something", "something@somewhere.com", 0, false)); in testDuplicates()
99 before.addParticipant(new ParticipantInfo("****^****", null, 0, false)); in testSenderNameBadInput()
114 before.addParticipant(new ParticipantInfo("Foo Bar", "foo@bar.com", 0, false)); in testConversationSnippetsBadInput()
129 conv.addParticipant(new ParticipantInfo("a", "a@a.com", 0, true)); in testSenderAvatarIsSenderOfFirstUnreadMessage()
130 conv.addParticipant(new ParticipantInfo("b", "b@b.com", 0, false)); in testSenderAvatarIsSenderOfFirstUnreadMessage()
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
DMockUiProvider.java234 info.addParticipant(new ParticipantInfo(i + "Test", "testsender@test.com", -1, in generateConversationInfo()
237 info.addParticipant(new ParticipantInfo(i + "sender@test.com", "sender@test.com", in generateConversationInfo()
240 info.addParticipant(new ParticipantInfo(" .. ", null, -1, false)); in generateConversationInfo()
/packages/apps/Email/provider_src/com/android/email/provider/
DEmailConversationCursor.java213 conversationInfo.addParticipant(new ParticipantInfo(name, email, 0, isRead)); in generateConversationInfo()
217 conversationInfo.addParticipant(new ParticipantInfo(senderString, senderEmail, 0, in generateConversationInfo()
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
DConversationInfo.java130 public void addParticipant(ParticipantInfo info) { in addParticipant() method in ConversationInfo