Searched defs:contactWritableOnly (Results 1 - 1 of 1) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DAccountTypeManager.java111 * Returns the list of all accounts (if contactWritableOnly is false) or just the list of
112 * contact writable accounts (if contactWritableOnly is true).
115 public abstract List<AccountWithDataSet> getAccounts(boolean contactWritableOnly); argument
159 * @param contactWritableOnly if true, it only returns ones that support writing contacts.
161 public abstract List<AccountType> getAccountTypes(boolean contactWritableOnly); argument
164 * @param contactWritableOnly if true, it only returns ones that support writing contacts.
167 public boolean contains(AccountWithDataSet account, boolean contactWritableOnly) { argument
570 public List<AccountWithDataSet> getAccounts(boolean contactWritableOnly) { argument
572 return contactWritableOnly ? mContactWritableAccounts : mAccounts;
742 public List<AccountType> getAccountTypes(boolean contactWritableOnly) { argument
[all...]

Completed in 29 milliseconds