Home
last modified time | relevance | path

Searched refs:fJustificationShifts (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/modules/skparagraph/src/
DRun.cpp92 if (!fSpaced && fJustificationShifts.empty()) { in copyTo()
100 if (!fJustificationShifts.empty()) { in copyTo()
101 point.fX += fJustificationShifts[i + pos].fX; in copyTo()
288 (fJustificationShifts.empty() ? 0 : fJustificationShifts[pos].fY); in positionX()
DRun.h167 fJustificationShifts.reset(); in resetJustificationShifts()
189 … SkSTArray<128, SkPoint, true> fJustificationShifts; // For justification (current and prev shifts) variable
DParagraphImpl.cpp376 if (end > start && !fJustificationShifts.empty()) { in calculateWidth()
378 correction = fJustificationShifts[end - 1].fX - in calculateWidth()
379 fJustificationShifts[start].fY; in calculateWidth()
DTextLine.cpp495 if (run.fJustificationShifts.empty()) { in shiftCluster()
497 run.fJustificationShifts.push_back_n(run.size() + 1, { 0, 0 }); in shiftCluster()
501 run.fJustificationShifts[pos] = { shift, prevShift }; in shiftCluster()