HomeSort by relevance Sort by last modified time
    Searched refs:OUTBOX (Results 1 - 9 of 9) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SwipeableConversationItemView.java 60 // Only enable delete for failed items in the Outbox.
61 // Necessary to do it here because Outbox is the only place where we selectively enable
63 if (folder.isType(UIProvider.FolderType.OUTBOX)) {
SelectedConversationsActionMenu.java 132 LogUtils.i(LOG_TAG, "Discard outbox selected from CAB menu");
454 boolean shouldShowDiscardOutbox = mFolder != null && mFolder.isType(FolderType.OUTBOX);
460 final boolean showDelete = mFolder != null && !mFolder.isType(FolderType.OUTBOX)
524 if (mFolder.isType(FolderType.OUTBOX) && mDiscardOutboxMenuItem != null) {
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Folder.java 43 OUTBOX, // Local folders only - not used in remote Stores
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationsInOutboxTipView.java 48 * one or more messages in the Outbox.
117 mText = (TextView) findViewById(R.id.outbox);
119 findViewById(R.id.outbox).setOnClickListener(new View.OnClickListener() {
165 if ((folder.type & UIProvider.FolderType.OUTBOX) > 0) {
175 // This loads all folders in order to find 'Outbox'. We could consider adding a new
195 // Clear the last seen count, so that new messages in Outbox will always cause this
274 // ideal behavior since after a user dismisses an "1 unsent in outbox" tip,
275 // the message stuck in Outbox could get sent, and a new one gets stuck.
279 // in Outbox), the preference is cleared (see {@link onOutboxTotalCount}).
ActionBarController.java 545 final boolean isOutbox = mFolder.isType(FolderType.OUTBOX);
ConversationListFragment.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Folder.java 766 * Return if this is the outbox folder
769 return isType(FolderType.OUTBOX);
806 } else if (isType(FolderType.OUTBOX)) {
807 desc = "outbox";
844 return (isDraft() || isTrash() || isType(FolderType.OUTBOX));
UIProvider.java     [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java     [all...]

Completed in 243 milliseconds