Lines Matching defs:index
234 auto index = i - glyphs.start;
236 piece->fGlyphs[index] = run->fGlyphs[i];
238 piece->fClusterIndexes[index] = run->fClusterIndexes[i];
239 piece->fPositions[index] = run->fPositions[i] - zero;
240 piece->fOffsets[index] = run->fOffsets[i];
241 piece->addX(index, advanceX);
799 auto findBaseChar = [&](TextIndex index, Dir dir) -> TextIndex {
802 while (index < fCurrentRun->fTextRange.end) {
803 if (this->fParagraph->codeUnitHasProperty(index,
805 return index;
807 ++index;
811 while (index > fCurrentRun->fTextRange.start) {
812 if (this->fParagraph->codeUnitHasProperty(index,
814 return index;
816 --index;