Home
last modified time | relevance | path

Searched refs:unfoldAndDecode (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Email/tests/src/com/android/emailcommon/internet/
DMimeUtilityTest.java135 String result3 = MimeUtility.unfoldAndDecode(SHORT_PLAIN); in testEfficientUnfoldAndDecode()
158 String result1 = MimeUtility.unfoldAndDecode(SHORT_UNICODE_ENCODED); in testUnfoldAndDecodeSimple()
167 String result1 = MimeUtility.unfoldAndDecode(CALENDAR_SUBJECT_UNICODE); in testComplexDecode()
171 String degenerate1 = MimeUtility.unfoldAndDecode(CALENDAR_DEGENERATE_UNICODE_1); in testComplexDecode()
173 String degenerate2 = MimeUtility.unfoldAndDecode(CALENDAR_DEGENERATE_UNICODE_2); in testComplexDecode()
175 String degenerate3 = MimeUtility.unfoldAndDecode(CALENDAR_DEGENERATE_UNICODE_3); in testComplexDecode()
177 String degenerate4 = MimeUtility.unfoldAndDecode(CALENDAR_DEGENERATE_UNICODE_4); in testComplexDecode()
/packages/apps/Email/src/com/android/email/
DLegacyConversions.java193 String contentType = MimeUtility.unfoldAndDecode(part.getContentType()); in addOneAttachment()
196 String contentDisposition = MimeUtility.unfoldAndDecode(part.getDisposition()); in addOneAttachment()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
DMimeMessage.java161 + MimeUtility.unfoldAndDecode(getFirstHeader("Date"))); in getSentDate()
278 return MimeUtility.unfoldAndDecode(getFirstHeader("Subject")); in getSubject()
DMimeUtility.java74 public static String unfoldAndDecode(String s) { in unfoldAndDecode() method in MimeUtility
/packages/apps/Email/tests/src/com/android/email/
DLegacyConversionsTests.java419 String contentType = MimeUtility.unfoldAndDecode(expected.getContentType()); in checkAttachment()