Lines Matching refs:fRunIndex
575 : fRuns(&origRuns), fRunIndex(0), fGlyphIndex(0) in ShapedRunGlyphIterator()
582 fRunIndex == that.fRunIndex && in operator ==()
587 fRunIndex != that.fRunIndex || in operator !=()
593 SkASSERT(fRunIndex < runs.count()); in next()
594 SkASSERT(fGlyphIndex < runs[fRunIndex].fNumGlyphs); in next()
597 if (fGlyphIndex == runs[fRunIndex].fNumGlyphs) { in next()
599 ++fRunIndex; in next()
600 if (fRunIndex >= runs.count()) { in next()
604 return &runs[fRunIndex].fGlyphs[fGlyphIndex]; in next()
609 if (fRunIndex >= runs.count()) { in current()
612 return &runs[fRunIndex].fGlyphs[fGlyphIndex]; in current()
616 int fRunIndex; member
1105 int runIndex = glyphIterator.fRunIndex; in wrap()
1120 int numRuns = runIndex - previousBreak.fRunIndex + 1; in wrap()
1123 runLevels[i] = runs[previousBreak.fRunIndex + i].fLevel; in wrap()
1133 int logicalIndex = previousBreak.fRunIndex + logicalFromVisual[i]; in wrap()
1146 int logicalIndex = previousBreak.fRunIndex + logicalFromVisual[i]; in wrap()
1156 size_t startGlyphIndex = (logicalIndex == previousBreak.fRunIndex) in wrap()