HomeSort by relevance Sort by last modified time
    Searched refs:getAccountType (Results 1 - 25 of 47) sorted by null

1 2

  /packages/apps/Settings/src/com/android/settings/accounts/
ProviderPreference.java 45 public String getAccountType() {
51 getContext(), getAccountType(), userId);
ChooseAccountActivity.java 308 Log.v(TAG, "Attempting to add account of type " + pref.getAccountType());
310 finishWithAccountType(pref.getAccountType());
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
AccountWithDataSet.java 56 public String getAccountType() {
73 && Objects.equal(mAccountType, other.getAccountType())
102 && Objects.equal(systemAccount.type, getAccountType())) {
  /packages/apps/Contacts/src/com/android/contacts/util/
DeviceLocalAccountTypeFactory.java 43 AccountType getAccountType(String accountType);
72 public AccountType getAccountType(String accountType) {
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupListItem.java 51 public String getAccountType() {
GroupMetaData.java 66 final AccountType accountType = accountTypeManager.getAccountType(
  /packages/apps/Dialer/java/com/android/contacts/common/
GroupMetaData.java 53 public String getAccountType() {
  /packages/apps/Contacts/src/com/android/contacts/editor/
RawContactDeltaComparator.java 50 final AccountType type1 = accountTypes.getAccountType(accountType1, dataSet1);
53 final AccountType type2 = accountTypes.getAccountType(accountType2, dataSet2);
KindSectionData.java 46 public AccountType getAccountType() {
RawContactEditorView.java 488 rawContactDelta.getAccountType(mAccountTypeManager),
492 rawContactDelta.getAccountType(mAccountTypeManager),
532 return !mCurrentRawContactDelta.getAccountType(mAccountTypeManager).areContactsWritable();
545 final AccountType accountType = rawContactDelta.getAccountType(mAccountTypeManager);
573 final AccountType type = mCurrentRawContactDelta.getAccountType(accountTypes);
583 final AccountType accountType = mCurrentRawContactDelta.getAccountType(mAccountTypeManager);
640 final AccountType type = mCurrentRawContactDelta.getAccountType(accountTypes);
    [all...]
PickRawContactLoader.java 222 final AccountType account = accountManager.getAccountType(
236 final AccountType account = accountManager.getAccountType(
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/
FakeDeviceAccountTypeFactory.java 41 public AccountType getAccountType(String accountType) {
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
InvisibleContactUtil.java 53 final AccountType type = rawContact.getAccountType(context);
98 final AccountType type = rawContactEntityDelta.getAccountType(accountTypes);
  /packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
MockAccountTypeManager.java 47 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
RawContactModifierTests.java 151 protected AccountType getAccountType() {
200 final AccountType source = getAccountType();
245 final AccountType source = getAccountType();
282 final AccountType source = getAccountType();
311 final AccountType source = getAccountType();
347 final AccountType source = getAccountType();
358 final AccountType source = getAccountType();
375 final AccountType source = getAccountType();
420 final AccountType source = getAccountType();
446 final AccountType source = getAccountType();
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
AccountTypeManager.java 161 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
272 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet);
274 public final AccountType getAccountType(String accountType, String dataSet) {
275 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet));
280 return getAccountType(account.getAccountTypeWithDataSet());
282 return getAccountType(null, null);
705 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
RawContactDelta.java 214 return AccountTypeManager.getInstance(context).getAccountType(type, dataSet);
225 public String getAccountType() {
233 public AccountType getAccountType(AccountTypeManager manager) {
234 return manager.getAccountType(getAccountType(), getDataSet());
238 return new AccountWithDataSet(getAccountName(), getAccountType(), getDataSet());
Contact.java 383 AccountType accountType = rawContact.getAccountType(context);
473 final AccountType accountType = rawContact.getAccountType(context);
RawContact.java 260 public AccountType getAccountType(Context context) {
261 return getAccountTypeManager(context).getAccountType(getAccountTypeString(), getDataSet());
  /packages/apps/Dialer/java/com/android/contacts/common/model/
AccountTypeManager.java 118 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet);
120 public final AccountType getAccountType(String accountType, String dataSet) {
121 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet));
126 return getAccountType(account.getAccountTypeWithDataSet());
128 return getAccountType(null, null);
644 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
RawContact.java 175 public AccountType getAccountType(Context context) {
176 return getAccountTypeManager(context).getAccountType(getAccountTypeString(), getDataSet());
  /packages/apps/Contacts/src/com/android/contacts/model/account/
AccountDisplayInfoFactory.java 79 delta.getAccountType(), delta.getDataSet());
AccountTypeProvider.java 87 AccountType type = mLocalAccountTypeFactory.getAccountType(accountType);
180 accountType = mLocalAccountTypeFactory.getAccountType(type);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListFilterView.java 130 accountTypes.getAccountType(mFilter.accountType, mFilter.dataSet);
  /packages/apps/Dialer/java/com/android/dialer/simulator/impl/
SimulatorContacts.java 135 .withValue(ContactsContract.RawContacts.ACCOUNT_TYPE, contact.getAccountType())
196 abstract String getAccountType();

Completed in 524 milliseconds

1 2