/external/skia/modules/skparagraph/tests/ |
D | SkParagraphTest.cpp | 285 auto boxes = paragraph->getRectsForRange(0, 3, rect_height_style, rect_width_style); in DEF_TEST() 289 boxes = paragraph->getRectsForRange(0, 3, rect_height_style, rect_width_style); in DEF_TEST() 296 boxes = paragraph->getRectsForRange(4, 17, rect_height_style, rect_width_style); in DEF_TEST() 368 boxes = paragraph->getRectsForRange(5, 6, rect_height_style, rect_width_style); in DEF_TEST() 424 boxes = paragraph->getRectsForRange(5, 6, rect_height_style, rect_width_style); in DEF_TEST() 480 boxes = paragraph->getRectsForRange(5, 6, rect_height_style, rect_width_style); in DEF_TEST() 535 boxes = paragraph->getRectsForRange(0, 1, rect_height_style, rect_width_style); in DEF_TEST() 589 boxes = paragraph->getRectsForRange(0, 1, rect_height_style, rect_width_style); in DEF_TEST() 643 boxes = paragraph->getRectsForRange(5, 6, rect_height_style, rect_width_style); in DEF_TEST() 696 boxes = paragraph->getRectsForRange(5, 6, rect_height_style, rect_width_style); in DEF_TEST() [all …]
|
/external/skia/modules/skparagraph/include/ |
D | Paragraph.h | 44 virtual std::vector<TextBox> getRectsForRange(unsigned start,
|
/external/skia/modules/skparagraph/samples/ |
D | SampleParagraph.cpp | 1180 auto boxes = paragraph->getRectsForRange(from, to, rect_height_style, rect_width_style); in drawText() 1294 … auto rects = paragraph->getRectsForRange(7, 9, RectHeightStyle::kTight, RectWidthStyle::kTight); in onDrawContent() 1305 …auto rects = paragraph->getRectsForRange(query.fX, query.fY, RectHeightStyle::kTight, RectWidthSty… in onDrawContent() 1315 …auto miss = paragraph->getRectsForRange(query.fX, query.fY, RectHeightStyle::kTight, RectWidthStyl… in onDrawContent() 1351 …auto result = paragraph->getRectsForRange(65, 66, RectHeightStyle::kTight, RectWidthStyle::kTight); in onDrawContent() 2088 … auto boxes = paragraph->getRectsForRange(0, 100, RectHeightStyle::kTight, RectWidthStyle::kTight); in onDrawContent() 2192 … auto f1 = paragraph->getRectsForRange(0, 1, RectHeightStyle::kTight, RectWidthStyle::kTight); in onDrawContent() 2201 … auto f2 = paragraph->getRectsForRange(1, 2, RectHeightStyle::kTight, RectWidthStyle::kTight); in onDrawContent() 2210 … auto fi = paragraph->getRectsForRange(2, 3, RectHeightStyle::kTight, RectWidthStyle::kTight); in onDrawContent() 2280 …auto results = paragraph->getRectsForRange(rect.first, rect.second, RectHeightStyle::kTight, RectW… in onDrawContent() [all …]
|
/external/skia/modules/skparagraph/src/ |
D | TextLine.h | 101 …void getRectsForRange(TextRange textRange, RectHeightStyle rectHeightStyle, RectWidthStyle rectWid…
|
D | ParagraphImpl.h | 117 std::vector<TextBox> getRectsForRange(unsigned start,
|
D | ParagraphImpl.cpp | 655 std::vector<TextBox> ParagraphImpl::getRectsForRange(unsigned start, in getRectsForRange() function in skia::textlayout::ParagraphImpl 707 line.getRectsForRange(intersect, rectHeightStyle, rectWidthStyle, results); in getRectsForRange()
|
D | TextLine.cpp | 955 void TextLine::getRectsForRange(TextRange textRange0, in getRectsForRange() function in skia::textlayout::TextLine
|
/external/skia/modules/canvaskit/ |
D | paragraph.js | 5 CanvasKit.Paragraph.prototype.getRectsForRange = function(start, end, hStyle, wStyle) { method in CanvasKit.Paragraph
|
D | externs.js | 1035 CanvasKit.Paragraph.prototype.getRectsForRange = function() {}; method in CanvasKit.Paragraph
|
D | paragraph_bindings.cpp | 283 std::vector<para::TextBox> boxes = self.getRectsForRange(start, end, heightStyle, widthStyle); in GetRectsForRange()
|
D | CHANGELOG.md | 597 - The returned values from `SkParagraph.getRectsForRange` now have direction with value
|
/external/skia/modules/canvaskit/tests/ |
D | paragraph.spec.js | 496 let rects = paragraph.getRectsForRange(test.start, test.end, hStyle, wStyle);
|
/external/skia/modules/canvaskit/npm_build/types/ |
D | canvaskit-wasm-tests.ts | 510 const k = p.getRectsForRange(2, 10, CK.RectHeightStyle.Max, // $ExpectType Float32Array
|
D | index.d.ts | 851 getRectsForRange(start: number, end: number, hStyle: RectHeightStyle, method
|