Lines Matching refs:fRunIndex
600 : fRuns(&origRuns), fRunIndex(0), fGlyphIndex(0) in ShapedRunGlyphIterator()
607 fRunIndex == that.fRunIndex && in operator ==()
612 fRunIndex != that.fRunIndex || in operator !=()
618 SkASSERT(fRunIndex < runs.count()); in next()
619 SkASSERT(fGlyphIndex < runs[fRunIndex].fNumGlyphs); in next()
622 if (fGlyphIndex == runs[fRunIndex].fNumGlyphs) { in next()
624 ++fRunIndex; in next()
625 if (fRunIndex >= runs.count()) { in next()
629 return &runs[fRunIndex].fGlyphs[fGlyphIndex]; in next()
634 if (fRunIndex >= runs.count()) { in current()
637 return &runs[fRunIndex].fGlyphs[fGlyphIndex]; in current()
641 int fRunIndex; member
1139 if (previousRunIndex != current.fRunIndex) { in wrap()
1141 runs[current.fRunIndex].fFont.getMetrics(&metrics); in wrap()
1142 previousRunIndex = current.fRunIndex; in wrap()
1150 int numRuns = current.fRunIndex - previousBreak.fRunIndex + 1; in wrap()
1153 runLevels[i] = runs[previousBreak.fRunIndex + i].fLevel; in wrap()
1165 int logicalIndex = previousBreak.fRunIndex + logicalFromVisual[visualIndex]; in wrap()
1167 size_t startGlyphIndex = (logicalIndex == previousBreak.fRunIndex) in wrap()
1170 size_t endGlyphIndex = (logicalIndex == current.fRunIndex) in wrap()