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

  /packages/apps/ContactsCommon/src/com/android/contacts/common/preference/
ContactsPreferences.java 35 import com.android.contacts.common.model.account.AccountWithDataSet;
180 final AccountWithDataSet accountWithDataSet = AccountWithDataSet.unstringify(
182 mDefaultAccount = accountWithDataSet.name;
188 public void setDefaultAccount(AccountWithDataSet accountWithDataSet) {
189 mDefaultAccount = accountWithDataSet == null ? null : accountWithDataSet.name;
194 editor.putString(mDefaultAccountKey, accountWithDataSet.stringify())
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
KindSectionDataList.java 20 import com.android.contacts.common.model.account.AccountWithDataSet;
59 AccountWithDataSet primaryAccount, boolean isUserProfile) {
123 private static boolean matchesAccount(AccountWithDataSet accountWithDataSet,
125 return Objects.equals(accountWithDataSet.name, rawContactDelta.getAccountName())
126 && Objects.equals(accountWithDataSet.type, rawContactDelta.getAccountType())
127 && Objects.equals(accountWithDataSet.dataSet, rawContactDelta.getDataSet());
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContact.java 31 import com.android.contacts.common.model.account.AccountWithDataSet;
298 public void setAccount(AccountWithDataSet accountWithDataSet) {
299 if (accountWithDataSet != null) {
300 setAccount(accountWithDataSet.name, accountWithDataSet.type,
301 accountWithDataSet.dataSet);
AccountTypeManager.java 48 import com.android.contacts.common.model.account.AccountWithDataSet;
116 public abstract List<AccountWithDataSet> getAccounts(boolean contactWritableOnly);
121 public abstract List<AccountWithDataSet> getGroupWritableAccounts();
129 public final AccountType getAccountTypeForAccount(AccountWithDataSet account) {
171 public boolean contains(AccountWithDataSet account, boolean contactWritableOnly) {
172 for (AccountWithDataSet account_2 : getAccounts(false)) {
202 private List<AccountWithDataSet> mAccounts = Lists.newArrayList();
203 private List<AccountWithDataSet> mContactWritableAccounts = Lists.newArrayList();
204 private List<AccountWithDataSet> mGroupWritableAccounts = Lists.newArrayList();
250 private static final Comparator<AccountWithDataSet> ACCOUNT_COMPARATOR
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
RawContactUtil.java 27 import com.android.providers.contacts.AccountWithDataSet;
101 AccountWithDataSet accountWithDataSet, String... extras) {
105 ContactsContract.RawContacts.CONTENT_URI, accountWithDataSet);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java     [all...]
ContactsProvider2.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
AbstractContactAggregator.java     [all...]

Completed in 562 milliseconds