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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DTicker.java74 StaticLayout getLayout(CharSequence substr) { argument
77 return new StaticLayout(substr, mPaint, w, Alignment.ALIGN_NORMAL, 1, 0, true);
80 CharSequence rtrim(CharSequence substr, int start, int end) { argument
81 while (end > start && !isGraphicOrEmoji(substr.charAt(end-1))) {
85 return substr.subSequence(start, end);
95 CharSequence substr = this.text.subSequence(this.current, this.text.length());
96 StaticLayout l = getLayout(substr);
102 return rtrim(substr, start, end);
121 CharSequence substr = this.text.subSequence(index, this.text.length());
122 StaticLayout l = getLayout(substr);
[all...]

Completed in 139 milliseconds