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

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForGroupMembership.java 190 AccountWithDataSet accountWithDataSet) {
192 if (accountWithDataSet == null) {
202 accountWithDataSet = new AccountWithDataSet(
211 if (accountWithDataSet == null) {
226 if (entry.accountName.equals(accountWithDataSet.getAccountName())
227 && entry.accountType.equals(accountWithDataSet.getAccountType())
228 && Objects.equal(entry.dataSet, accountWithDataSet.getDataSet())) {
234 entry.accountName = accountWithDataSet.getAccountName()
    [all...]
TransactionContext.java 35 private HashMap<Long, AccountWithDataSet> mInsertedRawContacts = Maps.newHashMap();
50 public void rawContactInserted(long rawContactId, AccountWithDataSet accountWithDataSet) {
51 mInsertedRawContacts.put(rawContactId, accountWithDataSet);
98 public AccountWithDataSet getAccountWithDataSetForRawContact(long rawContactId) {
ContactsProvider2.java     [all...]
ContactAggregator.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
AccountTypeManager.java 100 public abstract List<AccountWithDataSet> getAccounts(boolean contactWritableOnly);
105 public abstract List<AccountWithDataSet> getGroupWritableAccounts();
113 public final AccountType getAccountTypeForAccount(AccountWithDataSet account) {
153 public boolean contains(AccountWithDataSet account, boolean contactWritableOnly) {
154 for (AccountWithDataSet account_2 : getAccounts(false)) {
184 private List<AccountWithDataSet> mAccounts = Lists.newArrayList();
185 private List<AccountWithDataSet> mContactWritableAccounts = Lists.newArrayList();
186 private List<AccountWithDataSet> mGroupWritableAccounts = Lists.newArrayList();
237 if (a instanceof AccountWithDataSet) {
238 aDataSet = ((AccountWithDataSet) a).dataSet
    [all...]

Completed in 59 milliseconds