Home
last modified time | relevance | path

Searched refs:excludedMimeTypes (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/model/
DRawContactModifier.java390 Set<String> excludedMimeTypes) { in hasChanges() argument
400 if (hasChanges(state, type, excludedMimeTypes)) { in hasChanges()
453 Set<String> excludedMimeTypes) { in hasChanges() argument
456 if (excludedMimeTypes != null && excludedMimeTypes.contains(mimeType)) continue; in hasChanges()
/packages/apps/Contacts/src/com/android/contacts/editor/
DContactEditorFragment.java973 private boolean hasPendingRawContactChanges(Set<String> excludedMimeTypes) { in hasPendingRawContactChanges() argument
975 return RawContactModifier.hasChanges(mState, accountTypes, excludedMimeTypes); in hasPendingRawContactChanges()
994 final Set<String> excludedMimeTypes = new HashSet<>(); in hasPendingChanges() local
995 excludedMimeTypes.add(StructuredName.CONTENT_ITEM_TYPE); in hasPendingChanges()
996 return hasPendingRawContactChanges(excludedMimeTypes); in hasPendingChanges()