Home
last modified time | relevance | path

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

/external/skia/modules/skparagraph/src/
DOneLineShaper.cpp176fParagraph->fFontSwitches.emplace_back(resolvedBlock.fText.start, resolvedBlock.fRun->fFont); in finish()
190 resolvedBlock.fRun->fIndex = this->fParagraph->fRuns.size(); in finish()
191 this->fParagraph->fRuns.emplace_back(*resolvedBlock.fRun); in finish()
206 this->fParagraph->fRuns.emplace_back( in finish()
207 this->fParagraph, in finish()
212 this->fParagraph->fRuns.count(), in finish()
215 auto piece = &this->fParagraph->fRuns.back(); in finish()
318 GraphemeIndex gi = fParagraph->findPreviousGraphemeBoundary(ci); in sortOutGlyphs()
324 bool isControl8 = fParagraph->getUnicode()->isControl(codepoint); in sortOutGlyphs()
372 bool isControl8 = fParagraph->getUnicode()->isControl(codepoint); in sortOutGlyphs()
[all …]
DOneLineShaper.h19 : fParagraph(paragraph) in OneLineShaper()
81 fCurrentRun = std::make_shared<Run>(fParagraph, in runBuffer()
103 ParagraphImpl* fParagraph; variable
/external/skia/bench/
DParagraphBench.cpp23 std::unique_ptr<skia::textlayout::Paragraph> fParagraph; member in ParagraphBench
37 return backend == kNonRendering_Backend && !!fParagraph; in isSuitableFor()
75 fParagraph = builder->Build(); in onDelayedSetup()
85 fParagraph->markDirty(); in onDraw()
86 fParagraph->layout(300); in onDraw()
/external/skia/modules/skparagraph/samples/
DSampleParagraph.cpp1607 if (fRedraw || fParagraph == nullptr) { in onDrawContent()
1612 fParagraph = builder.Build(); in onDrawContent()
1615 auto impl = static_cast<ParagraphImpl*>(fParagraph.get()); in onDrawContent()
1620 fParagraph->layout(1000); in onDrawContent()
1621 fParagraph->paint(canvas, 300, 200); in onDrawContent()
1649 std::unique_ptr<Paragraph> fParagraph; member in __anon297213a70111::ParagraphView18