/packages/apps/Exchange/tests/src/com/android/exchange/utility/ |
D | CalendarUtilitiesTests.java | 330 assertNotNull(msg.mAttachments); in testCreateMessageForEntity_Reply() 331 assertEquals(1, msg.mAttachments.size()); in testCreateMessageForEntity_Reply() 332 Attachment att = msg.mAttachments.get(0); in testCreateMessageForEntity_Reply() 372 assertNotNull(msg.mAttachments); in testCreateMessageForEntity_Invite_AllDay() 373 assertEquals(1, msg.mAttachments.size()); in testCreateMessageForEntity_Invite_AllDay() 374 Attachment att = msg.mAttachments.get(0); in testCreateMessageForEntity_Invite_AllDay() 434 assertNotNull(msg.mAttachments); in testCreateMessageForEntity_Invite() 435 assertEquals(1, msg.mAttachments.size()); in testCreateMessageForEntity_Invite() 436 Attachment att = msg.mAttachments.get(0); in testCreateMessageForEntity_Invite() 500 assertNotNull(msg.mAttachments); in testCreateMessageForEntity_Recurring() [all …]
|
/packages/apps/UnifiedEmail/src/com/android/mail/compose/ |
D | AttachmentsView.java | 53 private final ArrayList<Attachment> mAttachments; field in AttachmentsView 64 mAttachments = Lists.newArrayList(); in AttachmentsView() 97 mAttachments.add(attachment); in addAttachment() 147 mAttachments.remove(attachment); in deleteAttachment() 159 return mAttachments; in getAttachments() 181 mAttachments.clear(); in deleteAllAttachments() 192 for (Attachment attachment : mAttachments) { in getTotalAttachmentsSize() 363 Attachment lastAttachment = mAttachments.get(mAttachments.size() - 1); in focusLastAttachment()
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
D | Message.java | 226 private transient List<Attachment> mAttachments = null; field in Message 473 mAttachments = Lists.newArrayList(); in Message() 479 mAttachments.add(new Attachment(context, attachmentPart, in Message() 489 mAttachments.add(new Attachment(context, viewablePart, emlFileUri, messageId, cid, in Message() 494 hasAttachments = !mAttachments.isEmpty(); in Message() 641 if (mAttachments == null) { in getAttachments() 643 mAttachments = Attachment.fromJSONArray(attachmentsJson); in getAttachments() 645 mAttachments = Collections.emptyList(); in getAttachments() 648 return mAttachments; in getAttachments()
|
/packages/apps/Email/tests/src/com/android/emailcommon/internet/ |
D | Rfc822OutputTests.java | 147 msg.mAttachments = new ArrayList<Attachment>(); in testWriteToAlternativePart() 154 msg.mAttachments.add(att); in testWriteToAlternativePart() 192 msg.mAttachments = new ArrayList<Attachment>(); in testWriteToMixedPart() 198 msg.mAttachments.add(att); in testWriteToMixedPart()
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
D | EmailContent.java | 930 transient public ArrayList<Attachment> mAttachments = null; field in EmailContent.Message 1083 (mAttachments == null || mAttachments.isEmpty())) { in save() 1107 if (mAttachments != null) { in save() 1109 for (int i = 0; i < mAttachments.size(); i++) { in save() 1110 final Attachment a = mAttachments.get(i); in save() 1198 if (mAttachments != null) { in addSaveOps() 1199 for (Attachment att: mAttachments) { in addSaveOps()
|
/packages/apps/Email/provider_src/com/android/email/ |
D | LegacyConversions.java | 168 localMessage.mAttachments = null; in updateAttachments() 309 if (localMessage.mAttachments == null) { in addOneAttachment() 310 localMessage.mAttachments = new ArrayList<Attachment>(); in addOneAttachment() 312 localMessage.mAttachments.add(localAttachment); in addOneAttachment()
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
D | AttachmentTileGrid.java | 54 private List<Attachment> mAttachments; field in AttachmentTileGrid 78 mAttachments = list; in configureGrid() 234 return mAttachments; in getAttachments()
|
/packages/apps/Email/tests/src/com/android/email/provider/ |
D | PolicyTests.java | 136 msg1.mAttachments = atts; in testSetAttachmentFlagsForNewPolicy() 145 msg2.mAttachments = atts; in testSetAttachmentFlagsForNewPolicy()
|
D | ProviderTests.java | 470 message3.mAttachments = atts; in testMessageWithAttachment() 521 message4.mAttachments = atts; in testMessageSaveWithJustAttachments() 1448 message1.mAttachments = atts; in testCascadeMessageDelete() 1464 message2.mAttachments = atts; in testCascadeMessageDelete()
|
/packages/apps/Exchange/src/com/android/exchange/utility/ |
D | CalendarUtilities.java | 2021 msg.mAttachments = new ArrayList<Attachment>(); in createMessageForEntity() 2022 msg.mAttachments.add(att); in createMessageForEntity()
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
D | EmailSyncParser.java | 242 msg.mAttachments = atts; in addData()
|
/packages/apps/Email/provider_src/com/android/email/provider/ |
D | EmailProvider.java | 4971 msg.mAttachments = atts; in uiSaveMessage()
|