HomeSort by relevance Sort by last modified time
    Searched full:mailbox (Results 76 - 100 of 190) sorted by null

1 2 34 5 6 7 8

  /packages/apps/Email/res/values-sw600dp-port/
dimensions.xml 20 <!-- width of mailbox list -->
  /packages/apps/Exchange/src/com/android/exchange/
ContactsSyncAdapterService.java 21 import com.android.emailcommon.provider.Mailbox;
47 MailboxColumns.ACCOUNT_KEY + "=? AND " + MailboxColumns.TYPE + '=' + Mailbox.TYPE_CONTACTS;
136 // Now, find the contacts mailbox associated with the account
137 Cursor mailboxCursor = cr.query(Mailbox.CONTENT_URI, ID_PROJECTION,
MailboxAlarmReceiver.java 32 long mailboxId = intent.getLongExtra("mailbox", ExchangeService.EXTRA_MAILBOX_ID);
Request.java 20 * Requests for mailbox actions are handled by subclasses of this abstract class.
EasOutboxService.java 39 import com.android.emailcommon.provider.Mailbox;
82 public EasOutboxService(Context _context, Mailbox _mailbox) {
262 // Then, we need the serverId of the mailbox
263 cols = Utility.getRowColumns(context, Mailbox.CONTENT_URI, boxId,
314 // The reference message and mailbox are called item and collection in EAS
505 Mailbox mailbox = Mailbox.restoreMailboxOfType(context, accountId, Mailbox.TYPE_OUTBOX); local
506 if (mailbox != null)
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
ThreePaneLayout.java 56 /** Mailbox list + message list both visible. */
93 /** Mailbox list width. Comes from resources. */
306 * Show the left most pane. (i.e. mailbox list)
369 // mailbox + message list
370 animatorLabel = "moving to [mailbox list + message list]";
390 // message list + Message view -> mailbox + message list
391 animatorLabel = "moving to [mailbox list + message list]";
396 // mailbox + message list -> message list + message view
419 // Animation properties -- mailbox list left and message list width, at the same time.
430 * @return The ID of the view for the left pane fragment. (i.e. mailbox list
    [all...]
MessageViewFragment.java 41 import com.android.emailcommon.provider.Mailbox;
78 /** Whether or not the message can be moved from the mailbox it's in. */
110 * Called right before the current message will be deleted or moved to another mailbox.
296 protected void onMessageShown(long messageId, Mailbox mailbox) {
297 super.onMessageShown(messageId, mailbox);
301 && mailbox.canHaveMessagesMoved();
311 enableReplyForwardButtons(Mailbox.isMailboxTypeReplyAndForwardable(mailbox.mType));
ActivityHelper.java 32 import com.android.emailcommon.provider.Mailbox;
107 String mailboxName = Mailbox.getDisplayName(context, newMailboxId);
109 return; // Mailbox gone??
MessageOrderManager.java 29 import com.android.emailcommon.provider.Mailbox;
79 * mailbox. {@link #canMoveToOlder}, {@link #canMoveToNewer}, {@link #moveToOlder} and
133 Preconditions.checkArgument(listContext.getMailboxId() != Mailbox.NO_MAILBOX);
273 * @return true if the message set to {@link #moveTo} has an older message in the mailbox.
282 * @return true if the message set to {@link #moveTo} has an newer message in the mailbox.
EmailActivity.java 42 import com.android.emailcommon.provider.Mailbox;
95 * Create an intent to launch and open a mailbox.
99 * {@link Mailbox#QUERY_ALL_INBOXES}) don't work.
117 * {@link Mailbox#QUERY_ALL_INBOXES}) don't work.
135 * @param accountId ID of the account for the mailbox. Must not be {@link Account#NO_ACCOUNT}.
136 * @param mailboxId ID of the mailbox to search, or {@link Mailbox#NO_MAILBOX} to perform
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTestUtils.java 26 import com.android.emailcommon.provider.Mailbox;
114 * Create a mailbox for test purposes
116 public static Mailbox setupMailbox(String name, long accountId, boolean saveIt,
118 return setupMailbox(name, accountId, saveIt, context, Mailbox.TYPE_MAIL);
120 public static Mailbox setupMailbox(String name, long accountId, boolean saveIt,
124 public static Mailbox setupMailbox(String name, long accountId, boolean saveIt,
126 Mailbox box = new Mailbox();
358 public static void assertMailboxEqual(String caller, Mailbox expect, Mailbox actual)
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
NotificationControllerTest.java 28 import com.android.emailcommon.provider.Mailbox;
213 Mailbox b1 = ProviderTestUtils.setupMailbox("inbox", a1.mId, true, c, Mailbox.TYPE_INBOX);
244 Mailbox b1 = ProviderTestUtils.setupMailbox("inbox", a1.mId, true, c, Mailbox.TYPE_INBOX);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java 54 * (Mailbox and Email)
475 // Foreign key to the Mailbox holding this message [INDEX]
491 // a retrieved message (the messageKey for search results will be a TYPE_SEARCH mailbox
603 * This means unread counts on the mailbox list can be different from the
614 + "SELECT " + MailboxColumns.ID + " FROM " + Mailbox.TABLE_NAME + ""
615 + " WHERE " + MailboxColumns.TYPE + " = " + Mailbox.TYPE_TRASH
622 + "SELECT " + MailboxColumns.ID + " FROM " + Mailbox.TABLE_NAME
623 + " WHERE " + MailboxColumns.TYPE + " = " + Mailbox.TYPE_INBOX
630 + "SELECT " + MailboxColumns.ID + " FROM " + Mailbox.TABLE_NAME
631 + " WHERE " + MailboxColumns.TYPE + " = " + Mailbox.TYPE_DRAFT
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
EmailServiceProxy.java 149 * Request the sync of a mailbox; the service MUST send the syncMailboxStatus callback
150 * indicating "starting" and "finished" (or error), regardless of whether the mailbox is
153 * @param mailboxId the id of the mailbox record
166 * Request the immediate termination of a mailbox sync. Although the service is not required to
170 * @param mailboxId the id of the mailbox record
376 * terms separated by white space. The search is performed on the specified mailbox in the
378 * At most numResults messages matching the query term(s) will be added to the mailbox specified
385 * @param destMailboxId the id of the mailbox into which search results are appended
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
IntentUtilities.java 60 * Add the mailbox ID parameter.
95 * Retrieve the mailbox ID.
Utility.java 57 import com.android.emailcommon.provider.Mailbox;
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
EmailSyncAdapter.java 49 import com.android.emailcommon.provider.Mailbox;
159 || mMailbox.mType == Mailbox.TYPE_INBOX) {
223 // Permanently delete if in trash mailbox
226 boolean isTrashMailbox = mMailbox.mType == Mailbox.TYPE_TRASH;
323 if (mMailbox.mType == Mailbox.TYPE_INBOX) {
330 uri = ContentUris.withAppendedId(Mailbox.CONTENT_URI, mMailbox.mId);
400 * Return the estimated number of items to be synced in the current mailbox, based on the
    [all...]
  /packages/apps/Email/tests/src/com/android/email/activity/
UIControllerTwoPaneRefreshTaskTest.java 110 // Current mailbox != inbox, not refreshing, never refreshed == should sync
117 // Current mailbox == inbox should NOT sync.
122 // Fron here, Current mailbox != inbox
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libresolv-2.7.so 
libresolv.so 
libresolv.so.2 
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.jj 183 void mailbox() :
184 {/*@bgen(jjtree) mailbox */
190 {/*@bgen(jjtree) mailbox */
265 [ mailbox() ]
268 [ mailbox() ]
  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
UtilityMediumTests.java 26 import com.android.emailcommon.provider.Mailbox;
100 Mailbox mailbox = local
101 ProviderTestUtils.setupMailbox("mailbox", account.mId, true, mMockContext);
102 Message message = ProviderTestUtils.setupMessage("foo", account.mId, mailbox.mId, false,
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
EmailSyncAdapterTests.java 29 import com.android.emailcommon.provider.Mailbox;
107 Mailbox box1 = EmailContentSetupUtils.setupMailbox("box1", mAccount.mId, true,
168 void setupSyncParserAndAdapter(Account account, Mailbox mailbox) throws IOException {
169 EasSyncService service = getTestService(account, mailbox);
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 42 import com.android.emailcommon.provider.Mailbox;
439 * Infer mailbox type from mailbox name. Used by MessagingController (for live folder sync).
446 Mailbox.TYPE_INBOX);
449 Mailbox.TYPE_OUTBOX);
452 Mailbox.TYPE_DRAFTS);
455 Mailbox.TYPE_TRASH);
458 Mailbox.TYPE_SENT);
461 Mailbox.TYPE_JUNK);
464 return Mailbox.TYPE_MAIL
    [all...]

Completed in 937 milliseconds

1 2 34 5 6 7 8