Lines Matching refs:fRunIndex
597 : fRuns(&origRuns), fRunIndex(0), fGlyphIndex(0) in ShapedRunGlyphIterator()
604 fRunIndex == that.fRunIndex && in operator ==()
609 fRunIndex != that.fRunIndex || in operator !=()
615 SkASSERT(fRunIndex < runs.count()); in next()
616 SkASSERT(fGlyphIndex < runs[fRunIndex].fNumGlyphs); in next()
619 if (fGlyphIndex == runs[fRunIndex].fNumGlyphs) { in next()
621 ++fRunIndex; in next()
622 if (fRunIndex >= runs.count()) { in next()
626 return &runs[fRunIndex].fGlyphs[fGlyphIndex]; in next()
631 if (fRunIndex >= runs.count()) { in current()
634 return &runs[fRunIndex].fGlyphs[fGlyphIndex]; in current()
638 int fRunIndex; member
1136 if (previousRunIndex != current.fRunIndex) { in wrap()
1138 runs[current.fRunIndex].fFont.getMetrics(&metrics); in wrap()
1139 previousRunIndex = current.fRunIndex; in wrap()
1147 int numRuns = current.fRunIndex - previousBreak.fRunIndex + 1; in wrap()
1150 runLevels[i] = runs[previousBreak.fRunIndex + i].fLevel; in wrap()
1162 int logicalIndex = previousBreak.fRunIndex + logicalFromVisual[visualIndex]; in wrap()
1164 size_t startGlyphIndex = (logicalIndex == previousBreak.fRunIndex) in wrap()
1167 size_t endGlyphIndex = (logicalIndex == current.fRunIndex) in wrap()