Home
last modified time | relevance | path

Searched refs:EventEditType (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/editor/
DEventFieldEditorView.java37 import com.android.contacts.common.model.account.AccountType.EventEditType;
157 protected EventEditType getType() { in getType()
158 return (EventEditType) super.getType(); in getType()
282 final EventEditType eventType = getType(); in isBirthdayType()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
DAccountType.java409 public static class EventEditType extends EditType { class in AccountType
412 public EventEditType(int rawValue, int labelRes) { in EventEditType() method in AccountType.EventEditType
420 public EventEditType setYearOptional(boolean yearOptional) { in setYearOptional()
DBaseAccountType.java142 return new EventEditType(type, Event.getTypeResource(type)).setYearOptional(yearOptional); in buildEventType()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DRawContactModifier.java58 import com.android.contacts.common.model.account.AccountType.EventEditType;
1257 final SparseArray<EventEditType> allowedTypes = new SparseArray<EventEditType>(); in migrateEvent()
1259 allowedTypes.put(editType.rawValue, (EventEditType) editType); in migrateEvent()
1270 EventEditType suitableType = allowedTypes.get(type); in migrateEvent()