Home | History | Annotate | Download | only in account

Lines Matching refs:account

17 package com.android.contacts.model.account;
19 import android.accounts.Account;
37 * Wrapper for an account that includes a data set (which may be null).
39 public class AccountWithDataSet extends Account {
90 * Return {@code true} if this account has any contacts in the database.
133 private static StringBuilder addStringified(StringBuilder sb, AccountWithDataSet account) {
134 sb.append(account.name);
136 sb.append(account.type);
138 if (!TextUtils.isEmpty(account.dataSet)) sb.append(account.dataSet);
170 for (AccountWithDataSet account : accounts) {
174 addStringified(sb, account);