Searched defs:ellipsis (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DEditText.java125 * @param ellipsis Type of ellipsis to be applied.
126 * @throws IllegalArgumentException When the value of <code>ellipsis</code> parameter is
131 public void setEllipsize(TextUtils.TruncateAt ellipsis) { argument
132 if (ellipsis == TextUtils.TruncateAt.MARQUEE) {
136 super.setEllipsize(ellipsis);
/frameworks/base/core/java/android/os/
H A DFileUtils.java258 * @param ellipsis to add of the file was truncated (can be null)
262 public static String readTextFile(File file, int max, String ellipsis) throws IOException { argument
276 if (ellipsis == null) return new String(data, 0, max);
277 return new String(data, 0, max) + ellipsis;
297 if (ellipsis == null || !rolled) return new String(last);
298 return ellipsis + new String(last);
/frameworks/base/core/java/android/text/
H A DTextUtils.java1064 * copy with ellipsis character added at the specified edge or center.
1075 * or, if it does not fit, a copy with ellipsis character added
1097 * or, if it does not fit, a copy with ellipsis character added
1112 TextDirectionHeuristic textDir, String ellipsis) {
1128 // XXX assumes ellipsis string does not require shaping and
1130 float ellipsiswid = paint.measureText(ellipsis);
1156 if (remaining > 0) { // else eliminate the ellipsis too
1157 buf[left++] = ellipsis.charAt(0);
1176 StringBuilder sb = new StringBuilder(remaining + ellipsis.length());
1178 sb.append(ellipsis);
1107 ellipsize(CharSequence text, TextPaint paint, float avail, TruncateAt where, boolean preserveLength, EllipsizeCallback callback, TextDirectionHeuristic textDir, String ellipsis) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 77 milliseconds