Home
last modified time | relevance | path

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

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DMailbox.java351 private static final SparseBooleanArray SYNCABLE_TYPES; field in Mailbox
353 SYNCABLE_TYPES = new SparseBooleanArray(7);
354 SYNCABLE_TYPES.put(TYPE_INBOX, true); in SYNCABLE_TYPES.put()
355 SYNCABLE_TYPES.put(TYPE_MAIL, false); in SYNCABLE_TYPES.put()
359 SYNCABLE_TYPES.put(TYPE_SENT, true); in SYNCABLE_TYPES.put()
360 SYNCABLE_TYPES.put(TYPE_TRASH, false); in SYNCABLE_TYPES.put()
361 SYNCABLE_TYPES.put(TYPE_CALENDAR, true); in SYNCABLE_TYPES.put()
362 SYNCABLE_TYPES.put(TYPE_CONTACTS, true); in SYNCABLE_TYPES.put()
554 return SYNCABLE_TYPES.indexOfKey(mailboxType) >= 0; in isSyncableType()
563 return SYNCABLE_TYPES.get(mailboxType); in getDefaultSyncStateForType()