Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkGlyphRun.h64 SkSpan<const SkGlyphRun> fGlyphRuns; variable
84 size_t runCount() const { return fGlyphRuns.size(); } in runCount()
106 auto begin() -> decltype(fGlyphRuns.begin()) { return fGlyphRuns.begin(); }
107 auto end() -> decltype(fGlyphRuns.end()) { return fGlyphRuns.end(); }
108 auto begin() const -> decltype(std::cbegin(fGlyphRuns)) { return std::cbegin(fGlyphRuns); }
109 auto end() const -> decltype(std::cend(fGlyphRuns)) { return std::cend(fGlyphRuns); }
110 auto size() const -> decltype(fGlyphRuns.size()) { return fGlyphRuns.size(); }
111 auto empty() const -> decltype(fGlyphRuns.empty()) { return fGlyphRuns.empty(); }
112 auto operator [] (size_t i) const -> decltype(fGlyphRuns[i]) { return fGlyphRuns[i]; }
DSkGlyphRun.cpp114 : fGlyphRuns{glyphRunList} in SkGlyphRunList()
120 : fGlyphRuns{SkSpan<const SkGlyphRun>{&glyphRun, 1}} in SkGlyphRunList()
131 for (const auto& r : fGlyphRuns) { in anyRunsLCD()
/external/skqp/src/core/
DSkGlyphRun.h63 SkSpan<const SkGlyphRun> fGlyphRuns; variable
82 size_t runCount() const { return fGlyphRuns.size(); } in runCount()
85 for(const auto& run : fGlyphRuns) { in totalGlyphCount()
96 auto begin() -> decltype(fGlyphRuns.begin()) { return fGlyphRuns.begin(); }
97 auto end() -> decltype(fGlyphRuns.end()) { return fGlyphRuns.end(); }
98 auto begin() const -> decltype(fGlyphRuns.cbegin()) { return fGlyphRuns.cbegin(); }
99 auto end() const -> decltype(fGlyphRuns.cend()) { return fGlyphRuns.cend(); }
100 auto size() const -> decltype(fGlyphRuns.size()) { return fGlyphRuns.size(); }
101 auto empty() const -> decltype(fGlyphRuns.empty()) { return fGlyphRuns.empty(); }
102 auto operator [] (size_t i) const -> decltype(fGlyphRuns[i]) { return fGlyphRuns[i]; }
DSkGlyphRun.cpp55 , fGlyphRuns{glyphRunList} { }
61 , fGlyphRuns{SkSpan<const SkGlyphRun>{&glyphRun, 1}} {}
69 for (const auto& r : fGlyphRuns) { in anyRunsLCD()
78 for (const auto& r : fGlyphRuns) { in anyRunsSubpixelPositioned()
87 for (const auto& r : fGlyphRuns) { in allFontsFinite()