Home
last modified time | relevance | path

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

/packages/apps/Email/tests/src/com/android/emailcommon/utility/
DAttachmentUtilitiesTests.java59 assertEquals("message/rfc822", AttachmentUtilities.inferMimeType("a.eml", null)); in testInferMimeType()
60 assertEquals("message/rfc822", AttachmentUtilities.inferMimeType("a.eml", "")); in testInferMimeType()
62 AttachmentUtilities.inferMimeType("a.eml", DEFAULT_LOWER)); in testInferMimeType()
64 AttachmentUtilities.inferMimeType("a.eMl", TEXT_PLAIN)); in testInferMimeType()
66 AttachmentUtilities.inferMimeType("a.eml", TYPE_IMG_PNG)); in testInferMimeType()
69 assertEquals("mime/type", AttachmentUtilities.inferMimeType(FILE_PNG, "Mime/TyPe")); in testInferMimeType()
70 assertEquals("mime/type", AttachmentUtilities.inferMimeType(FILE_ABC, "Mime/TyPe")); in testInferMimeType()
72 AttachmentUtilities.inferMimeType(FILE_NO_EXT, "Mime/TyPe")); in testInferMimeType()
73 assertEquals("mime/type", AttachmentUtilities.inferMimeType(null, "Mime/TyPe")); in testInferMimeType()
74 assertEquals("mime/type", AttachmentUtilities.inferMimeType("", "Mime/TyPe")); in testInferMimeType()
[all …]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DAttachmentUtilities.java206 public static String inferMimeType(final String fileName, final String mimeType) { in inferMimeType() method in AttachmentUtilities
249 return inferMimeType(uri.getLastPathSegment(), ""); in inferMimeTypeForUri()
/packages/apps/Email/src/com/android/email/
DAttachmentInfo.java103 mContentType = AttachmentUtilities.inferMimeType(fileName, mimeType); in AttachmentInfo()
/packages/apps/Email/src/com/android/email/provider/
DAttachmentProvider.java115 mimeType = AttachmentUtilities.inferMimeType(fileName, mimeType); in getType()
/packages/apps/Email/src/com/android/email/service/
DAttachmentDownloadService.java994 pw.print(AttachmentUtilities.inferMimeType(fileName, null)); in dump()