Lines Matching refs:curGlyphRange
1423 TextRange curGlyphRange = TextRange(context.pos, context.pos + context.size);
1424 auto intersect = intersected(lastGlyphRange, curGlyphRange);
1425 if (intersect == EMPTY_TEXT || (intersect.start != curGlyphRange.start && intersect.end != curGlyphRange.end)) {
1428 if (intersect.start == curGlyphRange.start) {
1429 curGlyphRange = TextRange(intersect.end, curGlyphRange.end);
1430 } else if (intersect.end == curGlyphRange.end) {
1431 curGlyphRange = TextRange(curGlyphRange.start, intersect.start);
1434 context.pos = curGlyphRange.start;
1435 context.size = curGlyphRange.width();