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

/frameworks/support/textclassifier/src/main/java/androidx/textclassifier/
H A DTextLinks.java46 public final class TextLinks implements Parcelable { class in inherits:Parcelable
83 private TextLinks(String fullText, ArrayList<TextLink> links) { method in class:TextLinks
97 * match the original text used to crete the TextLinks.
100 * @param spanFactory a factory to generate spans from TextLinks. Will use a default if null.
161 public static final Parcelable.Creator<TextLinks> CREATOR =
162 new Parcelable.Creator<TextLinks>() {
164 public TextLinks createFromParcel(Parcel in) {
165 return new TextLinks(in);
169 public TextLinks[] newArray(int size) {
170 return new TextLinks[siz
174 private TextLinks(Parcel in) { method in class:TextLinks
[all...]
/frameworks/base/core/java/android/view/textclassifier/
H A DTextLinks.java55 public final class TextLinks implements Parcelable { class in inherits:Parcelable
58 * Return status of an attempt to apply TextLinks to text.
98 private TextLinks(String fullText, ArrayList<TextLink> links) { method in class:TextLinks
122 * match the original text used to create the TextLinks.
129 * e.g {@link TextLinks#APPLY_STRATEGY_IGNORE}
130 * @param spanFactory a custom span factory for converting TextLinks to TextLinkSpans.
151 return String.format(Locale.US, "TextLinks{fullText=%s, links=%s}", mFullText, mLinks);
165 public static final Parcelable.Creator<TextLinks> CREATOR =
166 new Parcelable.Creator<TextLinks>() {
168 public TextLinks createFromParce
178 private TextLinks(Parcel in) { method in class:TextLinks
[all...]

Completed in 7684 milliseconds