/packages/apps/Settings/src/com/android/settings/accounts/ |
H A D | ProviderPreference.java | 28 private String mAccountType; field in class:ProviderPreference 33 mAccountType = accountType; 40 return mAccountType;
|
H A D | ManageAccountsSettings.java | 85 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 D | AccountWithDataSet.java | 31 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 D | GroupListItem.java | 24 private final String mAccountType; field in class:GroupListItem 34 mAccountType = accountType; 47 return mAccountType;
|
H A D | SuggestedMemberListAdapter.java | 80 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 D | GroupEditorFragment.java | 188 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 D | GroupMetaData.java | 24 private String mAccountType; field in class:GroupMetaData 34 this.mAccountType = accountType; 47 return mAccountType;
|
/packages/apps/Browser/src/com/android/browser/ |
H A D | BookmarksLoader.java | 51 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 D | ContactListFilterView.java | 40 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 D | GroupMembershipView.java | 138 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 D | BaseRawContactEditorView.java | 58 private TextView mAccountType; field in class:BaseRawContactEditorView 86 mAccountType = (TextView) findViewById(R.id.account_type); 201 mAccountName.getText(), mAccountType.getText()));
|
H A D | RawContactReadOnlyEditorView.java | 66 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 D | GlobalDismissManager.java | 103 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 D | SelectSyncedCalendarsMultiAccountAdapter.java | 441 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 D | MailPhotoViewController.java | 71 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 D | ContactLoader.java | 780 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)
|