Lines Matching refs:RecipientEntry

421                     public void onChanged(List<RecipientEntry> entries) {
457 if (mSelectedChip != null && contactId != RecipientEntry.INVALID_CONTACT
458 && (!isPhoneQuery() && contactId != RecipientEntry.GENERATED_CONTACT)) {
527 private Bitmap createSelectedChip(RecipientEntry contact, TextPaint paint, Layout layout) {
569 private Bitmap createUnselectedChip(RecipientEntry contact, TextPaint paint, Layout layout,
597 contactId != RecipientEntry.INVALID_CONTACT
598 : (contactId != RecipientEntry.INVALID_CONTACT
599 && (contactId != RecipientEntry.GENERATED_CONTACT &&
649 /*package*/ Drawable getChipBackground(RecipientEntry contact) {
661 private RecipientChip constructChipSpan(RecipientEntry contact, int offset, boolean pressed,
957 RecipientEntry entry = createTokenizedEntry(token);
1002 private RecipientEntry createTokenizedEntry(String token) {
1007 return RecipientEntry
1026 return RecipientEntry.constructGeneratedEntry(display, token);
1030 return RecipientEntry.constructFakeEntry(display);
1057 return RecipientEntry
1220 RecipientEntry entry = createTokenizedEntry(text);
1302 RecipientEntry entry = RecipientEntry.constructFakeEntry(text);
1556 /* package */String createAddressText(RecipientEntry entry) {
1585 /*package*/ String createChipDisplayText(RecipientEntry entry) {
1608 private CharSequence createChip(RecipientEntry entry, boolean pressed) {
1644 RecipientEntry entry = createValidatedEntry(
1645 (RecipientEntry)getAdapter().getItem(position));
1663 private RecipientEntry createValidatedEntry(RecipientEntry item) {
1667 final RecipientEntry entry;
1672 if (!isPhoneQuery() && item.getContactId() == RecipientEntry.GENERATED_CONTACT) {
1673 entry = RecipientEntry.constructGeneratedEntry(item.getDisplayName(),
1675 } else if (RecipientEntry.isCreatedRecipient(item.getContactId())
1679 entry = RecipientEntry.constructFakeEntry(destination);
1953 RecipientEntry.constructFakeEntry((String) text),
1955 } else if (currentChip.getContactId() == RecipientEntry.GENERATED_CONTACT) {
2013 return contactId == RecipientEntry.INVALID_CONTACT
2014 || (!isPhoneQuery() && contactId == RecipientEntry.GENERATED_CONTACT);
2122 /*package*/ void replaceChip(RecipientChip chip, RecipientEntry entry) {
2385 private RecipientChip createFreeChip(RecipientEntry entry) {
2422 HashMap<String, RecipientEntry> entries = RecipientAlternatesAdapter
2426 RecipientEntry entry = null;
2427 if (RecipientEntry.isCreatedRecipient(temp.getEntry().getContactId())
2491 HashMap<String, RecipientEntry> entries = RecipientAlternatesAdapter
2494 if (RecipientEntry.isCreatedRecipient(temp.getEntry().getContactId())
2497 RecipientEntry entry = createValidatedEntry(entries.get(tokenizeAddress(
2504 final RecipientEntry tempEntry = entry;