Searched refs:quotedTextIndex (Results 1 – 1 of 1) sorted by relevance
1591 int quotedTextIndex = message.appendRefMessageContent ? message.quotedTextOffset : -1; in initFromDraftMessage() local1596 if (quotedTextIndex > -1) { in initFromDraftMessage()1602 quotedTextIndex = QuotedTextView.findQuotedTextIndex(message.bodyHtml); in initFromDraftMessage()1603 if (quotedTextIndex > -1) { in initFromDraftMessage()1604 body = message.bodyHtml.substring(0, quotedTextIndex); in initFromDraftMessage()1605 quotedText = message.bodyHtml.subSequence(quotedTextIndex, in initFromDraftMessage()1617 if (quotedTextIndex > body.length()) { in initFromDraftMessage()1621 quotedTextIndex = -1; in initFromDraftMessage()1623 quotedTextIndex, body.length()); in initFromDraftMessage()1625 bodyText = quotedTextIndex > -1 ? body.substring(0, quotedTextIndex) : body; in initFromDraftMessage()[all …]