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.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) {
mailbox.h 15 struct GPU_EXPORT Mailbox {
16 Mailbox();
21 bool operator<(const Mailbox& other) const {
  /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/Email/tests/src/com/android/email/
ControllerProviderOpsTests.java 26 import com.android.emailcommon.provider.Mailbox;
68 Mailbox.getSystemMailboxName(mContext, -1);
69 fail("Mailbox.getSystemMailboxName(mContext, -1) succeeded without an exception");
74 assertEquals("Inbox", Mailbox.getSystemMailboxName(mContext, Mailbox.TYPE_INBOX));
75 assertEquals("Outbox", Mailbox.getSystemMailboxName(mContext, Mailbox.TYPE_OUTBOX));
76 assertEquals("Trash", Mailbox.getSystemMailboxName(mContext, Mailbox.TYPE_TRASH));
77 assertEquals("Sent", Mailbox.getSystemMailboxName(mContext, Mailbox.TYPE_SENT))
    [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 40 * Unit tests for the Mailbox inner class.
72 /** Returns the number of messages in a mailbox. */
75 ContentUris.withAppendedId(Mailbox.CONTENT_URI, mailboxId),
80 private static Message createMessage(Context c, Mailbox b, boolean starred, boolean read,
94 * Test simple mailbox save/retrieve
99 Account account1 = ProviderTestUtils.setupAccount("mailbox-save", true, c);
101 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, c);
104 Mailbox box2 = Mailbox.restoreMailboxWithId(c, box1Id);
110 * Test delete mailbox
    [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);
106 final ContentResolver resolver, final Mailbox mailbox, final Account account)
108 super(parser, context, resolver, mailbox, account);
117 public EmailSyncParser(final Context context, final InputStream in, final Mailbox mailbox,
119 this(context, context.getContentResolver(), in, mailbox, account)
    [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 50 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),
168 Context c, Mailbox b, boolean starred, boolean read, int flagLoaded) {
389 * Get the value of the unread count in the mailbox of the account.
390 * This can be different from the actual number of unread messages in that mailbox.
396 c = mMockContext.getContentResolver().query(Mailbox.CONTENT_URI,
438 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, mMockContext);
485 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, mMockContext)
    [all...]

Completed in 770 milliseconds