Searched refs:htmlText (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/content/ |
D | ClipData.java | 246 public Item(CharSequence text, String htmlText) { in Item() argument 248 mHtmlText = htmlText; in Item() 290 public Item(CharSequence text, String htmlText, Intent intent, Uri uri) { in Item() argument 291 if (htmlText != null && text == null) { in Item() 296 mHtmlText = htmlText; in Item() 478 String htmlText = getHtmlText(); in coerceToStyledText() local 479 if (htmlText != null) { in coerceToStyledText() 481 CharSequence newText = Html.fromHtml(htmlText); in coerceToStyledText() 525 String htmlText = getHtmlText(); in coerceToHtmlText() local 526 if (htmlText != null) { in coerceToHtmlText() [all …]
|
D | Intent.java | 11611 final String htmlText = getStringExtra(EXTRA_HTML_TEXT); in migrateExtraStreamToClipData() local 11612 if (stream != null || text != null || htmlText != null) { in migrateExtraStreamToClipData() 11615 new ClipData.Item(text, htmlText, null, stream)); in migrateExtraStreamToClipData() 11724 String htmlText = htmlTexts != null ? htmlTexts.get(which) : null; in makeClipItem() local 11725 return new ClipData.Item(text, htmlText, null, uri); in makeClipItem()
|