Home
last modified time | relevance | path

Searched refs:mFallbackAccountType (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
DMockAccountTypeManager.java49 AccountType mFallbackAccountType = new BaseAccountType() { in getAccountType() local
55 mFallbackAccountType.accountType = "fallback"; in getAccountType()
62 return mFallbackAccountType; in getAccountType()
/packages/apps/Contacts/src/com/android/contacts/model/
DAccountTypeManager.java345 private final AccountType mFallbackAccountType;
381 mFallbackAccountType = new FallbackAccountType(context);
588 type = mFallbackAccountType;
673 kind = mFallbackAccountType.getKindForMimetype(mimeType);
712 return type != null ? type : mFallbackAccountType;
/packages/apps/Dialer/java/com/android/contacts/common/model/
DAccountTypeManager.java243 private AccountType mFallbackAccountType; field in AccountTypeManagerImpl
267 mFallbackAccountType = new FallbackAccountType(context); in AccountTypeManagerImpl()
630 kind = mFallbackAccountType.getKindForMimetype(mimeType); in getKindOrFallback()
648 return type != null ? type : mFallbackAccountType; in getAccountType()