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

  /external/chromium_org/gpu/command_buffer/common/
mailbox.cc 5 #include "gpu/command_buffer/common/mailbox.h"
14 Mailbox::Mailbox() {
18 bool Mailbox::IsZero() const {
26 void Mailbox::SetZero() {
30 void Mailbox::SetName(const int8* n) {
35 Mailbox Mailbox::Generate() {
36 Mailbox result;
48 bool Mailbox::Verify() const
    [all...]
mailbox.h 20 struct GPU_EXPORT Mailbox {
21 Mailbox();
26 // Generate a unique unguessable mailbox name.
27 static Mailbox Generate();
29 // Verify that the mailbox was created through Mailbox::Generate. This only
31 // check, only to catch bugs where clients forgot to call Mailbox::Generate.
35 bool operator<(const Mailbox& other) const {
38 bool operator==(const Mailbox& other) const {
41 bool operator!=(const Mailbox& other) const
    [all...]
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 44 import com.android.emailcommon.provider.Mailbox;
511 * Infer mailbox type from mailbox name. Used by MessagingController (for live folder sync).
521 Mailbox.TYPE_INBOX);
524 Mailbox.TYPE_OUTBOX);
527 Mailbox.TYPE_DRAFTS);
530 Mailbox.TYPE_TRASH);
533 Mailbox.TYPE_SENT);
536 Mailbox.TYPE_JUNK);
539 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 32 import com.android.emailcommon.provider.Mailbox;
97 final InputStream in, final Mailbox mailbox, final Account account)
99 super(context, resolver, in, mailbox, account);
109 final ContentResolver resolver, final Mailbox mailbox, final Account account)
111 super(parser, context, resolver, mailbox, account);
120 public EmailSyncParser(final Context context, final InputStream in, final Mailbox mailbox,
122 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 44 public class Mailbox extends EmailContent implements EmailContent.MailboxColumns, Parcelable {
52 * which mailbox to sync. Is intentionally private, we have helper functions
66 * Sync extras key to specify that only a specific mailbox type should be synced.
70 * Sync extras key when syncing a mailbox to specify how many additional messages to sync.
76 public static final String TABLE_NAME = "Mailbox";
83 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/mailbox");
244 * Projection to use when reading {@link MailboxColumns#ACCOUNT_KEY} for a mailbox.
264 // Sentinel values for the mSyncInterval field of both Mailbox records
270 // Ping indicates that the EAS mailbox is synced based on a "ping" from the server
273 // Push-Hold indicates an EAS push or ping Mailbox shouldn't sync just ye
521 Mailbox mailbox = null; local
541 Mailbox mailbox = restoreMailboxForPath(context, accountId, path); local
    [all...]
EmailContent.java 68 * (Mailbox and Email)
186 Mailbox.initMailbox();
664 // Foreign key to the Mailbox holding this message [INDEX]
665 // TODO: This column is used in a complicated way: Usually, this refers to the mailbox
667 // will refer to a special "search" mailbox, which does not exist on the server.
684 // a retrieved message (the messageKey for search results will be a TYPE_SEARCH mailbox
697 // Foreign key to the Mailbox holding this message [INDEX]
698 // In cases where mailboxKey is NOT the real mailbox the server considers this message in,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cdoexm.h 52 typedef class Mailbox Mailbox;
54 typedef struct Mailbox Mailbox;
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 50 import com.android.emailcommon.provider.Mailbox;
153 db.update(Mailbox.TABLE_NAME, values, null, null);
156 /** Returns the number of messages in a mailbox. */
159 ContentUris.withAppendedId(Mailbox.CONTENT_URI, mailboxId),
169 Context c, Mailbox b, boolean starred, boolean read, int flagLoaded) {
361 * Get the value of the unread count in the mailbox of the account.
362 * This can be different from the actual number of unread messages in that mailbox.
368 c = mMockContext.getContentResolver().query(Mailbox.CONTENT_URI,
410 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, mMockContext);
454 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, mMockContext)
    [all...]

Completed in 1423 milliseconds