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

  /packages/apps/Dialer/java/com/android/contacts/common/preference/
ContactsPreferences.java 29 import com.android.contacts.common.model.account.AccountWithDataSet;
153 final AccountWithDataSet accountWithDataSet = AccountWithDataSet.unstringify(accountString);
154 mDefaultAccount = accountWithDataSet.name;
160 private void setDefaultAccount(AccountWithDataSet accountWithDataSet) {
161 mDefaultAccount = accountWithDataSet == null ? null : accountWithDataSet.name;
166 editor.putString(mDefaultAccountKey, accountWithDataSet.stringify())
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/preference/
ContactsPreferences.java 35 import com.android.contacts.model.account.AccountWithDataSet;
84 private AccountWithDataSet mDefaultAccount = null;
212 public AccountWithDataSet getDefaultAccount() {
220 mDefaultAccount = AccountWithDataSet.unstringify(accountString);
231 public void setDefaultAccount(@NonNull AccountWithDataSet accountWithDataSet) {
232 if (accountWithDataSet == null) {
236 mDefaultAccount = accountWithDataSet;
237 mPreferences.edit().putString(mDefaultAccountKey, accountWithDataSet.stringify()).commit();
255 public boolean shouldShowAccountChangedNotification(List<AccountWithDataSet>
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
GroupMemberPickerFragment.java 36 import com.android.contacts.model.account.AccountWithDataSet;
236 final AccountWithDataSet accountWithDataSet = new AccountWithDataSet(mAccountName,
239 accountWithDataSet, cursorWrapper.getCount());
DefaultContactBrowseListFragment.java 73 import com.android.contacts.model.account.AccountWithDataSet;
328 final AccountWithDataSet accountWithDataSet = new AccountWithDataSet(
331 accountWithDataSet, numberOfContacts);
547 final List<AccountWithDataSet> accounts = AccountInfo.extractAccounts(accountInfos);
615 final List<AccountWithDataSet> accounts = AccountInfo.extractAccounts(
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/
AccountTypeManager.java 49 import com.android.contacts.common.model.account.AccountWithDataSet;
113 public abstract List<AccountWithDataSet> getAccounts(boolean contactWritableOnly);
116 public abstract List<AccountWithDataSet> getGroupWritableAccounts();
124 public final AccountType getAccountTypeForAccount(AccountWithDataSet account) {
164 public boolean contains(AccountWithDataSet account, boolean contactWritableOnly) {
165 for (AccountWithDataSet account_2 : getAccounts(false)) {
190 private static final Comparator<AccountWithDataSet> ACCOUNT_COMPARATOR =
191 new Comparator<AccountWithDataSet>() {
193 public int compare(AccountWithDataSet a, AccountWithDataSet b)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupMembersFragment.java 68 import com.android.contacts.model.account.AccountWithDataSet;
483 new AccountWithDataSet(mGroupMetaData.accountName,
704 final AccountWithDataSet accountWithDataSet = new AccountWithDataSet(
707 accountWithDataSet, memberCount);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
PeopleActivity.java 87 import com.android.contacts.model.account.AccountWithDataSet;
190 private AccountWithDataSet mNewGroupAccount;
223 final List<AccountWithDataSet> accounts;
226 accounts = Collections.singletonList(new AccountWithDataSet(filter.accountName,
397 mNewGroupAccount = AccountWithDataSet.unstringify(
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
AbstractContactAggregator.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java     [all...]

Completed in 415 milliseconds