Home
last modified time | relevance | path

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

/external/skia/modules/skparagraph/src/
DRun.cpp87 if (!fSpaced && fJustificationShifts.empty()) { in copyTo()
95 if (!fJustificationShifts.empty()) { in copyTo()
96 point.fX += fJustificationShifts[i + pos].fX; in copyTo()
283 (fJustificationShifts.empty() ? 0 : fJustificationShifts[pos].fY); in positionX()
DRun.h165 fJustificationShifts.reset(); in resetJustificationShifts()
187 … 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.cpp492 if (run.fJustificationShifts.empty()) { in shiftCluster()
494 run.fJustificationShifts.push_back_n(run.size() + 1, { 0, 0 }); in shiftCluster()
498 run.fJustificationShifts[pos] = { shift, prevShift }; in shiftCluster()