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

  /frameworks/opt/chips/src/com/android/ex/chips/
RecipientEntry.java 29 public class RecipientEntry {
33 * information passed in to the RecipientEntry from an external source
96 protected RecipientEntry(int entryType, String displayName, String destination,
118 protected RecipientEntry(int entryType, String displayName, String destination,
132 * Determine if this was a RecipientEntry created from recipient info or
136 return id == RecipientEntry.INVALID_CONTACT || id == RecipientEntry.GENERATED_CONTACT;
140 * Construct a RecipientEntry from just an address that has been entered.
144 public static RecipientEntry constructFakeEntry(final String address, final boolean isValid) {
148 return new RecipientEntry(ENTRY_TYPE_PERSON, tokenizedAddress, tokenizedAddress
    [all...]
BaseRecipientAdapter.java 193 public final List<RecipientEntry> entries;
194 public final LinkedHashMap<Long, List<RecipientEntry>> entryMap;
195 public final List<RecipientEntry> nonAggregatedEntries;
199 public DefaultFilterResult(List<RecipientEntry> entries,
200 LinkedHashMap<Long, List<RecipientEntry>> entryMap,
201 List<RecipientEntry> nonAggregatedEntries,
212 RecipientEntry entry) {
215 new LinkedHashMap<Long, List<RecipientEntry>>() /* entryMap */,
256 RecipientEntry.constructPermissionEntry(ChipsUtil.REQUIRED_PERMISSIONS));
275 final LinkedHashMap<Long, List<RecipientEntry>> entryMap
    [all...]

Completed in 195 milliseconds