Searched defs:mAttachments (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Email/src/com/android/email/activity/
H A DMessageCompose.java165 private final ArrayList<Attachment> mAttachments = new ArrayList<Attachment>(); field in class:MessageCompose
628 && mAttachments.isEmpty();
947 mAttachments, mSourceAttachments, true)) {
1330 updateMessage(mDraft, mAccount, mAttachments.size() > 0, mSend);
1351 for (Attachment attachment : mAttachments) {
1619 mAttachments.add(attachment);
1626 for (Attachment attachment : mAttachments) {
1720 deleteAttachment(mAttachments, attachment);
1831 if (processSourceMessageAttachments(mAttachments, mSourceAttachments, isForward())) {
H A DMessageViewFragmentBase.java121 private LinearLayout mAttachments; field in class:MessageViewFragmentBase
293 mAttachments = (LinearLayout) UiUtilities.getView(view, R.id.attachments);
508 mAttachments.removeAllViews();
509 mAttachments.setVisibility(View.GONE);
1375 for (int i = 0, count = mAttachments.getChildCount(); i < count; i++) {
1376 View view = mAttachments.getChildAt(i);
1522 mAttachments.addView(view);
1523 mAttachments.setVisibility(View.VISIBLE);
1527 for (int i = 0, count = mAttachments.getChildCount(); i < count; i++) {
1529 (MessageViewAttachmentInfo) mAttachments
[all...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DEmailContent.java742 transient public ArrayList<Attachment> mAttachments = null; field in class:EmailContent.Message
895 (mAttachments == null || mAttachments.isEmpty())) {
916 if (mAttachments != null) {
918 for (Attachment a : mAttachments) {
1002 if (mAttachments != null) {
1003 for (Attachment att: mAttachments) {

Completed in 173 milliseconds