Searched refs:htmlText (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/content/ |
D | ClipData.java | 218 public Item(CharSequence text, String htmlText) { in Item() argument 220 mHtmlText = htmlText; in Item() 262 public Item(CharSequence text, String htmlText, Intent intent, Uri uri) { in Item() argument 263 if (htmlText != null && text == null) { in Item() 268 mHtmlText = htmlText; in Item() 402 String htmlText = getHtmlText(); in coerceToStyledText() local 403 if (htmlText != null) { in coerceToStyledText() 405 CharSequence newText = Html.fromHtml(htmlText); in coerceToStyledText() 449 String htmlText = getHtmlText(); in coerceToHtmlText() local 450 if (htmlText != null) { in coerceToHtmlText() [all …]
|
D | Intent.java | 9069 final String htmlText = getStringExtra(EXTRA_HTML_TEXT); in migrateExtraStreamToClipData() local 9070 if (stream != null || text != null || htmlText != null) { in migrateExtraStreamToClipData() 9073 new ClipData.Item(text, htmlText, null, stream)); in migrateExtraStreamToClipData() 9142 String htmlText = htmlTexts != null ? htmlTexts.get(which) : null; in makeClipItem() local 9143 return new ClipData.Item(text, htmlText, null, uri); in makeClipItem()
|
/frameworks/support/compat/java/android/support/v4/app/ |
D | ShareCompat.java | 453 public IntentBuilder setHtmlText(String htmlText) { in setHtmlText() argument 454 mIntent.putExtra(IntentCompat.EXTRA_HTML_TEXT, htmlText); in setHtmlText() 457 setText(Html.fromHtml(htmlText)); in setHtmlText()
|