Home
last modified time | relevance | path

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

/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DAttachmentUtilities.java207 String resultType = null; in inferMimeType() local
212 resultType = "message/rfc822"; in inferMimeType()
220 resultType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(fileExtension); in inferMimeType()
221 if (TextUtils.isEmpty(resultType)) { in inferMimeType()
223 resultType = isTextPlain ? mimeType : "application/" + fileExtension; in inferMimeType()
227 resultType = mimeType; in inferMimeType()
232 if (TextUtils.isEmpty(resultType)) { in inferMimeType()
233 resultType = isTextPlain ? "text/plain" : "application/octet-stream"; in inferMimeType()
235 return resultType.toLowerCase(); in inferMimeType()