Searched refs:bodyHtml (Results 1 - 4 of 4) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DMessage.java112 public String bodyHtml; field in class:Message
238 dest.writeString(bodyHtml);
272 bodyHtml = in.readString();
332 bodyHtml = cursor.getString(UIProvider.MESSAGE_BODY_HTML_COLUMN);
392 // body values (snippet/bodyText/bodyHtml)
403 bodyHtml = data.htmlContent;
580 (!TextUtils.isEmpty(bodyHtml) && INLINE_IMAGE_PATTERN.matcher(bodyHtml).find()));
608 if (!TextUtils.isEmpty(bodyHtml)) {
609 body = bodyHtml;
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DQuotedTextView.java238 if (message.bodyHtml != null) {
239 return message.bodyHtml;
H A DComposeActivity.java926 message.bodyHtml = fullBody.toString();
1303 if (!TextUtils.isEmpty(message.bodyHtml)) {
1307 quotedTextIndex = QuotedTextView.findQuotedTextIndex(message.bodyHtml);
1309 htmlText = Utils.convertHtmlToPlainText(message.bodyHtml.substring(0,
1311 quotedText = message.bodyHtml.subSequence(quotedTextIndex,
1312 message.bodyHtml.length());
1315 htmlText = Utils.convertHtmlToPlainText(message.bodyHtml);
2747 if (!TextUtils.isEmpty(refMessage.bodyHtml)) {
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DConversationViewFragment.java1409 if (!TextUtils.equals(newMsg.bodyHtml, oldMsg.bodyHtml) ||

Completed in 97 milliseconds