HomeSort by relevance Sort by last modified time
    Searched defs:mAccountType (Results 1 - 25 of 30) sorted by null

1 2

  /packages/apps/Settings/src/com/android/settings/accounts/
ProviderPreference.java 32 private String mAccountType;
38 mAccountType = accountType;
46 return mAccountType;
AccountDetailDashboardFragment.java 54 String mAccountType;
75 mAccountType = args.getString(KEY_ACCOUNT_TYPE);
125 if (mAccountType == null) {
132 final boolean display = mAccountType.equals(metadata.getString(METADATA_IA_ACCOUNT));
151 mAccountType, getPreferenceScreen());
153 accountTypePreferenceLoader.updatePreferenceIntents(prefs, mAccountType, mAccount);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListFilterView.java 41 private TextView mAccountType;
86 if (mAccountType == null) {
88 mAccountType = (TextView) findViewById(R.id.accountType);
95 mAccountType.setText(R.string.contactsList);
132 mAccountType.setText(accountType.getDisplayLabel(getContext()));
147 mAccountType.setText(textResource);
152 if (!TextUtils.isEmpty(mAccountType.getText())) {
153 sb.append(mAccountType.getText());
GroupMemberPickerFragment.java 168 private String mAccountType;
197 mAccountType = getArguments().getString(ARG_ACCOUNT_TYPE);
202 mAccountType = savedState.getString(KEY_ACCOUNT_TYPE);
213 outState.putString(KEY_ACCOUNT_TYPE, mAccountType);
237 mAccountType, mAccountDataSet);
249 mAccountType, mAccountName, mAccountDataSet));
  /cts/tests/tests/accounts/common/src/android/accounts/cts/common/
TestDefaultAuthenticator.java 35 private final String mAccountType;
40 mAccountType = accountType;
57 if (!mAccountType.equals(accountType)) {
71 result.putString(AccountManager.KEY_ACCOUNT_TYPE, mAccountType);
108 if (!mAccountType.equals(account.type)) {
TestAccountAuthenticator.java 41 private final String mAccountType;
49 mAccountType = accountType;
65 if (!mAccountType.equals(accountType)) {
80 result.putString(AccountManager.KEY_ACCOUNT_TYPE, mAccountType);
111 if (!mAccountType.equals(account.type)) {
158 if (!mAccountType.equals(account.type)) {
222 if (!mAccountType.equals(account.type)) {
266 if (!mAccountType.equals(account.type)) {
316 if (!mAccountType.equals(accountType)) {
365 if (!mAccountType.equals(account.type))
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
TestAccountType2Authenticator.java 37 private final String mAccountType;
42 mAccountType = accountType;
TestAccountType1Authenticator.java 37 private final String mAccountType;
42 mAccountType = accountType;
66 if (!mAccountType.equals(accountType)) {
79 result.putString(AccountManager.KEY_ACCOUNT_TYPE, mAccountType);
109 if (!mAccountType.equals(account.type)) {
149 if (!mAccountType.equals(account.type)) {
204 if (!mAccountType.equals(account.type)) {
266 if (!mAccountType.equals(accountType)) {
323 if (!mAccountType.equals(account.type)) {
376 if (!mAccountType.equals(accountType))
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/
GroupMetaData.java 25 private String mAccountType;
41 this.mAccountType = accountType;
54 return mAccountType;
  /packages/apps/Contacts/src/com/android/contacts/editor/
KindSectionData.java 35 private final AccountType mAccountType;
41 mAccountType = accountType;
47 return mAccountType;
GroupMembershipView.java 155 private String mAccountType;
260 mAccountType = mState.getAccountType();
270 if (mGroupMetaData == null || mGroupMetaData.isClosed() || mAccountType == null
285 if (accountName.equals(mAccountName) && accountType.equals(mAccountType)
358 if (accountName.equals(mAccountName) && accountType.equals(mAccountType)
482 new AccountWithDataSet(mAccountName, mAccountType, mDataSet), null);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupListItem.java 24 private final String mAccountType;
37 mAccountType = accountType;
52 return mAccountType;
UpdateGroupMembersAsyncTask.java 45 private final String mAccountType;
55 mAccountType = accountType;
91 builder.appendQueryParameter(RawContacts.ACCOUNT_TYPE, mAccountType);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
AccountWithDataSet.java 31 private final String mAccountType;
36 mAccountType = emptyToNull(accountType);
57 return mAccountType;
65 return (mAccountName == null) && (mAccountType == null);
73 && Objects.equal(mAccountType, other.getAccountType())
82 result = 31 * result + (mAccountType != null ? mAccountType.hashCode() : 0);
89 return "AccountWithDataSet {name=" + mAccountName + ", type=" + mAccountType + ", dataSet="
MetadataEntryParser.java 95 final String mAccountType;
103 this.mAccountType = accountType;
  /frameworks/base/core/java/com/android/internal/app/
ConfirmUserCreationActivity.java 47 private String mAccountType;
59 mAccountType = intent.getStringExtra(UserManager.EXTRA_USER_ACCOUNT_TYPE);
104 final Account account = new Account(mAccountName, mAccountType);
105 boolean accountExists = mAccountName != null && mAccountType != null
107 | mUserManager.someUserHasSeedAccount(mAccountName, mAccountType));
135 mUserManager.setSeedAccountData(user.id, mAccountName, mAccountType, mAccountOptions);
  /frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
RequestSync.java 79 private String mAccountType;
113 final Account account = mAccountName != null && mAccountType != null
114 ? new Account(mAccountName, mAccountType) : null;
162 mAccountType = nextArgRequired();
  /cts/tests/tests/accounts/src/android/accounts/cts/
MockAccountAuthenticator.java 53 String mAccountType;
96 return mAccountType;
121 mAccountType = null;
164 this.mAccountType = accountType;
194 this.mAccountType = accountType;
339 this.mAccountType = accountType;
447 this.mAccountType = accountType;
  /packages/apps/UnifiedEmail/src/com/android/mail/photo/
MailPhotoViewController.java 71 private String mAccountType;
101 mAccountType = intent.getStringExtra(MailPhotoViewActivity.EXTRA_ACCOUNT_TYPE);
182 mActionHandler.shouldShowExtraOption1(mAccountType,
  /development/apps/Development/src/com/android/development/
AccountsTester.java 397 final String mAccountType;
401 mAccountType = type;
405 Log.d(TAG, "GetAccountsCallback: type " + mAccountType
432 final String mAccountType;
437 mAccountType = type;
442 Log.d(TAG, "GetAuthTokenCallback: type " + mAccountType
  /packages/apps/Calendar/src/com/android/calendar/alerts/
GlobalDismissManager.java 103 public final String mAccountType;
116 mAccountType = accountType;
142 if (!mAccountType.equals(that.mAccountType)) {
151 int result = mAccountType.hashCode();
298 Uri uri = asSync(Events.CONTENT_URI, dismissId.mAccountType,
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectSyncedCalendarsMultiAccountAdapter.java 441 String mAccountType;
446 mAccountType = accountType;
454 mView.postDelayed(new RefreshCalendars(mToken, mAccount, mAccountType),
458 mAccountType + "#" + mAccount,
461 new String[] { mAccount, mAccountType } /*selectionArgs*/,
  /packages/apps/Contacts/src/com/android/contacts/model/
ContactLoader.java 752 private final String mAccountType;
757 mAccountType = accountType;
763 return Objects.hash(mAccountName, mAccountType, mDataSet);
773 && Objects.equals(mAccountType, other.mAccountType)
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/
ContactLoader.java     [all...]
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 

Completed in 550 milliseconds

1 2