Searched refs:fClusterIndexes (Results 1 – 8 of 8) sorted by relevance
/third_party/flutter/skia/modules/skparagraph/src/ |
D | Run.h | 102 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
|
D | Run.cpp | 38 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()
|
D | ParagraphImpl.cpp | 736 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/ |
D | Run.h | 104 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
|
D | Run.cpp | 42 fClusterIndexes.push_back_n(info.glyphCount + 1); in Run() 51 …fClusterIndexes[info.glyphCount] = this->leftToRight() ? info.utf8Range.end() : info.utf8Range.beg… in Run() 80 return {fGlyphs.data(), fPositions.data(), nullptr, fClusterIndexes.data(), fOffset}; in newRunBuffer()
|
D | OneLineShaper.h | 97 return fCurrentText.start + fCurrentRun->fClusterIndexes[glyph]; in clusterIndex()
|
D | OneLineShaper.cpp | 228 piece->fClusterIndexes[index] = run->fClusterIndexes[i]; in finish() 616 run.fClusterIndexes[0] = 0; in iterateThroughShapingRegions()
|
D | ParagraphImpl.cpp | 1067 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()
|