Home
last modified time | relevance | path

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

/external/skia/src/utils/
DSkShaperJSONWriter.cpp137 for (size_t glyphEndIndex = 0; glyphEndIndex < clusters.size(); glyphEndIndex++) { in BreakupClusters() local
139 if (clusters[glyphStartIndex] == clusters[glyphEndIndex]) { continue; } in BreakupClusters()
141 processMToN(glyphStartIndex, glyphEndIndex, in BreakupClusters()
142 clusters[glyphStartIndex], clusters[glyphEndIndex]); in BreakupClusters()
144 glyphStartIndex = glyphEndIndex; in BreakupClusters()
154 for (size_t glyphEndIndex = 0; glyphEndIndex < clusters.size(); glyphEndIndex++) { in BreakupClusters() local
156 if (clusters[glyphStartIndex] == clusters[glyphEndIndex]) { continue; } in BreakupClusters()
158 processMToN(glyphStartIndex, glyphEndIndex, in BreakupClusters()
162 glyphStartIndex = glyphEndIndex; in BreakupClusters()
195 auto gatherRuns = [&](size_t glyphStartIndex, size_t glyphEndIndex, in VisualizeClusters()
[all …]
/external/skia/tests/
DSkShaperJSONWriterTest.cpp19 size_t glyphStartIndex, glyphEndIndex; in DEF_TEST() member
52 auto checker = [&](size_t glyphStartIndex, size_t glyphEndIndex, in DEF_TEST()
57 REPORTER_ASSERT(reporter, a.glyphEndIndex == glyphEndIndex ); in DEF_TEST()
/external/skqp/src/gpu/text/
DGrTextBlob.h305 uint32_t glyphEndIndex() const { return fGlyphEndIndex; } in glyphEndIndex() function
312 fGlyphStartIndex = prev.glyphEndIndex(); in setAsSuccessor()
DGrTextBlob.cpp448 SkASSERT_RELEASE(lSubRun.glyphEndIndex() == rSubRun.glyphEndIndex()); in AssertEqual()