Home
last modified time | relevance | path

Searched refs:otherTvs (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DTextViewTransformState.java47 TextViewTransformState otherTvs = (TextViewTransformState) otherState; in sameAs() local
48 if(TextUtils.equals(otherTvs.mText.getText(), mText.getText())) { in sameAs()
50 int otherEllipsized = otherTvs.getEllipsisCount(); in sameAs()
52 && mText.getLineCount() == otherTvs.mText.getLineCount() in sameAs()
53 && hasSameSpans(otherTvs); in sameAs()
59 private boolean hasSameSpans(TextViewTransformState otherTvs) { in hasSameSpans() argument
61 boolean otherHasSpans = otherTvs.mText instanceof Spanned; in hasSameSpans()
70 Spanned otherSpanned = (Spanned) otherTvs.mText; in hasSameSpans()
94 TextViewTransformState otherTvs = (TextViewTransformState) otherState; in transformScale() local
95 if (!TextUtils.equals(mText.getText(), otherTvs.mText.getText())) { in transformScale()
[all …]