Home
last modified time | relevance | path

Searched refs:fRunIndex (Results 1 – 6 of 6) sorted by relevance

/external/skia/experimental/sktext/src/
DLine.h61 GlyphPos() : fRunIndex(EMPTY_INDEX), fGlyphIndex(EMPTY_INDEX) { } in GlyphPos()
62 GlyphPos(size_t runIndex, size_t glyphIndex) : fRunIndex(runIndex), fGlyphIndex(glyphIndex) { } in GlyphPos()
65 return this->fRunIndex == other.fRunIndex && this->fGlyphIndex == other.fGlyphIndex;
68 size_t runIndex() const { return fRunIndex; } in runIndex()
72 bool isEmpty() const { return fRunIndex == EMPTY_INDEX; } in isEmpty()
75 size_t fRunIndex;
/external/skqp/modules/skshaper/src/
DSkShaper_harfbuzz.cpp456 : fRuns(&origRuns), fRunIndex(0), fGlyphIndex(0) in ShapedRunGlyphIterator()
463 fRunIndex == that.fRunIndex && in operator ==()
468 fRunIndex != that.fRunIndex || in operator !=()
474 SkASSERT(fRunIndex < runs.count()); in next()
475 SkASSERT(fGlyphIndex < runs[fRunIndex].fNumGlyphs); in next()
478 if (fGlyphIndex == runs[fRunIndex].fNumGlyphs) { in next()
480 ++fRunIndex; in next()
481 if (fRunIndex >= runs.count()) { in next()
485 return &runs[fRunIndex].fGlyphs[fGlyphIndex]; in next()
490 if (fRunIndex >= runs.count()) { in current()
[all …]
/external/skia/modules/skparagraph/src/
DRun.cpp277 auto& run = fOwner->run(fRunIndex); in trimmedWidth()
295 if (fRunIndex >= fOwner->runs().size()) { in runOrNull()
298 return &fOwner->run(fRunIndex); in runOrNull()
302 SkASSERT(fRunIndex < fOwner->runs().size()); in run()
303 return fOwner->run(fRunIndex); in run()
307 SkASSERT(fRunIndex < fOwner->runs().size()); in font()
308 return fOwner->run(fRunIndex).font(); in font()
DRun.h262 , fRunIndex(EMPTY_RUN) in Cluster()
312 RunIndex runIndex() const { return fRunIndex; } in runIndex()
336 RunIndex fRunIndex; variable
DParagraphImpl.cpp334 , fRunIndex(runIndex) in Cluster()
830 return this->run(start.fRunIndex); in runByCluster()
/external/skia/modules/skshaper/src/
DSkShaper_harfbuzz.cpp597 : fRuns(&origRuns), fRunIndex(0), fGlyphIndex(0) in ShapedRunGlyphIterator()
604 fRunIndex == that.fRunIndex && in operator ==()
609 fRunIndex != that.fRunIndex || in operator !=()
615 SkASSERT(fRunIndex < runs.count()); in next()
616 SkASSERT(fGlyphIndex < runs[fRunIndex].fNumGlyphs); in next()
619 if (fGlyphIndex == runs[fRunIndex].fNumGlyphs) { in next()
621 ++fRunIndex; in next()
622 if (fRunIndex >= runs.count()) { in next()
626 return &runs[fRunIndex].fGlyphs[fGlyphIndex]; in next()
631 if (fRunIndex >= runs.count()) { in current()
[all …]