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

  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListFilter.java 49 public static final int FILTER_TYPE_ACCOUNT = 0;
86 return new ContactListFilter(ContactListFilter.FILTER_TYPE_ACCOUNT, accountType,
132 case FILTER_TYPE_ACCOUNT:
147 return filterType == FILTER_TYPE_ACCOUNT;
165 case FILTER_TYPE_ACCOUNT:
329 * @throws IllegalStateException if the filter type is not {@link #FILTER_TYPE_ACCOUNT} or
333 if (filterType != FILTER_TYPE_ACCOUNT
336 "filterType must be FILTER_TYPE_ACCOUNT or FILER_TYPE_GROUP_MEMBERS");
350 if (filterType == FILTER_TYPE_ACCOUNT || filterType == FILTER_TYPE_DEVICE_CONTACTS) {
361 if (filterType == FILTER_TYPE_ACCOUNT) {
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/list/
ContactListFilter.java 37 public static final int FILTER_TYPE_ACCOUNT = 0;
89 ContactListFilter.FILTER_TYPE_ACCOUNT, accountType, accountName, dataSet, icon);
153 case FILTER_TYPE_ACCOUNT:
154 return "FILTER_TYPE_ACCOUNT";
162 return filterType == FILTER_TYPE_ACCOUNT;
180 case FILTER_TYPE_ACCOUNT:
271 * @throws IllegalStateException if the filter type is not {@link #FILTER_TYPE_ACCOUNT}.
274 if (filterType != FILTER_TYPE_ACCOUNT) {
275 throw new IllegalStateException("filterType must be FILTER_TYPE_ACCOUNT");
288 if (filterType == FILTER_TYPE_ACCOUNT) {
    [all...]

Completed in 400 milliseconds