Searched refs:quotedTextIndex (Results 1 – 1 of 1) sorted by relevance
1614 int quotedTextIndex = message.appendRefMessageContent ? message.quotedTextOffset : -1; in initFromDraftMessage() local1619 if (quotedTextIndex > -1) { in initFromDraftMessage()1625 quotedTextIndex = QuotedTextView.findQuotedTextIndex(message.bodyHtml); in initFromDraftMessage()1626 if (quotedTextIndex > -1) { in initFromDraftMessage()1627 body = message.bodyHtml.substring(0, quotedTextIndex); in initFromDraftMessage()1628 quotedText = message.bodyHtml.subSequence(quotedTextIndex, in initFromDraftMessage()1640 if (quotedTextIndex > body.length()) { in initFromDraftMessage()1644 quotedTextIndex = -1; in initFromDraftMessage()1646 quotedTextIndex, body.length()); in initFromDraftMessage()1648 bodyText = quotedTextIndex > -1 ? body.substring(0, quotedTextIndex) : body; in initFromDraftMessage()[all …]