/third_party/skia/modules/skparagraph/src/ |
D | ParagraphBuilderImpl.cpp | 21 return ParagraphBuilderImpl::make(style, fontCollection); in make() 24 std::unique_ptr<ParagraphBuilder> ParagraphBuilderImpl::make( in make() 30 return std::make_unique<ParagraphBuilderImpl>(style, fontCollection); in make() 33 std::unique_ptr<ParagraphBuilder> ParagraphBuilderImpl::make( in make() 38 return std::make_unique<ParagraphBuilderImpl>(style, fontCollection, std::move(unicode)); in make() 41 ParagraphBuilderImpl::ParagraphBuilderImpl( in ParagraphBuilderImpl() function in skia::textlayout::ParagraphBuilderImpl 51 ParagraphBuilderImpl::ParagraphBuilderImpl( in ParagraphBuilderImpl() function in skia::textlayout::ParagraphBuilderImpl 53 : ParagraphBuilderImpl(style, fontCollection, SkUnicode::Make()) in ParagraphBuilderImpl() 56 ParagraphBuilderImpl::~ParagraphBuilderImpl() = default; 58 void ParagraphBuilderImpl::setParagraphStyle(const ParagraphStyle& style) { in setParagraphStyle() [all …]
|
D | ParagraphBuilderImpl.h | 19 class ParagraphBuilderImpl : public ParagraphBuilder { 21 ParagraphBuilderImpl(const ParagraphStyle& style, 26 ParagraphBuilderImpl(const ParagraphStyle& style, sk_sp<FontCollection> fontCollection); 28 ~ParagraphBuilderImpl() override;
|
/third_party/flutter/skia/modules/skparagraph/src/ |
D | ParagraphBuilderImpl.cpp | 15 return skstd::make_unique<ParagraphBuilderImpl>(style, fontCollection); in make() 18 ParagraphBuilderImpl::ParagraphBuilderImpl( in ParagraphBuilderImpl() function in skia::textlayout::ParagraphBuilderImpl 24 ParagraphBuilderImpl::~ParagraphBuilderImpl() = default; 26 void ParagraphBuilderImpl::setParagraphStyle(const ParagraphStyle& style) { in setParagraphStyle() 32 void ParagraphBuilderImpl::pushStyle(const TextStyle& style) { in pushStyle() 45 void ParagraphBuilderImpl::pop() { in pop() 59 TextStyle ParagraphBuilderImpl::peekStyle() { in peekStyle() 70 void ParagraphBuilderImpl::addText(const std::u16string& text) { in addText() 79 void ParagraphBuilderImpl::addText(const char* text) { in addText() 84 void ParagraphBuilderImpl::endRunIfNeeded() { in endRunIfNeeded() [all …]
|
D | ParagraphBuilderImpl.h | 18 class ParagraphBuilderImpl : public ParagraphBuilder { 20 ParagraphBuilderImpl(const ParagraphStyle& style, sk_sp<FontCollection> fontCollection); 22 ~ParagraphBuilderImpl() override;
|
/third_party/skia/modules/canvaskit/ |
D | paragraph_bindings.cpp | 432 class_<para::ParagraphBuilderImpl>("ParagraphBuilder") in EMSCRIPTEN_BINDINGS() 436 -> std::unique_ptr<para::ParagraphBuilderImpl> { in EMSCRIPTEN_BINDINGS() 441 auto pb = para::ParagraphBuilderImpl::make(ps, fc); in EMSCRIPTEN_BINDINGS() 442 return std::unique_ptr<para::ParagraphBuilderImpl>( in EMSCRIPTEN_BINDINGS() 443 static_cast<para::ParagraphBuilderImpl*>(pb.release())); in EMSCRIPTEN_BINDINGS() 450 -> std::unique_ptr<para::ParagraphBuilderImpl> { in EMSCRIPTEN_BINDINGS() 455 auto pb = para::ParagraphBuilderImpl::make(ps, fc); in EMSCRIPTEN_BINDINGS() 456 return std::unique_ptr<para::ParagraphBuilderImpl>( in EMSCRIPTEN_BINDINGS() 457 static_cast<para::ParagraphBuilderImpl*>(pb.release())); in EMSCRIPTEN_BINDINGS() 520 optional_override([](para::ParagraphBuilderImpl& self, std::string text) { in EMSCRIPTEN_BINDINGS() [all …]
|
/third_party/skia/modules/skparagraph/samples/ |
D | SampleParagraph.cpp | 108 ParagraphBuilderImpl builder(paraStyle, fontCollection); in drawTest() 207 ParagraphBuilderImpl builder(paraStyle, fontCollection); in drawCode() 289 ParagraphBuilderImpl builder(paraStyle, getFontCollection()); in drawText() 336 ParagraphBuilderImpl builder(paraStyle, fontCollection); in drawLine() 459 ParagraphBuilderImpl builder(paraStyle, fontCollection); in drawLine() 633 ParagraphBuilderImpl builder(paraStyle, getFontCollection()); in drawFlutter() 723 ParagraphBuilderImpl builder(paraStyle, getFontCollection()); in bidi() 884 ParagraphBuilderImpl builder(paraStyle, getFontCollection()); in hangingS() 924 ParagraphBuilderImpl builder(paraStyle, getFontCollection()); in hangingS() 995 ParagraphBuilderImpl builder(paragraphStyle, getFontCollection()); in drawText() [all …]
|
/third_party/skia/modules/skparagraph/tests/ |
D | SkParagraphTest.cpp | 206 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in UNIX_ONLY_TEST() 247 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in UNIX_ONLY_TEST() 346 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in UNIX_ONLY_TEST() 402 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in UNIX_ONLY_TEST() 458 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in UNIX_ONLY_TEST() 514 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in UNIX_ONLY_TEST() 568 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in UNIX_ONLY_TEST() 622 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in UNIX_ONLY_TEST() 676 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in UNIX_ONLY_TEST() 729 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in UNIX_ONLY_TEST() [all …]
|
/third_party/flutter/skia/modules/skparagraph/ |
D | skparagraph.gni | 26 "$_src/ParagraphBuilderImpl.cpp", 27 "$_src/ParagraphBuilderImpl.h",
|
/third_party/skia/modules/skparagraph/ |
D | skparagraph.gni | 28 "$_src/ParagraphBuilderImpl.cpp", 29 "$_src/ParagraphBuilderImpl.h",
|
/third_party/flutter/skia/tests/ |
D | SkParagraphTest.cpp | 146 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in DEF_TEST() 212 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in DEF_TEST() 263 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in DEF_TEST() 372 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in DEF_TEST() 405 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in DEF_TEST() 449 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in DEF_TEST() 522 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in DEF_TEST() 606 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in DEF_TEST() 693 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in DEF_TEST() 778 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in DEF_TEST() [all …]
|
/third_party/flutter/skia/samplecode/ |
D | SampleParagraph.cpp | 110 ParagraphBuilderImpl builder(paraStyle, fontCollection); in drawTest() 209 ParagraphBuilderImpl builder(paraStyle, fontCollection); in drawCode() 283 ParagraphBuilderImpl builder(paraStyle, getFontCollection()); in drawText() 330 ParagraphBuilderImpl builder(paraStyle, fontCollection); in drawLine() 454 ParagraphBuilderImpl builder(paraStyle, fontCollection); in drawLine() 628 ParagraphBuilderImpl builder(paraStyle, getFontCollection()); in drawFlutter() 718 ParagraphBuilderImpl builder(paraStyle, getFontCollection()); in bidi() 878 ParagraphBuilderImpl builder(paraStyle, getFontCollection()); in hangingS() 918 ParagraphBuilderImpl builder(paraStyle, getFontCollection()); in hangingS() 989 ParagraphBuilderImpl builder(paragraphStyle, getFontCollection()); in drawText() [all …]
|
/third_party/skia/modules/skparagraph/bench/ |
D | ParagraphBench.cpp | 41 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in onDraw()
|
/third_party/flutter/skia/bench/ |
D | ParagraphBench.cpp | 41 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in onDraw()
|
/third_party/skia/fuzz/ |
D | FuzzSkParagraph.cpp | 261 ParagraphBuilderImpl builder(paragraph_style, fontCollection); in DEF_FUZZ()
|
/third_party/skia/modules/skparagraph/gm/ |
D | simple_gm.cpp | 61 auto builder = skia::textlayout::ParagraphBuilderImpl::make(paraStyle, collection); in buildParagraph()
|
/third_party/flutter/engine/flutter/ci/licenses_golden/ |
D | licenses_skia | 1732 FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphBuilderImpl.cpp 1733 FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphBuilderImpl.h
|