Home
last modified time | relevance | path

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

/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
DGoogleAccountType.java168 kind.typeList.add(buildEventType(Event.TYPE_BIRTHDAY, true).setSpecificMax(1)); in addDataKindEvent()
169 kind.typeList.add(buildEventType(Event.TYPE_ANNIVERSARY, false)); in addDataKindEvent()
170 kind.typeList.add(buildEventType(Event.TYPE_OTHER, false)); in addDataKindEvent()
171 kind.typeList.add(buildEventType(Event.TYPE_CUSTOM, false).setSecondary(true) in addDataKindEvent()
DBaseAccountType.java141 protected static EditType buildEventType(int type, boolean yearOptional) { in buildEventType() method in BaseAccountType
1420 return buildEventType(Event.TYPE_BIRTHDAY, yo).setSpecificMax(1); in buildEditTypeForTypeTag()
1422 if ("anniversary".equals(type)) return buildEventType(Event.TYPE_ANNIVERSARY, yo); in buildEditTypeForTypeTag()
1423 if ("other".equals(type)) return buildEventType(Event.TYPE_OTHER, yo); in buildEditTypeForTypeTag()
1425 return buildEventType(Event.TYPE_CUSTOM, yo) in buildEditTypeForTypeTag()
DExchangeAccountType.java318 kind.typeList.add(buildEventType(Event.TYPE_BIRTHDAY, false).setSpecificMax(1)); in addDataKindEvent()