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

/frameworks/base/tests/UiBench/src/com/android/test/uibench/
H A DTextUtils.java24 public class TextUtils { class
/frameworks/base/core/java/android/text/
H A DTextUtils.java77 public class TextUtils { class
78 private static final String TAG = "TextUtils";
91 public static String getEllipsisString(@NonNull TextUtils.TruncateAt method) {
92 return (method == TextUtils.TruncateAt.END_SMALL) ? ELLIPSIS_TWO_DOTS : ELLIPSIS_NORMAL;
96 private TextUtils() { /* cannot be instantiated */ } method in class:TextUtils
397 * TextUtils.StringSplitter splitter = new TextUtils.SimpleStringSplitter(delimiter);
599 TextUtils.getChars(mSource, start + mStart, end + mStart,
2069 if (TextUtils.isEmpty(text) || text.length() <= size) return text;

Completed in 2970 milliseconds