Searched defs:mMetricAffectingSpanSpanSet (Results 1 - 1 of 1) sorted by path

/frameworks/base/core/java/android/text/
H A DTextLine.java62 private final SpanSet<MetricAffectingSpan> mMetricAffectingSpanSpanSet = field in class:TextLine
109 tl.mMetricAffectingSpanSpanSet.recycle();
913 mMetricAffectingSpanSpanSet.init(mSpanned, mStart + start, mStart + limit);
926 inext = mMetricAffectingSpanSpanSet.getNextTransition(mStart + i, mStart + limit) -
932 for (int j = 0; j < mMetricAffectingSpanSpanSet.numberOfSpans; j++) {
935 if ((mMetricAffectingSpanSpanSet.spanStarts[j] >= mStart + mlimit) ||
936 (mMetricAffectingSpanSpanSet.spanEnds[j] <= mStart + i)) continue;
937 MetricAffectingSpan span = mMetricAffectingSpanSpanSet.spans[j];

Completed in 78 milliseconds