HomeSort by relevance Sort by last modified time
    Searched defs:Html (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue15091.go 9 type Html struct {
14 // internal error: (*Html).xyzzy autotmp_3 (type *int) recorded as live on entry, p.Pc=0
16 // Treating auto as if it were arg, func (*Html).xyzzy, node ...
20 func (options *Html) xyzzy(id string) string {
  /prebuilts/go/linux-x86/test/fixedbugs/
issue15091.go 9 type Html struct {
14 // internal error: (*Html).xyzzy autotmp_3 (type *int) recorded as live on entry, p.Pc=0
16 // Treating auto as if it were arg, func (*Html).xyzzy, node ...
20 func (options *Html) xyzzy(id string) string {
  /packages/services/Telephony/src/com/android/phone/settings/
TextViewPreference.java 21 import android.text.Html;
145 setTitle(Html.fromHtml(getContext().getString(textResId), Html.FROM_HTML_MODE_COMPACT));
  /developers/build/prebuilts/gradle/BasicAndroidKeyStore/Application/src/main/java/com/example/android/basicandroidkeystore/
MainActivity.java 23 import android.text.Html;
48 sampleOutput.setText(Html.fromHtml(getString(R.string.intro_message)));
  /developers/build/prebuilts/gradle/BeamLargeFiles/Application/src/main/java/com/example/android/beamlargefiles/
MainActivity.java 23 import android.text.Html;
48 sampleOutput.setText(Html.fromHtml(getString(R.string.intro_message)));
  /developers/build/prebuilts/gradle/SynchronizedNotifications/Application/src/main/java/com/example/android/wearable/synchronizednotifications/
MainActivity.java 23 import android.text.Html;
48 sampleOutput.setText(Html.fromHtml(getString(R.string.intro_message)));
  /development/samples/browseable/BasicAndroidKeyStore/src/com.example.android.basicandroidkeystore/
MainActivity.java 23 import android.text.Html;
48 sampleOutput.setText(Html.fromHtml(getString(R.string.intro_message)));
  /development/samples/browseable/BeamLargeFiles/src/com.example.android.beamlargefiles/
MainActivity.java 23 import android.text.Html;
48 sampleOutput.setText(Html.fromHtml(getString(R.string.intro_message)));
  /development/samples/browseable/SynchronizedNotifications/Application/src/com.example.android.wearable.synchronizednotifications/
MainActivity.java 23 import android.text.Html;
48 sampleOutput.setText(Html.fromHtml(getString(R.string.intro_message)));
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowHtmlTest.java 9 import android.text.Html;
37 textView.setText(Html.fromHtml("<b>some</b> html text"));
38 assertThat(textView.getText().toString()).isEqualTo("some html text");
44 editText.setText(Html.fromHtml("<b>some</b> html text"));
45 assertThat(editText.getText().toString()).isEqualTo("some html text");
50 Html.fromHtml(null);
56 Spanned spanned = Html.fromHtml(text);
63 Html.fromHtml(HTML_SHORT, null, null)
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/
OperationDialogFragment.java 28 import android.text.Html;
99 builder.setMessage(Html.fromHtml(message));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/info/
InfoPanel.java 24 import android.text.Html;
134 mExifData.setText(Html.fromHtml(exifString));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DownloadOverMeteredDialog.java 22 import android.text.Html;
63 prompt.setText(Html.fromHtml(String.format(promptFormat, language)));
  /cts/tests/tests/text/src/android/text/cts/
HtmlTest.java 27 import android.text.Html;
57 Spanned spanned = Html.fromHtml(source);
59 spanned = Html.fromHtml(source, null, null);
80 Spanned spanned = Html.fromHtml(source);
82 spanned = Html.fromHtml(source, null, null);
100 String spanned = Html.fromHtml(source).toString();
102 spanned = Html.fromHtml(source, null, null).toString();
110 Spanned s = Html.fromHtml("<font color=\"#00FF00\">something</font>");
114 s = Html.fromHtml("<font color=\"navy\">NAVY</font>");
118 s = Html.fromHtml("<font color=\"gibberish\">something</font>")
    [all...]
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
CalendarWatchFaceService.java 42 import android.text.Html;
186 mEditable.append(Html.fromHtml(getResources().getQuantityString(
189 mEditable.append(Html.fromHtml(mCalendarNotApprovedMessage));
  /frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/
DeviceChooserActivity.java 28 import android.text.Html;
62 setTitle(Html.fromHtml(getString(
74 setTitle(Html.fromHtml(getString(R.string.chooser_title, getCallingAppName()), 0));
  /frameworks/support/compat/src/main/java/androidx/core/app/
ShareCompat.java 28 import android.text.Html;
372 * Set an HTML string to be sent as part of the share.
374 * a styled version of the supplied HTML text will be added as EXTRA_TEXT as
375 * parsed by {@link android.text.Html#fromHtml(String) Html.fromHtml}.
377 * @param htmlText A string containing HTML markup as a richer version of the text
386 setText(Html.fromHtml(htmlText));
675 * Get the styled HTML text shared with the target activity.
676 * If no HTML text was supplied but {@link Intent#EXTRA_TEXT} contained
677 * styled text, it will be converted to HTML if possible and returned
    [all...]
  /frameworks/support/slices/view/src/main/java/androidx/slice/
SliceXml.java 34 import android.text.Html;
189 b.addText(Html.fromHtml(v), subtype, hints);
308 String text = Html.toHtml((Spanned) item.getText());
  /packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/
TunerSession.java 30 import android.text.Html;
278 Html.fromHtml(
284 Html.fromHtml(
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothPairingDialog.java 29 import android.text.Html;
408 titleText.setText(Html.fromHtml(instructions));
498 instructionText.setText(Html.fromHtml(instructions));
  /frameworks/base/core/java/android/content/
ClipData.java 30 import android.text.Html;
73 * <a href="{@docRoot}guide/topics/clipboard/copy-paste.html">Copy and Paste</a>
222 * with an alternative HTML formatted representation. You <em>must</em>
223 * supply a plain text representation in addition to HTML text; coercion
224 * will not be done from HTML formated text into plain text.
266 * text, HTML text, Intent, and/or URI. If providing HTML text, you
268 * will not be done from HTML formated text into plain text.
273 "Plain text must be supplied if HTML text is supplied");
289 * Retrieve the raw HTML text contained in this Item
    [all...]
  /frameworks/base/core/java/android/text/
Html.java 61 * This class processes HTML strings into displayable styled text.
62 * Not all HTML tags are supported.
64 public class Html {
66 * Retrieves images for HTML &lt;img&gt; tags.
70 * This method is called when the HTML parser encounters an
82 * Is notified when HTML tags are encountered that the parser does
87 * This method will be called whenn the HTML parser encounters
159 * {@link Spanned} to HTML string conversion done with the option
175 private Html() { }
178 * Returns displayable styled text from the provided HTML string with the legacy flag
    [all...]
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 167 if ((i > 0) && (tokens.get(i - 1) instanceof Html)) {
168 ((Html)tokens.get(i - 1)).trimLeadingWhitespace();
170 if ((i + 1 < tokens.size()) && (tokens.get(i + 1) instanceof Html)) {
171 ((Html)tokens.get(i + 1)).trimTrailingWhitespace();
176 // Remove any empty html tokens.
282 addToken(new Html(text.substring(start, nextChar), buf.toString()));
657 HTML ("html"),
658 FORMAT ("format"), // subtype of HTML
668 //stringreps for HTML and FORMAT don't really matte
722 private String html; field in class:AbstractMessageParser.Html
1241 StringBuilder html = new StringBuilder(); local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
MessageNotificationState.java 29 import android.text.Html;
    [all...]
  /external/robolectric/v1/lib/main/
android.jar 

Completed in 1532 milliseconds

1 2 3 4