Searched refs:fBoxLines (Results 1 – 2 of 2) sorted by relevance
654 SkASSERT(fBoxLines.size() == index); in onBeginLine()655 fBoxLines.emplace_back(index, lineText, hardBreak, bounds); in onBeginLine()659 auto& line = fBoxLines.back(); in onEndLine()679 auto& line = fBoxLines.back(); in onGlyphRun()742 for (auto& line : fBoxLines) { in adjustedPosition()756 const BoxLine* currentLine = &fBoxLines[current.fLineIndex]; in previousPosition()765 currentLine = &fBoxLines[current.fLineIndex]; in previousPosition()778 const BoxLine* currentLine = &fBoxLines[current.fLineIndex]; in nextPosition()781 if (current.fLineIndex == this->fBoxLines.size() - 1) { in nextPosition()787 currentLine = &fBoxLines[current.fLineIndex]; in nextPosition()[all …]
333 return (element.fGlyphRange.fEnd == fBoxLines.back().fBoxGlyphs.size()); in isLastOnTheLine()336 size_t countLines() const { return fBoxLines.size(); } in countLines()338 SkASSERT(lineIndex < fBoxLines.size()); in getLine()339 return fBoxLines[lineIndex]; in getLine()367 SkTArray<BoxLine, true> fBoxLines; variable