Home | History | Annotate | Download | only in group

Lines Matching refs:ACCOUNT

19 import android.accounts.Account;
67 import com.android.contacts.common.model.account.AccountType;
68 import com.android.contacts.common.model.account.AccountWithDataSet;
162 SELECTING_ACCOUNT, // Account select dialog is showing
230 // Account select dialog is showing. Don't setup the editor yet.
239 final Account account = mIntentExtras == null ? null :
240 (Account) mIntentExtras.getParcelable(Intents.Insert.ACCOUNT);
244 if (account != null) {
245 // Account specified in Intent - no data set can be specified in this manner.
246 mAccountName = account.name;
247 mAccountType = account.type;
251 // No Account specified. Let the user choose from a disambiguation dialog.
323 // In the common case of a single account being writable, auto-select
340 public void onAccountChosen(AccountWithDataSet account, Bundle extraArgs) {
341 mAccountName = account.name;
342 mAccountType = account.type;
343 mDataSet = account.dataSet;
350 // Exit the fragment because we cannot continue without selecting an account
360 * @return true if the group membership is editable on this account type. false otherwise,
361 * or account is not set yet.
371 * Sets up the editor based on the group's account name and type.
409 // Setup the account header, only when exists.
424 // account name and type. For groups that cannot have membership edited, there will be no
743 * The listener for the group metadata (i.e. group name, account type, and account name) loader.