Searched refs:mAccountType (Results 1 - 16 of 16) sorted by relevance

/packages/apps/Settings/src/com/android/settings/accounts/
H A DProviderPreference.java28 private String mAccountType; field in class:ProviderPreference
33 mAccountType = accountType;
40 return mAccountType;
H A DManageAccountsSettings.java85 private String mAccountType; field in class:ManageAccountsSettings
101 mAccountType = args.getString(KEY_ACCOUNT_TYPE);
222 if (syncAdapters[j].accountType.equals(mAccountType)
371 if (mAccountType != null && !account.type.equals(mAccountType)) continue;
395 if (mAccountType != null && mFirstAccount != null) {
404 PreferenceScreen prefs = addPreferencesForType(mAccountType, getPreferenceScreen());
518 mAuthenticatorHelper.getAccountTypeDescription(mAccountType);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DAccountWithDataSet.java31 private final String mAccountType; field in class:AccountWithDataSet
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/
H A DGroupListItem.java24 private final String mAccountType; field in class:GroupListItem
34 mAccountType = accountType;
47 return mAccountType;
H A DSuggestedMemberListAdapter.java80 private String mAccountType; field in class:SuggestedMemberListAdapter
96 mAccountType = accountType;
193 args = new String[] {mAccountName, mAccountType, searchQuery, searchQuery};
197 mAccountName, mAccountType, mDataSet, searchQuery, searchQuery
H A DGroupEditorFragment.java188 private String mAccountType; field in class:GroupEditorFragment
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
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/
H A DGroupMetaData.java24 private String mAccountType; field in class:GroupMetaData
34 this.mAccountType = accountType;
47 return mAccountType;
/packages/apps/Browser/src/com/android/browser/
H A DBookmarksLoader.java51 String mAccountType; field in class:BookmarksLoader
57 mAccountType = accountType;
63 super.setUri(addAccount(uri, mAccountType, mAccountName));
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactListFilterView.java40 private TextView mAccountType; field in class:ContactListFilterView
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);
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DGroupMembershipView.java138 private String mAccountType; field in class:GroupMembershipView
207 mAccountType = mState.getAccountType();
216 if (mGroupMetaData == null || mGroupMetaData.isClosed() || mAccountType == null
232 if (accountName.equals(mAccountName) && accountType.equals(mAccountType)
302 if (accountName.equals(mAccountName) && accountType.equals(mAccountType)
423 mAccountType,
H A DBaseRawContactEditorView.java58 private TextView mAccountType; field in class:BaseRawContactEditorView
86 mAccountType = (TextView) findViewById(R.id.account_type);
201 mAccountName.getText(), mAccountType.getText()));
H A DRawContactReadOnlyEditorView.java66 private String mAccountType; field in class:RawContactReadOnlyEditorView
115 mAccountType = state.getAccountType();
259 new AccountWithDataSet(mAccountName, mAccountType, mDataSet),
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DGlobalDismissManager.java103 public final String mAccountType; field in class:GlobalDismissManager.LocalDismissId
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/
H A DSelectSyncedCalendarsMultiAccountAdapter.java441 String mAccountType; field in class:SelectSyncedCalendarsMultiAccountAdapter.RefreshCalendars
446 mAccountType = accountType;
454 mView.postDelayed(new RefreshCalendars(mToken, mAccount, mAccountType),
458 mAccountType + "#" + mAccount,
461 new String[] { mAccount, mAccountType } /*selectionArgs*/,
/packages/apps/UnifiedEmail/src/com/android/mail/photo/
H A DMailPhotoViewController.java71 private String mAccountType; field in class:MailPhotoViewController
101 mAccountType = intent.getStringExtra(MailPhotoViewActivity.EXTRA_ACCOUNT_TYPE);
182 mActionHandler.shouldShowExtraOption1(mAccountType,
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DContactLoader.java780 private final String mAccountType; field in class:ContactLoader.AccountKey
785 mAccountType = accountType;
791 return Objects.hash(mAccountName, mAccountType, mDataSet);
801 && Objects.equals(mAccountType, other.mAccountType)

Completed in 277 milliseconds