Home
last modified time | relevance | path

Searched refs:fClusterIndexes (Results 1 – 8 of 8) sorted by relevance

/third_party/flutter/skia/modules/skparagraph/src/
DRun.h102 size_t clusterIndex(size_t pos) const { return fClusterIndexes[pos]; } in clusterIndex()
143 return SkSpan<const uint32_t>(fClusterIndexes.begin(), fClusterIndexes.size()); in clusterIndexes()
167 SkSTArray<128, uint32_t, true> fClusterIndexes; variable
DRun.cpp38 fClusterIndexes.push_back_n(info.glyphCount + 1); in Run()
43 fClusterIndexes[info.glyphCount] = info.utf8Range.end(); in Run()
47 return {fGlyphs.data(), fPositions.data(), nullptr, fClusterIndexes.data(), fOffset}; in newRunBuffer()
DParagraphImpl.cpp736 result = { SkToS32(run->fClusterIndexes[pos]), kDownstream }; in getGlyphPositionAtCoordinate()
743 result = { SkToS32(run->fClusterIndexes[pos + size - 1]) + 1, kUpstream }; in getGlyphPositionAtCoordinate()
759 auto clusterIndex8 = run->fClusterIndexes[found]; in getGlyphPositionAtCoordinate()
/third_party/skia/modules/skparagraph/src/
DRun.h104 size_t clusterIndex(size_t pos) const { return fClusterIndexes[pos]; } in clusterIndex()
105 size_t globalClusterIndex(size_t pos) const { return fClusterStart + fClusterIndexes[pos]; } in globalClusterIndex()
153 return SkSpan<const uint32_t>(fClusterIndexes.begin(), fClusterIndexes.size()); in clusterIndexes()
190 SkSTArray<128, uint32_t, true> fClusterIndexes; variable
DRun.cpp42 fClusterIndexes.push_back_n(info.glyphCount + 1); in Run()
51fClusterIndexes[info.glyphCount] = this->leftToRight() ? info.utf8Range.end() : info.utf8Range.beg… in Run()
80 return {fGlyphs.data(), fPositions.data(), nullptr, fClusterIndexes.data(), fOffset}; in newRunBuffer()
DOneLineShaper.h97 return fCurrentText.start + fCurrentRun->fClusterIndexes[glyph]; in clusterIndex()
DOneLineShaper.cpp228 piece->fClusterIndexes[index] = run->fClusterIndexes[i]; in finish()
616 run.fClusterIndexes[0] = 0; in iterateThroughShapingRegions()
DParagraphImpl.cpp1067 const uint32_t* clusterPtr = &R->fClusterIndexes[0]; in visit()
1070 int count = R->fClusterIndexes.count(); in visit()
1073 clusterStorage[i] = R->fClusterStart + R->fClusterIndexes[i]; in visit()