Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DTextViewTransformState.java77 Object otherSpan = otherSpans[i]; in hasSameSpans() local
78 if (!span.getClass().equals(otherSpan.getClass())) { in hasSameSpans()
81 if (ownSpanned.getSpanStart(span) != otherSpanned.getSpanStart(otherSpan) in hasSameSpans()
82 || ownSpanned.getSpanEnd(span) != otherSpanned.getSpanEnd(otherSpan)) { in hasSameSpans()
/frameworks/base/core/java/android/text/
DSpannableStringInternal.java513 final Object otherSpan = otherSpans[i]; in equals() local
515 if (other != otherSpan || in equals()
516 getSpanStart(thisSpan) != other.getSpanStart(otherSpan) || in equals()
517 getSpanEnd(thisSpan) != other.getSpanEnd(otherSpan) || in equals()
518 getSpanFlags(thisSpan) != other.getSpanFlags(otherSpan)) { in equals()
521 } else if (!thisSpan.equals(otherSpan) || in equals()
522 getSpanStart(thisSpan) != other.getSpanStart(otherSpan) || in equals()
523 getSpanEnd(thisSpan) != other.getSpanEnd(otherSpan) || in equals()
524 getSpanFlags(thisSpan) != other.getSpanFlags(otherSpan)) { in equals()
DSpannableStringBuilder.java1620 final Object otherSpan = otherSpans[i]; in equals() local
1622 if (other != otherSpan || in equals()
1623 getSpanStart(thisSpan) != other.getSpanStart(otherSpan) || in equals()
1624 getSpanEnd(thisSpan) != other.getSpanEnd(otherSpan) || in equals()
1625 getSpanFlags(thisSpan) != other.getSpanFlags(otherSpan)) { in equals()
1628 } else if (!thisSpan.equals(otherSpan) || in equals()
1629 getSpanStart(thisSpan) != other.getSpanStart(otherSpan) || in equals()
1630 getSpanEnd(thisSpan) != other.getSpanEnd(otherSpan) || in equals()
1631 getSpanFlags(thisSpan) != other.getSpanFlags(otherSpan)) { in equals()