Searched defs:contentId (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
H A DMimeUtility.java235 public static Part findPartByContentId(Part part, String contentId) throws Exception { argument
240 Part ret = findPartByContentId(bodyPart, contentId);
247 if (contentId.equals(cid)) {
/packages/apps/Email/tests/src/com/android/emailcommon/mail/
H A DMessageTestUtils.java73 * @param contentId content-id header value (optional - null for no header)
77 public static BodyPart bodyPart(String mimeType, String contentId) throws MessagingException { argument
79 if (contentId != null) {
80 bp.setHeader(MimeHeader.HEADER_CONTENT_ID, contentId);
227 * @param contentId content id string
230 public TextBuilder addCidImg(String contentId) { argument
231 return addTag("img", "SRC", "cid:" + contentId);

Completed in 7010 milliseconds