Searched refs:bodyHtml (Results 1 – 5 of 5) sorted by relevance
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
D | Message.java | 119 public String bodyHtml; field in Message 260 TextUtils.equals(this.bodyHtml, o.bodyHtml) && in isEqual() 280 dest.writeString(bodyHtml); in writeToParcel() 316 bodyHtml = in.readString(); in Message() 378 bodyHtml = cursor.getString(UIProvider.MESSAGE_BODY_HTML_COLUMN); in Message() 470 bodyHtml = HtmlSanitizer.sanitizeHtml(data.htmlContent); in Message() 687 (!TextUtils.isEmpty(bodyHtml) && INLINE_IMAGE_PATTERN.matcher(bodyHtml).find())); in shouldShowImagePrompt() 715 if (!TextUtils.isEmpty(bodyHtml)) { in getBodyAsHtml() 716 body = bodyHtml; in getBodyAsHtml()
|
/packages/apps/UnifiedEmail/src/com/android/mail/print/ |
D | HtmlPrintTemplates.java | 81 String recipients, String bodyHtml, String attachments) { in appendMessage() argument 82 append(mMessage, senderName, senderAddress, date, recipients, bodyHtml, attachments); in appendMessage()
|
/packages/apps/UnifiedEmail/src/com/android/mail/compose/ |
D | ComposeActivity.java | 586 if (isExternal() && mRefMessage != null && !TextUtils.isEmpty(mRefMessage.bodyHtml)) { in finishCreate() 587 mRefMessage.bodyHtml = escapeAndReplaceHtml(mRefMessage.bodyHtml); in finishCreate() 1158 message.bodyHtml = spannedBodyToHtml(body, true); in createMessage() 1161 final String htmlInPlainText = Utils.convertHtmlToPlainText(message.bodyHtml); in createMessage() 1168 message.bodyHtml = "<p>" + message.bodyText + "</p>"; in createMessage() 1182 if (!TextUtils.isEmpty(refMessage.bodyHtml)) { in createMessage() 1617 if (!TextUtils.isEmpty(message.bodyHtml)) { in initFromDraftMessage() 1618 String body = message.bodyHtml; in initFromDraftMessage() 1625 quotedTextIndex = QuotedTextView.findQuotedTextIndex(message.bodyHtml); in initFromDraftMessage() 1627 body = message.bodyHtml.substring(0, quotedTextIndex); in initFromDraftMessage() [all …]
|
D | QuotedTextView.java | 231 if (message.bodyHtml != null) { in getHtmlText() 232 return message.bodyHtml; in getHtmlText()
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
D | ConversationViewFragment.java | 1670 if (!TextUtils.equals(newMsg.bodyHtml, oldMsg.bodyHtml) || in processInPlaceUpdates()
|