HomeSort by relevance Sort by last modified time
    Searched defs:RecipientEntry (Results 1 - 2 of 2) sorted by null

  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientEntry.java 28 public class RecipientEntry {
32 * information passed in to the RecipientEntry from an external source
79 private RecipientEntry(int entryType, String displayName, String destination,
102 * Determine if this was a RecipientEntry created from recipient info or
106 return id == RecipientEntry.INVALID_CONTACT || id == RecipientEntry.GENERATED_CONTACT;
110 * Construct a RecipientEntry from just an address that has been entered.
114 public static RecipientEntry constructFakeEntry(final String address, final boolean isValid) {
118 return new RecipientEntry(ENTRY_TYPE_PERSON, tokenizedAddress, tokenizedAddress,
124 * Construct a RecipientEntry from just a phone number
    [all...]
BaseRecipientAdapter.java 196 public final List<RecipientEntry> entries;
197 public final LinkedHashMap<Long, List<RecipientEntry>> entryMap;
198 public final List<RecipientEntry> nonAggregatedEntries;
202 public DefaultFilterResult(List<RecipientEntry> entries,
203 LinkedHashMap<Long, List<RecipientEntry>> entryMap,
204 List<RecipientEntry> nonAggregatedEntries,
249 final LinkedHashMap<Long, List<RecipientEntry>> entryMap =
250 new LinkedHashMap<Long, List<RecipientEntry>>();
251 final List<RecipientEntry> nonAggregatedEntries =
252 new ArrayList<RecipientEntry>();
    [all...]

Completed in 469 milliseconds