/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;
|
/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/Settings/src/com/android/settings/accounts/ |
ProviderPreference.java | 33 private String mAccountType; 38 mAccountType = accountType; 46 return mAccountType;
|
ManageAccountsSettings.java | 85 private String mAccountType; 101 mAccountType = args.getString(KEY_ACCOUNT_TYPE); 224 if (syncAdapters[j].accountType.equals(mAccountType) 373 if (mAccountType != null && !account.type.equals(mAccountType)) continue; 397 if (mAccountType != null && mFirstAccount != null) { 406 PreferenceScreen prefs = addPreferencesForType(mAccountType, getPreferenceScreen()); 520 mAuthenticatorHelper.getAccountTypeDescription(mAccountType);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/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());
|
/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);
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
KindSectionData.java | 35 private final AccountType mAccountType; 41 mAccountType = accountType; 47 return mAccountType;
|
GroupMembershipView.java | 139 private String mAccountType; 221 mAccountType = mState.getAccountType(); 230 if (mGroupMetaData == null || mGroupMetaData.isClosed() || mAccountType == null 245 if (accountName.equals(mAccountName) && accountType.equals(mAccountType) 315 if (accountName.equals(mAccountName) && accountType.equals(mAccountType) 436 mAccountType,
|
BaseRawContactEditorView.java | 58 private TextView mAccountType; 86 mAccountType = (TextView) findViewById(R.id.account_type); 201 mAccountName.getText(), mAccountType.getText()));
|
RawContactReadOnlyEditorView.java | 67 private String mAccountType; 117 mAccountType = state.getAccountType(); 261 new AccountWithDataSet(mAccountName, mAccountType, mDataSet),
|
/cts/tests/tests/accounts/src/android/accounts/cts/ |
MockAccountAuthenticator.java | 52 String mAccountType; 91 return mAccountType; 112 mAccountType = null; 151 this.mAccountType = accountType; 181 this.mAccountType = accountType;
|
/cts/tests/tests/accounts/common/src/android/accounts/cts/common/ |
TestAccountAuthenticator.java | 38 private final String mAccountType; 45 mAccountType = accountType; 61 if (!mAccountType.equals(accountType)) { 76 result.putString(AccountManager.KEY_ACCOUNT_TYPE, mAccountType); 114 if (!mAccountType.equals(account.type)) { 169 if (!mAccountType.equals(account.type)) { 240 if (!mAccountType.equals(account.type)) { 292 if (!mAccountType.equals(account.type)) {
|
/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();
|
/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/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
MetadataEntryParserTest.java | 255 assertEquals(contact1.mAccountType, contact2.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/UnifiedEmail/src/com/android/mail/photo/ |
MailPhotoViewController.java | 71 private String mAccountType; 101 mAccountType = intent.getStringExtra(MailPhotoViewActivity.EXTRA_ACCOUNT_TYPE); 182 mActionHandler.shouldShowExtraOption1(mAccountType,
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
ContactLoader.java | [all...] |
/frameworks/base/core/java/android/accounts/ |
AccountManager.java | [all...] |
/frameworks/base/services/core/java/com/android/server/accounts/ |
AccountManagerService.java | [all...] |