HomeSort by relevance Sort by last modified time
    Searched defs:mAccountType (Results 1 - 18 of 18) 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 77 private String mAccountType;
87 mAccountType = args.getString(KEY_ACCOUNT_TYPE);
199 if (syncAdapters[j].accountType.equals(mAccountType)
310 if (mAccountType != null && !account.type.equals(mAccountType)) continue;
334 if (mAccountType != null && mFirstAccount != null) {
346 PreferenceScreen prefs = addPreferencesForType(mAccountType, getPreferenceScreen());
  /packages/apps/Contacts/src/com/android/contacts/
GroupMetaData.java 24 private String mAccountType;
34 this.mAccountType = accountType;
47 return mAccountType;
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupListItem.java 24 private final String mAccountType;
34 mAccountType = accountType;
47 return mAccountType;
SuggestedMemberListAdapter.java 79 private String mAccountType;
95 mAccountType = accountType;
191 args = new String[] {mAccountName, mAccountType, searchQuery, searchQuery};
195 mAccountName, mAccountType, mDataSet, searchQuery, searchQuery
GroupEditorFragment.java 186 private String mAccountType;
247 mAccountType = account.type;
275 outState.putString(KEY_ACCOUNT_TYPE, mAccountType);
293 mAccountType = state.getString(KEY_ACCOUNT_TYPE);
327 mAccountType = accounts.get(0).type;
342 mAccountType = account.type;
356 return AccountTypeManager.getInstance(mContext).getAccountType(mAccountType, mDataSet);
364 if (mAccountType == null) {
430 mAutoCompleteAdapter.setAccountType(mAccountType);
481 mAccountType = cursor.getString(GroupMetaDataLoader.ACCOUNT_TYPE)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BookmarksLoader.java 51 String mAccountType;
57 mAccountType = accountType;
63 super.setUri(addAccount(uri, mAccountType, mAccountName));
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListFilterView.java 42 private TextView mAccountType;
82 if (mAccountType == null) {
84 mAccountType = (TextView) findViewById(R.id.accountType);
91 mAccountType.setText(R.string.contactsList);
128 mAccountType.setText(accountType.getDisplayLabel(getContext()));
142 mAccountType.setText(textResource);
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
StreamItemEntryBuilder.java 31 private String mAccountType;
51 mAccountType = value;
67 mAccountType, mAccountName, mDataSet, mResPackage, mIconRes, mLabelRes);
  /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="
  /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;
  /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/util/
StreamItemEntry.java 43 private final String mAccountType;
74 mAccountType = accountType;
90 mAccountType = getString(cursor, StreamItems.ACCOUNT_TYPE);
125 return mAccountType;
  /packages/apps/Contacts/src/com/android/contacts/editor/
RawContactReadOnlyEditorView.java 68 private String mAccountType;
129 mAccountType = values.getAsString(RawContacts.ACCOUNT_TYPE);
282 new AccountWithDataSet(mAccountName, mAccountType, mDataSet),
GroupMembershipView.java 133 private String mAccountType;
203 mAccountType = values.getAsString(RawContacts.ACCOUNT_TYPE);
212 if (mGroupMetaData == null || mGroupMetaData.isClosed() || mAccountType == null
228 if (accountName.equals(mAccountName) && accountType.equals(mAccountType)
298 if (accountName.equals(mAccountName) && accountType.equals(mAccountType)
421 mAccountType,
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectSyncedCalendarsMultiAccountAdapter.java 358 String mAccountType;
363 mAccountType = accountType;
370 mView.postDelayed(new RefreshCalendars(mToken, mAccount, mAccountType),
374 mAccountType + "#" + mAccount,
377 new String[] { mAccount, mAccountType } /*selectionArgs*/,
  /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
  /frameworks/base/core/java/android/accounts/
AccountManagerService.java     [all...]

Completed in 515 milliseconds