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

/frameworks/base/core/java/android/widget/
H A DEditText.java158 * @param ellipsis Type of ellipsis to be applied.
159 * @throws IllegalArgumentException When the value of <code>ellipsis</code> parameter is
164 public void setEllipsize(TextUtils.TruncateAt ellipsis) { argument
165 if (ellipsis == TextUtils.TruncateAt.MARQUEE) {
169 super.setEllipsize(ellipsis);
/frameworks/base/core/java/android/os/
H A DFileUtils.java509 * @param ellipsis to add of the file was truncated (can be null)
513 public static String readTextFile(File file, int max, String ellipsis) throws IOException { argument
527 if (ellipsis == null) return new String(data, 0, max);
528 return new String(data, 0, max) + ellipsis;
548 if (ellipsis == null || !rolled) return new String(last);
549 return ellipsis + new String(last);
/frameworks/base/core/java/android/text/
H A DTextUtils.java1195 * copy with ellipsis character added at the specified edge or center.
1206 * or, if it does not fit, a copy with ellipsis character added
1228 * or, if it does not fit, a copy with ellipsis character added
1243 TextDirectionHeuristic textDir, String ellipsis) {
1260 // XXX assumes ellipsis string does not require shaping and
1262 float ellipsiswid = paint.measureText(ellipsis);
1289 if (remaining > 0 && removed >= ellipsis.length()) {
1290 ellipsis.getChars(0, ellipsis.length(), buf, left);
1291 left += ellipsis
1238 ellipsize(CharSequence text, TextPaint paint, float avail, TruncateAt where, boolean preserveLength, @Nullable 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 147 milliseconds