Lines Matching refs:fRunIndex
456 : fRuns(&origRuns), fRunIndex(0), fGlyphIndex(0) in ShapedRunGlyphIterator()
463 fRunIndex == that.fRunIndex && in operator ==()
468 fRunIndex != that.fRunIndex || in operator !=()
474 SkASSERT(fRunIndex < runs.count()); in next()
475 SkASSERT(fGlyphIndex < runs[fRunIndex].fNumGlyphs); in next()
478 if (fGlyphIndex == runs[fRunIndex].fNumGlyphs) { in next()
480 ++fRunIndex; in next()
481 if (fRunIndex >= runs.count()) { in next()
485 return &runs[fRunIndex].fGlyphs[fGlyphIndex]; in next()
490 if (fRunIndex >= runs.count()) { in current()
493 return &runs[fRunIndex].fGlyphs[fGlyphIndex]; in current()
497 int fRunIndex; member
752 int runIndex = glyphIterator.fRunIndex; in shape()
772 int numRuns = runIndex - previousBreak.fRunIndex + 1; in shape()
775 runLevels[i] = runs[previousBreak.fRunIndex + i].fLevel; in shape()
781 int logicalIndex = previousBreak.fRunIndex + logicalFromVisual[i]; in shape()
783 int startGlyphIndex = (logicalIndex == previousBreak.fRunIndex) in shape()