HomeSort by relevance Sort by last modified time
    Searched defs:Mailbox (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/gpu/command_buffer/common/
mailbox.h 13 struct GPU_EXPORT Mailbox {
14 Mailbox();
mailbox.cc 5 #include "gpu/command_buffer/common/mailbox.h"
13 Mailbox::Mailbox() {
17 bool Mailbox::IsZero() const {
25 void Mailbox::SetZero() {
29 void Mailbox::SetName(const int8* n) {
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 41 import com.android.emailcommon.provider.Mailbox;
447 * Infer mailbox type from mailbox name. Used by MessagingController (for live folder sync).
454 Mailbox.TYPE_INBOX);
457 Mailbox.TYPE_OUTBOX);
460 Mailbox.TYPE_DRAFTS);
463 Mailbox.TYPE_TRASH);
466 Mailbox.TYPE_SENT);
469 Mailbox.TYPE_JUNK);
472 return Mailbox.TYPE_MAIL
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
Mailbox.java 29 public class Mailbox extends Address {
35 * Creates a mailbox without a route. Routes are obsolete.
39 public Mailbox(String localPart, String domain) {
44 * Creates a mailbox with a route. Routes are obsolete.
49 public Mailbox(DomainList route, String localPart, String domain) {
  /packages/apps/Email/tests/src/com/android/emailcommon/provider/
MailboxTests.java 39 * Unit tests for the Mailbox inner class.
70 /** Returns the number of messages in a mailbox. */
73 ContentUris.withAppendedId(Mailbox.CONTENT_URI, mailboxId),
78 private static Message createMessage(Context c, Mailbox b, boolean starred, boolean read,
92 * Test simple mailbox save/retrieve
97 Account account1 = ProviderTestUtils.setupAccount("mailbox-save", true, c);
99 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, c);
102 Mailbox box2 = Mailbox.restoreMailboxWithId(c, box1Id);
108 * Test delete mailbox
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
ControllerProviderOpsTests.java 31 import com.android.emailcommon.provider.Mailbox;
90 assertEquals("Inbox", Controller.getMailboxServerName(mContext, Mailbox.TYPE_INBOX));
91 assertEquals("Outbox", Controller.getMailboxServerName(mContext, Mailbox.TYPE_OUTBOX));
92 assertEquals("Trash", Controller.getMailboxServerName(mContext, Mailbox.TYPE_TRASH));
93 assertEquals("Sent", Controller.getMailboxServerName(mContext, Mailbox.TYPE_SENT));
94 assertEquals("Junk", Controller.getMailboxServerName(mContext, Mailbox.TYPE_JUNK));
99 assertEquals("Inbox", Controller.getMailboxServerName(mContext, Mailbox.TYPE_INBOX));
100 assertEquals("Outbox", Controller.getMailboxServerName(mContext, Mailbox.TYPE_OUTBOX));
101 assertEquals("Trash", Controller.getMailboxServerName(mContext, Mailbox.TYPE_TRASH));
102 assertEquals("Sent", Controller.getMailboxServerName(mContext, Mailbox.TYPE_SENT))
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
EmailSyncParser.java 30 import com.android.emailcommon.provider.Mailbox;
94 final InputStream in, final Mailbox mailbox, final Account account)
96 super(context, resolver, in, mailbox, account);
534 userLog("Multiple messages with the same serverId/mailbox: " + serverId);
545 // Find the message in this mailbox with the given serverId
734 LogUtils.i(TAG, "Wiping mailbox " + mMailbox);
735 Mailbox.resyncMailbox(mContentResolver, new android.accounts.Account(mAccount.mEmailAddress,
    [all...]
FolderSyncParser.java 37 import com.android.emailcommon.provider.Mailbox;
66 * Mapping from EAS type values to {@link Mailbox} types.
69 * If an EAS type is not in the map, or is inserted with a value of {@link Mailbox#TYPE_NONE},
71 * TODO: Maybe we should store the mailbox anyway, otherwise it'll be annoying to upgrade.
76 MAILBOX_TYPE_MAP.put(Eas.MAILBOX_TYPE_USER_GENERIC, Mailbox.TYPE_MAIL);
77 MAILBOX_TYPE_MAP.put(Eas.MAILBOX_TYPE_INBOX, Mailbox.TYPE_INBOX);
78 MAILBOX_TYPE_MAP.put(Eas.MAILBOX_TYPE_DRAFTS, Mailbox.TYPE_DRAFTS);
79 MAILBOX_TYPE_MAP.put(Eas.MAILBOX_TYPE_DELETED, Mailbox.TYPE_TRASH);
80 MAILBOX_TYPE_MAP.put(Eas.MAILBOX_TYPE_SENT, Mailbox.TYPE_SENT);
81 MAILBOX_TYPE_MAP.put(Eas.MAILBOX_TYPE_OUTBOX, Mailbox.TYPE_OUTBOX)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mailbox.py 5 # Notes for authors of new mailbox subclasses:
37 __all__ = [ 'Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',
42 class Mailbox:
46 """Initialize a Mailbox instance."""
143 """Return a count of messages in the mailbox."""
165 raise KeyError('No messages in mailbox')
189 """Lock the mailbox."""
193 """Unlock the mailbox if it is locked."""
197 """Flush and close the mailbox."""
244 class Maildir(Mailbox)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mailbox.py 5 # Notes for authors of new mailbox subclasses:
37 __all__ = [ 'Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',
42 class Mailbox:
46 """Initialize a Mailbox instance."""
143 """Return a count of messages in the mailbox."""
165 raise KeyError('No messages in mailbox')
189 """Lock the mailbox."""
193 """Unlock the mailbox if it is locked."""
197 """Flush and close the mailbox."""
244 class Maildir(Mailbox)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Mailbox.java 45 public class Mailbox extends EmailContent implements MailboxColumns, Parcelable {
53 * which mailbox to sync. Is intentionally private, we have helper functions
67 * Sync extras key to specify that only a specific mailbox type should be synced.
71 * Sync extras key when syncing a mailbox to specify how many additional messages to sync.
77 public static final String TABLE_NAME = "Mailbox";
84 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/mailbox");
232 * Projection to use when reading {@link MailboxColumns#ACCOUNT_KEY} for a mailbox.
251 // Sentinel values for the mSyncInterval field of both Mailbox records
257 // Ping indicates that the EAS mailbox is synced based on a "ping" from the server
260 // Push-Hold indicates an EAS push or ping Mailbox shouldn't sync just ye
520 Mailbox mailbox = null; local
540 Mailbox mailbox = restoreMailboxForPath(context, accountId, path); local
    [all...]
EmailContent.java 58 * (Mailbox and Email)
160 Mailbox.initMailbox();
563 // Foreign key to the Mailbox holding this message [INDEX]
564 // TODO: This column is used in a complicated way: Usually, this refers to the mailbox
566 // will refer to a special "search" mailbox, which does not exist on the server.
583 // a retrieved message (the messageKey for search results will be a TYPE_SEARCH mailbox
596 // Foreign key to the Mailbox holding this message [INDEX]
597 // In cases where mailboxKey is NOT the real mailbox the server considers this message in,
726 * This means unread counts on the mailbox list can be different from the
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 53 import com.android.emailcommon.provider.Mailbox;
152 db.update(Mailbox.TABLE_NAME, values, null, null);
155 /** Returns the number of messages in a mailbox. */
158 ContentUris.withAppendedId(Mailbox.CONTENT_URI, mailboxId),
163 private static Message createMessage(Context c, Mailbox b, boolean starred, boolean read,
381 * Get the value of the unread count in the mailbox of the account.
382 * This can be different from the actual number of unread messages in that mailbox.
389 Mailbox.CONTENT_URI,
436 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, mMockContext);
480 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, mMockContext)
    [all...]

Completed in 1283 milliseconds