Searched refs:multipart (Results 1 – 7 of 7) sorted by relevance
221 Multipart multipart = (Multipart)part.getBody(); in findFirstPartByMimeType() local222 for (int i = 0, count = multipart.getCount(); i < count; i++) { in findFirstPartByMimeType()223 BodyPart bodyPart = multipart.getBodyPart(i); in findFirstPartByMimeType()238 Multipart multipart = (Multipart)part.getBody(); in findPartByContentId() local239 for (int i = 0, count = multipart.getCount(); i < count; i++) { in findPartByContentId()240 BodyPart bodyPart = multipart.getBodyPart(i); in findPartByContentId()
92 com.android.emailcommon.mail.Multipart multipart = in setBody() local94 multipart.setParent(this); in setBody()95 setHeader(MimeHeader.HEADER_CONTENT_TYPE, multipart.getContentType()); in setBody()
409 Multipart multipart = ((Multipart)body); in setBody() local410 multipart.setParent(this); in setBody()411 setHeader(MimeHeader.HEADER_CONTENT_TYPE, multipart.getContentType()); in setBody()
275 Multipart multipart = (Multipart)mimeMessage.getBody(); in testWriteToAlternativePart() local276 List<BodyPart> partList = multipart.getBodyParts(); in testWriteToAlternativePart()319 Multipart multipart = (Multipart)mimeMessage.getBody(); in testWriteToMixedPart() local320 List<BodyPart> partList = multipart.getBodyParts(); in testWriteToMixedPart()
205 final MimeMultipart multipart = new MimeMultipart(); in loadAttachment() local206 multipart.setSubType("mixed"); in loadAttachment()207 multipart.addBodyPart(storePart); in loadAttachment()210 storeMessage.setBody(multipart); in loadAttachment()
165 boolean multipart = attachments.size() > 0; in writeTo()170 if (!multipart) { in writeTo()