Searched defs:quotedText (Results 1 - 2 of 2) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DQuotedTextView.java244 StringBuilder quotedText = new StringBuilder();
249 quotedText.append(sQuoteBegin);
250 quotedText
256 quotedText.append(HEADER_SEPARATOR);
257 quotedText.append(BLOCKQUOTE_BEGIN);
258 quotedText.append(htmlText);
259 quotedText.append(BLOCKQUOTE_END);
260 quotedText.append(QUOTE_END);
262 quotedText.append(sQuoteBegin);
263 quotedText
319 setQuotedText(CharSequence quotedText) argument
[all...]
H A DComposeActivity.java183 private static final String EXTRA_QUOTED_TEXT = "quotedText";
466 String toAddress, String body, String quotedText, String subject,
484 if (quotedText != null) {
485 intent.putExtra(EXTRA_QUOTED_TEXT, quotedText);
539 final CharSequence quotedText;
550 quotedText = savedState.getCharSequence(EXTRA_QUOTED_TEXT);
571 quotedText = null;
667 // and we have some quotedText, display that
669 if (quotedText != null) {
670 initQuotedText(quotedText, fals
465 launch(Context context, Account account, Message message, int action, String toAddress, String body, String quotedText, String subject, final ContentValues extraValues) argument
1985 initQuotedText(CharSequence quotedText, boolean shouldQuoteText) argument
3149 sendOrSaveInternal(Context context, int requestId, ReplyFromAccount currReplyFromAccount, ReplyFromAccount originalReplyFromAccount, Message message, Message refMessage, CharSequence quotedText, SendOrSaveCallback callback, boolean save, int composeMode, ContentValues extraValues, Bundle optionalAttachmentFds) argument
[all...]

Completed in 134 milliseconds