• Home
  • Raw
  • Download

Lines Matching refs:fGlyphRange

694     position.fGlyphRange = GlyphRange(0, line.fBoxGlyphs.size() - 1);  in findPosition()
701 for (; position.fGlyphRange.fStart < position.fGlyphRange.fEnd; ++position.fGlyphRange.fStart) { in findPosition()
702 auto glyphBox = line.fBoxGlyphs[position.fGlyphRange.fStart]; in findPosition()
707 auto textIndex = line.fTextByGlyph[position.fGlyphRange.fStart]; in findPosition()
716 for (; position.fGlyphRange.fEnd > position.fGlyphRange.fStart ; --position.fGlyphRange.fEnd) { in findPosition()
717 auto glyphBox = line.fBoxGlyphs[position.fGlyphRange.fStart]; in findPosition()
722 auto textIndex = line.fTextByGlyph[position.fGlyphRange.fEnd]; in findPosition()
733 position.fBoundaries.fLeft = line.fBoxGlyphs[position.fGlyphRange.fStart].fLeft; in findPosition()
734 position.fBoundaries.fRight = line.fBoxGlyphs[position.fGlyphRange.fEnd].fRight; in findPosition()
761 current.fGlyphRange = GlyphRange(0, 0); in previousPosition()
766 current.fGlyphRange.fStart = currentLine->fBoxGlyphs.size(); in previousPosition()
769 …n(current.fPositionType, *currentLine, currentLine->fBoxGlyphs[current.fGlyphRange.fStart].centerX… in previousPosition()
783 … current.fGlyphRange = GlyphRange(currentLine->fBoxGlyphs.size(), currentLine->fBoxGlyphs.size()); in nextPosition()
788 current.fGlyphRange.fEnd = 0; in nextPosition()
791 …n(current.fPositionType, *currentLine, currentLine->fBoxGlyphs[current.fGlyphRange.fStart].centerX… in nextPosition()
808 …pe, fBoxLines[current.fLineIndex - 1], currentLine->fBoxGlyphs[current.fGlyphRange.fStart].centerX… in upPosition()
825 …pe, fBoxLines[current.fLineIndex + 1], currentLine->fBoxGlyphs[current.fGlyphRange.fStart].centerX… in downPosition()
838 beginningOfText.fGlyphRange = GlyphRange { 0, 0}; in firstPosition()
851 …endOfText.fGlyphRange = GlyphRange(lastLine.fBoxGlyphs.size() - 1, lastLine.fBoxGlyphs.size() - 1); in lastPosition()
874 for (auto glyph = position.fGlyphRange.fStart; glyph <= position.fGlyphRange.fEnd; ++glyph) { in glyphsToText()