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

  /packages/apps/Settings/src/com/android/settings/accounts/
ProviderPreference.java 32 private String mAccountType;
37 mAccountType = accountType;
44 return mAccountType;
ManageAccountsSettings.java 85 private String mAccountType;
95 mAccountType = args.getString(KEY_ACCOUNT_TYPE);
212 if (syncAdapters[j].accountType.equals(mAccountType)
352 if (mAccountType != null && !account.type.equals(mAccountType)) continue;
377 if (mAccountType != null && mFirstAccount != null) {
388 PreferenceScreen prefs = addPreferencesForType(mAccountType, getPreferenceScreen());
502 mAuthenticatorHelper.getAccountTypeDescription(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="
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupListItem.java 24 private final String mAccountType;
34 mAccountType = accountType;
47 return mAccountType;
SuggestedMemberListAdapter.java 80 private String mAccountType;
96 mAccountType = accountType;
193 args = new String[] {mAccountName, mAccountType, searchQuery, searchQuery};
197 mAccountName, mAccountType, mDataSet, searchQuery, searchQuery
GroupEditorFragment.java 188 private String mAccountType;
249 mAccountType = account.type;
277 outState.putString(KEY_ACCOUNT_TYPE, mAccountType);
295 mAccountType = state.getString(KEY_ACCOUNT_TYPE);
329 mAccountType = accounts.get(0).type;
344 mAccountType = account.type;
358 return AccountTypeManager.getInstance(mContext).getAccountType(mAccountType, mDataSet);
366 if (mAccountType == null) {
432 mAutoCompleteAdapter.setAccountType(mAccountType);
483 mAccountType = cursor.getString(GroupMetaDataLoader.ACCOUNT_TYPE)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
GroupMetaData.java 24 private String mAccountType;
34 this.mAccountType = accountType;
47 return mAccountType;
  /packages/apps/Browser/src/com/android/browser/
BookmarksLoader.java 51 String mAccountType;
57 mAccountType = accountType;
63 super.setUri(addAccount(uri, mAccountType, mAccountName));
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListFilterView.java 40 private TextView mAccountType;
80 if (mAccountType == null) {
82 mAccountType = (TextView) findViewById(R.id.accountType);
89 mAccountType.setText(R.string.contactsList);
126 mAccountType.setText(accountType.getDisplayLabel(getContext()));
140 mAccountType.setText(textResource);
  /cts/tests/tests/accounts/src/android/accounts/cts/
MockAccountAuthenticator.java 35 private String mAccountType;
60 return mAccountType;
81 mAccountType = null;
110 this.mAccountType = accountType;
142 this.mAccountType = accountType;
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/util/
FeatureUtilitiesTest.java 98 private final String mAccountType;
105 mAccountType = accountType;
110 if (accountType.equals(mAccountType)) {
125 new AuthenticatorDescription(mAccountType, "p1", 0, 0, 0, 0);
  /frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
RequestSync.java 34 private String mAccountType = null;
64 final Account account = mAccountName != null && mAccountType != null
65 ? new Account(mAccountName, mAccountType) : null;
96 mAccountType = nextArgRequired();
  /packages/apps/Contacts/src/com/android/contacts/editor/
GroupMembershipView.java 133 private String mAccountType;
202 mAccountType = mState.getAccountType();
211 if (mGroupMetaData == null || mGroupMetaData.isClosed() || mAccountType == null
227 if (accountName.equals(mAccountName) && accountType.equals(mAccountType)
297 if (accountName.equals(mAccountName) && accountType.equals(mAccountType)
418 mAccountType,
RawContactReadOnlyEditorView.java 68 private String mAccountType;
128 mAccountType = state.getAccountType();
293 new AccountWithDataSet(mAccountName, mAccountType, mDataSet),
  /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*/,
  /frameworks/base/core/java/android/accounts/
AccountManager.java     [all...]
  /frameworks/base/services/core/java/com/android/server/accounts/
AccountManagerService.java     [all...]

Completed in 534 milliseconds