Searched refs:FolderType (Results 1 – 8 of 8) sorted by relevance
28 public enum FolderType { enum in Folder95 public abstract boolean canCreate(FolderType type); in canCreate()101 public abstract boolean create(FolderType type) throws MessagingException; in create()
38 public boolean canCreate(FolderType type) { in canCreate()43 public boolean create(FolderType type) { in create()
34 import com.android.emailcommon.mail.Folder.FolderType;289 assertFalse(mFolder.canCreate(FolderType.HOLDS_FOLDERS)); in testSmallFolderFunctions()290 assertFalse(mFolder.canCreate(FolderType.HOLDS_MESSAGES)); in testSmallFolderFunctions()291 assertFalse(mFolder.create(FolderType.HOLDS_FOLDERS)); in testSmallFolderFunctions()292 assertFalse(mFolder.create(FolderType.HOLDS_MESSAGES)); in testSmallFolderFunctions()
49 import com.android.emailcommon.mail.Folder.FolderType;515 assertTrue(mFolder.canCreate(FolderType.HOLDS_FOLDERS)); in testSmallFolderFunctions()516 assertTrue(mFolder.canCreate(FolderType.HOLDS_MESSAGES)); in testSmallFolderFunctions()1539 assertTrue(folder.canCreate(FolderType.HOLDS_MESSAGES)); in testCreate()1546 assertTrue(folder.create(FolderType.HOLDS_MESSAGES)); in testCreate()1557 assertFalse(folder.create(FolderType.HOLDS_MESSAGES)); in testCreate()
42 import com.android.emailcommon.mail.Folder.FolderType;790 if (!remoteFolder.create(FolderType.HOLDS_MESSAGES)) { in synchronizeMailboxGeneric()1621 remoteTrashFolder.create(FolderType.HOLDS_MESSAGES); in processPendingMoveToTrash()1729 if (!remoteFolder.canCreate(FolderType.HOLDS_MESSAGES)) { in processPendingAppend()1742 if (!remoteFolder.create(FolderType.HOLDS_MESSAGES)) { in processPendingAppend()
363 public boolean canCreate(FolderType type) { in canCreate()368 public boolean create(FolderType type) { in create()
215 public boolean canCreate(FolderType type) { in canCreate()220 public boolean create(FolderType type) throws MessagingException { in create()
523 public static final class FolderType { class in UIProvider