Searched refs:mAttachments (Results 1 – 9 of 9) sorted by relevance
/packages/apps/Exchange/exchange2/tests/src/com/android/exchange/utility/ |
D | CalendarUtilitiesTests.java | 308 assertNotNull(msg.mAttachments); in testCreateMessageForEntity_Reply() 309 assertEquals(1, msg.mAttachments.size()); in testCreateMessageForEntity_Reply() 310 Attachment att = msg.mAttachments.get(0); in testCreateMessageForEntity_Reply() 350 assertNotNull(msg.mAttachments); in testCreateMessageForEntity_Invite_AllDay() 351 assertEquals(1, msg.mAttachments.size()); in testCreateMessageForEntity_Invite_AllDay() 352 Attachment att = msg.mAttachments.get(0); in testCreateMessageForEntity_Invite_AllDay() 412 assertNotNull(msg.mAttachments); in testCreateMessageForEntity_Invite() 413 assertEquals(1, msg.mAttachments.size()); in testCreateMessageForEntity_Invite() 414 Attachment att = msg.mAttachments.get(0); in testCreateMessageForEntity_Invite() 478 assertNotNull(msg.mAttachments); in testCreateMessageForEntity_Recurring() [all …]
|
/packages/apps/Exchange/tests/src/com/android/exchange/utility/ |
D | CalendarUtilitiesTests.java | 318 assertNotNull(msg.mAttachments); in testCreateMessageForEntity_Reply() 319 assertEquals(1, msg.mAttachments.size()); in testCreateMessageForEntity_Reply() 320 Attachment att = msg.mAttachments.get(0); in testCreateMessageForEntity_Reply() 360 assertNotNull(msg.mAttachments); in testCreateMessageForEntity_Invite_AllDay() 361 assertEquals(1, msg.mAttachments.size()); in testCreateMessageForEntity_Invite_AllDay() 362 Attachment att = msg.mAttachments.get(0); in testCreateMessageForEntity_Invite_AllDay() 422 assertNotNull(msg.mAttachments); in testCreateMessageForEntity_Invite() 423 assertEquals(1, msg.mAttachments.size()); in testCreateMessageForEntity_Invite() 424 Attachment att = msg.mAttachments.get(0); in testCreateMessageForEntity_Invite() 488 assertNotNull(msg.mAttachments); in testCreateMessageForEntity_Recurring() [all …]
|
/packages/apps/Email/tests/src/com/android/emailcommon/internet/ |
D | Rfc822OutputTests.java | 246 msg.mAttachments = new ArrayList<Attachment>(); in testWriteToAlternativePart() 253 msg.mAttachments.add(att); in testWriteToAlternativePart() 291 msg.mAttachments = new ArrayList<Attachment>(); in testWriteToMixedPart() 297 msg.mAttachments.add(att); in testWriteToMixedPart()
|
/packages/apps/Email/src/com/android/email/activity/ |
D | MessageViewFragmentBase.java | 121 private LinearLayout mAttachments; field in MessageViewFragmentBase 293 mAttachments = (LinearLayout) UiUtilities.getView(view, R.id.attachments); in onCreateView() 508 mAttachments.removeAllViews(); in resetView() 509 mAttachments.setVisibility(View.GONE); in resetView() 1375 for (int i = 0, count = mAttachments.getChildCount(); i < count; i++) { in updateAttachmentTab() 1376 View view = mAttachments.getChildAt(i); in updateAttachmentTab() 1522 mAttachments.addView(view); in addAttachment() 1523 mAttachments.setVisibility(View.VISIBLE); in addAttachment() 1527 for (int i = 0, count = mAttachments.getChildCount(); i < count; i++) { in findAttachmentInfoFromView() 1529 (MessageViewAttachmentInfo) mAttachments.getChildAt(i).getTag(); in findAttachmentInfoFromView() [all …]
|
D | MessageCompose.java | 165 private final ArrayList<Attachment> mAttachments = new ArrayList<Attachment>(); field in MessageCompose 628 && mAttachments.isEmpty(); in areViewsEmpty() 947 mAttachments, mSourceAttachments, true)) { in loadSourceMessage() 1330 updateMessage(mDraft, mAccount, mAttachments.size() > 0, mSend); in doInBackground() 1351 for (Attachment attachment : mAttachments) { in doInBackground() 1619 mAttachments.add(attachment); in addAttachment() 1626 for (Attachment attachment : mAttachments) { in updateAttachmentUi() 1720 deleteAttachment(mAttachments, attachment); in onDeleteAttachmentIconClicked() 1831 if (processSourceMessageAttachments(mAttachments, mSourceAttachments, isForward())) { in onActionChanged()
|
/packages/apps/Email/src/com/android/email/ |
D | LegacyConversions.java | 163 localMessage.mAttachments = null; in updateAttachments() 268 if (localMessage.mAttachments == null) { in addOneAttachment() 269 localMessage.mAttachments = new ArrayList<Attachment>(); in addOneAttachment() 271 localMessage.mAttachments.add(localAttachment); in addOneAttachment()
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
D | EmailContent.java | 742 transient public ArrayList<Attachment> mAttachments = null; field in EmailContent.Message 895 (mAttachments == null || mAttachments.isEmpty())) { in save() 916 if (mAttachments != null) { in save() 918 for (Attachment a : mAttachments) { in save() 1002 if (mAttachments != null) { in addSaveOps() 1003 for (Attachment att: mAttachments) { in addSaveOps()
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/utility/ |
D | CalendarUtilities.java | 1974 msg.mAttachments = new ArrayList<Attachment>(); in createMessageForEntity() 1975 msg.mAttachments.add(att); in createMessageForEntity()
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/ |
D | EmailSyncAdapter.java | 616 msg.mAttachments = atts;
|