Home
last modified time | relevance | path

Searched refs:mAccountType (Results 1 – 14 of 14) 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/Contacts/src/com/android/contacts/list/
DContactListFilterView.java42 private TextView mAccountType; field in ContactListFilterView
82 if (mAccountType == null) { in bindView()
84 mAccountType = (TextView) findViewById(R.id.accountType); in bindView()
91 mAccountType.setText(R.string.contactsList); in bindView()
128 mAccountType.setText(accountType.getDisplayLabel(getContext())); in bindView()
142 mAccountType.setText(textResource); in bindView()
/packages/apps/Settings/src/com/android/settings/accounts/
DProviderPreference.java32 private String mAccountType; field in ProviderPreference
37 mAccountType = accountType; in ProviderPreference()
44 return mAccountType; in getAccountType()
DManageAccountsSettings.java77 private String mAccountType; field in ManageAccountsSettings
87 mAccountType = args.getString(KEY_ACCOUNT_TYPE); in onCreate()
199 if (syncAdapters[j].accountType.equals(mAccountType) in requestOrCancelSyncForAccounts()
310 if (mAccountType != null && !account.type.equals(mAccountType)) continue; in onAccountsUpdated()
334 if (mAccountType != null && mFirstAccount != null) { in onAccountsUpdated()
346 PreferenceScreen prefs = addPreferencesForType(mAccountType, getPreferenceScreen()); in addAuthenticatorSettings()
/packages/apps/Contacts/src/com/android/contacts/
DGroupMetaData.java24 private String mAccountType; field in GroupMetaData
34 this.mAccountType = accountType; in GroupMetaData()
47 return mAccountType; in getAccountType()
/packages/apps/Contacts/src/com/android/contacts/group/
DGroupListItem.java24 private final String mAccountType; field in GroupListItem
34 mAccountType = accountType; in GroupListItem()
47 return mAccountType; in getAccountType()
DGroupEditorFragment.java186 private String mAccountType; field in GroupEditorFragment
247 mAccountType = account.type; in onActivityCreated()
275 outState.putString(KEY_ACCOUNT_TYPE, mAccountType); in onSaveInstanceState()
293 mAccountType = state.getString(KEY_ACCOUNT_TYPE); in onRestoreInstanceState()
327 mAccountType = accounts.get(0).type; in selectAccountAndCreateGroup()
342 mAccountType = account.type; in onAccountChosen()
356 return AccountTypeManager.getInstance(mContext).getAccountType(mAccountType, mDataSet); in getAccountType()
364 if (mAccountType == null) { in isGroupMembershipEditable()
430 mAutoCompleteAdapter.setAccountType(mAccountType); in setupEditorForAccount()
481 mAccountType = cursor.getString(GroupMetaDataLoader.ACCOUNT_TYPE); in bindGroupMetaData()
[all …]
DSuggestedMemberListAdapter.java79 private String mAccountType; field in SuggestedMemberListAdapter
95 mAccountType = accountType; in setAccountType()
191 args = new String[] {mAccountName, mAccountType, searchQuery, searchQuery}; in performFiltering()
195 mAccountName, mAccountType, mDataSet, searchQuery, searchQuery in performFiltering()
/packages/apps/Contacts/tests/src/com/android/contacts/util/
DStreamItemEntryBuilder.java31 private String mAccountType; field in StreamItemEntryBuilder
51 mAccountType = value; in setAccountType()
67 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()
/packages/apps/Contacts/src/com/android/contacts/util/
DStreamItemEntry.java43 private final String mAccountType; field in StreamItemEntry
74 mAccountType = accountType; in StreamItemEntry()
90 mAccountType = getString(cursor, StreamItems.ACCOUNT_TYPE); in StreamItemEntry()
125 return mAccountType; in getAccountType()
/packages/apps/Contacts/src/com/android/contacts/editor/
DGroupMembershipView.java133 private String mAccountType; field in GroupMembershipView
203 mAccountType = values.getAsString(RawContacts.ACCOUNT_TYPE); in setState()
212 if (mGroupMetaData == null || mGroupMetaData.isClosed() || mAccountType == null in updateView()
228 if (accountName.equals(mAccountName) && accountType.equals(mAccountType) in updateView()
298 if (accountName.equals(mAccountName) && accountType.equals(mAccountType) in onClick()
421 mAccountType, in createNewGroup() local
DRawContactReadOnlyEditorView.java68 private String mAccountType; field in RawContactReadOnlyEditorView
129 mAccountType = values.getAsString(RawContacts.ACCOUNT_TYPE); in setState()
282 new AccountWithDataSet(mAccountName, mAccountType, mDataSet), in onClick()
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
DSelectSyncedCalendarsMultiAccountAdapter.java358 String mAccountType; field in SelectSyncedCalendarsMultiAccountAdapter.RefreshCalendars
363 mAccountType = accountType; in RefreshCalendars()
370 mView.postDelayed(new RefreshCalendars(mToken, mAccount, mAccountType), in run()
374 mAccountType + "#" + mAccount, in run()
377 new String[] { mAccount, mAccountType } /*selectionArgs*/, in run()