OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ellipsize
(Results
1 - 2
of
2
) sorted by null
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTextUtils.java
10
* Implement {@lint TextUtils#
ellipsize
} by truncating the text.
17
protected static CharSequence
ellipsize
(
method in class:ShadowTextUtils
/cts/tests/tests/text/src/android/text/cts/
TextUtilsTest.java
101
String re = TextUtils.
ellipsize
(text, p, width, TruncateAt.START).toString();
517
TextUtils.
ellipsize
(text, p, textWidth, TruncateAt.START).toString());
521
TextUtils.
ellipsize
(text, p, textWidth, TruncateAt.END).toString());
525
TextUtils.
ellipsize
(text, p, textWidth, TruncateAt.MIDDLE).toString());
527
// issue 1688347,
ellipsize
() is not defined for TruncateAt.MARQUEE.
531
TextUtils.
ellipsize
(text, p, textWidth, TruncateAt.MARQUEE).toString());
534
assertEquals("", TextUtils.
ellipsize
(text, p, textWidth, TruncateAt.END).toString());
535
assertEquals("", TextUtils.
ellipsize
(text, p, textWidth - 1, TruncateAt.END).toString());
536
assertEquals("", TextUtils.
ellipsize
(text, p, -1f, TruncateAt.END).toString());
538
TextUtils.
ellipsize
(text, p, Float.MAX_VALUE, TruncateAt.END).toString())
[
all
...]
Completed in 167 milliseconds