Home
last modified time | relevance | path

Searched refs:mAccountType (Results 1 – 15 of 15) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DAccountWithDataSet.java31 private final String mAccountType; field in AccountWithDataSet
36 mAccountType = emptyToNull(accountType); in AccountWithDataSet()
57 return mAccountType; in getAccountType()
65 return (mAccountName == null) && (mAccountType == null); in isLocalAccount()
73 && Objects.equal(mAccountType, other.getAccountType()) in equals()
82 result = 31 * result + (mAccountType != null ? mAccountType.hashCode() : 0); in hashCode()
89 return "AccountWithDataSet {name=" + mAccountName + ", type=" + mAccountType + ", dataSet=" in toString()
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DContactListFilterView.java40 private TextView mAccountType; field in ContactListFilterView
80 if (mAccountType == null) { in bindView()
82 mAccountType = (TextView) findViewById(R.id.accountType); in bindView()
89 mAccountType.setText(R.string.contactsList); in bindView()
126 mAccountType.setText(accountType.getDisplayLabel(getContext())); in bindView()
140 mAccountType.setText(textResource); in bindView()
/packages/apps/Contacts/src/com/android/contacts/group/
DGroupEditorFragment.java188 private String mAccountType; field in GroupEditorFragment
249 mAccountType = account.type; in onActivityCreated()
277 outState.putString(KEY_ACCOUNT_TYPE, mAccountType); in onSaveInstanceState()
295 mAccountType = state.getString(KEY_ACCOUNT_TYPE); in onRestoreInstanceState()
329 mAccountType = accounts.get(0).type; in selectAccountAndCreateGroup()
344 mAccountType = account.type; in onAccountChosen()
358 return AccountTypeManager.getInstance(mContext).getAccountType(mAccountType, mDataSet); in getAccountType()
366 if (mAccountType == null) { in isGroupMembershipEditable()
432 mAutoCompleteAdapter.setAccountType(mAccountType); in setupEditorForAccount()
483 mAccountType = cursor.getString(GroupMetaDataLoader.ACCOUNT_TYPE); in bindGroupMetaData()
[all …]
DGroupListItem.java24 private final String mAccountType; field in GroupListItem
34 mAccountType = accountType; in GroupListItem()
47 return mAccountType; in getAccountType()
DSuggestedMemberListAdapter.java80 private String mAccountType; field in SuggestedMemberListAdapter
96 mAccountType = accountType; in setAccountType()
193 args = new String[] {mAccountName, mAccountType, searchQuery, searchQuery}; in performFiltering()
197 mAccountName, mAccountType, mDataSet, searchQuery, searchQuery in performFiltering()
/packages/apps/Settings/src/com/android/settings/accounts/
DManageAccountsSettings.java76 private String mAccountType; field in ManageAccountsSettings
86 mAccountType = args.getString(KEY_ACCOUNT_TYPE); in onCreate()
200 if (syncAdapters[j].accountType.equals(mAccountType) in requestOrCancelSyncForAccounts()
311 if (mAccountType != null && !account.type.equals(mAccountType)) continue; in onAccountsUpdated()
336 if (mAccountType != null && mFirstAccount != null) { in onAccountsUpdated()
348 PreferenceScreen prefs = addPreferencesForType(mAccountType, getPreferenceScreen()); in addAuthenticatorSettings()
DProviderPreference.java32 private String mAccountType; field in ProviderPreference
37 mAccountType = accountType; in ProviderPreference()
44 return mAccountType; in getAccountType()
/packages/apps/Contacts/src/com/android/contacts/editor/
DGroupMembershipView.java133 private String mAccountType; field in GroupMembershipView
202 mAccountType = mState.getAccountType(); in setState()
211 if (mGroupMetaData == null || mGroupMetaData.isClosed() || mAccountType == null in updateView()
227 if (accountName.equals(mAccountName) && accountType.equals(mAccountType) in updateView()
297 if (accountName.equals(mAccountName) && accountType.equals(mAccountType) in onClick()
418 mAccountType, in createNewGroup() local
DRawContactReadOnlyEditorView.java68 private String mAccountType; field in RawContactReadOnlyEditorView
128 mAccountType = state.getAccountType(); in setState()
293 new AccountWithDataSet(mAccountName, mAccountType, mDataSet), in onClick()
/packages/apps/Calendar/src/com/android/calendar/alerts/
DGlobalDismissManager.java103 public final String mAccountType; field in GlobalDismissManager.LocalDismissId
116 mAccountType = accountType; in LocalDismissId()
142 if (!mAccountType.equals(that.mAccountType)) { in equals()
151 int result = mAccountType.hashCode(); in hashCode()
298 Uri uri = asSync(Events.CONTENT_URI, dismissId.mAccountType, in syncSenderDismissCache()
/packages/apps/Contacts/src/com/android/contacts/util/
DStreamItemEntry.java45 private final String mAccountType; field in StreamItemEntry
76 mAccountType = accountType; in StreamItemEntry()
92 mAccountType = getString(cursor, StreamItems.ACCOUNT_TYPE); in StreamItemEntry()
127 return mAccountType; in getAccountType()
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
DSelectSyncedCalendarsMultiAccountAdapter.java441 String mAccountType; field in SelectSyncedCalendarsMultiAccountAdapter.RefreshCalendars
446 mAccountType = accountType; in RefreshCalendars()
454 mView.postDelayed(new RefreshCalendars(mToken, mAccount, mAccountType), in run()
458 mAccountType + "#" + mAccount, in run()
461 new String[] { mAccount, mAccountType } /*selectionArgs*/, in run()
/packages/apps/ContactsCommon/src/com/android/contacts/common/
DGroupMetaData.java24 private String mAccountType; field in GroupMetaData
34 this.mAccountType = accountType; in GroupMetaData()
47 return mAccountType; in getAccountType()
/packages/apps/Contacts/tests/src/com/android/contacts/util/
DStreamItemEntryBuilder.java29 private String mAccountType; field in StreamItemEntryBuilder
49 mAccountType = value; in setAccountType()
65 mAccountType, mAccountName, mDataSet, mResPackage, mIconRes, mLabelRes); in build()
/packages/apps/Browser/src/com/android/browser/
DBookmarksLoader.java51 String mAccountType; field in BookmarksLoader
57 mAccountType = accountType; in BookmarksLoader()
63 super.setUri(addAccount(uri, mAccountType, mAccountName)); in setUri()