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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DTicker.java69 StaticLayout getLayout(CharSequence substr) { argument
72 return new StaticLayout(substr, mPaint, w, Alignment.ALIGN_NORMAL, 1, 0, true);
75 CharSequence rtrim(CharSequence substr, int start, int end) { argument
76 while (end > start && !isGraphicOrEmoji(substr.charAt(end-1))) {
80 return substr.subSequence(start, end);
90 CharSequence substr = this.text.subSequence(this.current, this.text.length());
91 StaticLayout l = getLayout(substr);
97 return rtrim(substr, start, end);
116 CharSequence substr = this.text.subSequence(index, this.text.length());
117 StaticLayout l = getLayout(substr);
[all...]

Completed in 46 milliseconds