Home
last modified time | relevance | path

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

/external/skia/modules/skparagraph/src/
DRun.h102 size_t clusterIndex(size_t pos) const { return fClusterIndexes[pos]; } in clusterIndex()
103 size_t globalClusterIndex(size_t pos) const { return fClusterStart + fClusterIndexes[pos]; } in globalClusterIndex()
151 return SkSpan<const uint32_t>(fClusterIndexes.begin(), fClusterIndexes.size()); in clusterIndexes()
188 SkSTArray<128, uint32_t, true> fClusterIndexes; variable
DRun.cpp40 fClusterIndexes.push_back_n(info.glyphCount + 1); in Run()
49fClusterIndexes[info.glyphCount] = this->leftToRight() ? info.utf8Range.end() : info.utf8Range.beg… in Run()
75 return {fGlyphs.data(), fPositions.data(), nullptr, fClusterIndexes.data(), fOffset}; in newRunBuffer()
DOneLineShaper.h95 return fCurrentText.start + fCurrentRun->fClusterIndexes[glyph]; in clusterIndex()
DOneLineShaper.cpp226 piece->fClusterIndexes[index] = run->fClusterIndexes[i]; in finish()
608 run.fClusterIndexes[0] = 0; in iterateThroughShapingRegions()
DParagraphImpl.cpp1063 const uint32_t* clusterPtr = &R->fClusterIndexes[0]; in visit()
1066 int count = R->fClusterIndexes.count(); in visit()
1069 clusterStorage[i] = R->fClusterStart + R->fClusterIndexes[i]; in visit()