Home
last modified time | relevance | path

Searched refs:getRectsForRange (Results 1 – 14 of 14) sorted by relevance

/external/skia/modules/skparagraph/tests/
DSkParagraphTest.cpp285 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/
DParagraph.h44 virtual std::vector<TextBox> getRectsForRange(unsigned start,
/external/skia/modules/skparagraph/samples/
DSampleParagraph.cpp1180 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/
DTextLine.h101 …void getRectsForRange(TextRange textRange, RectHeightStyle rectHeightStyle, RectWidthStyle rectWid…
DParagraphImpl.h117 std::vector<TextBox> getRectsForRange(unsigned start,
DParagraphImpl.cpp655 std::vector<TextBox> ParagraphImpl::getRectsForRange(unsigned start, in getRectsForRange() function in skia::textlayout::ParagraphImpl
707 line.getRectsForRange(intersect, rectHeightStyle, rectWidthStyle, results); in getRectsForRange()
DTextLine.cpp955 void TextLine::getRectsForRange(TextRange textRange0, in getRectsForRange() function in skia::textlayout::TextLine
/external/skia/modules/canvaskit/
Dparagraph.js5 CanvasKit.Paragraph.prototype.getRectsForRange = function(start, end, hStyle, wStyle) { method in CanvasKit.Paragraph
Dexterns.js1035 CanvasKit.Paragraph.prototype.getRectsForRange = function() {}; method in CanvasKit.Paragraph
Dparagraph_bindings.cpp283 std::vector<para::TextBox> boxes = self.getRectsForRange(start, end, heightStyle, widthStyle); in GetRectsForRange()
DCHANGELOG.md597 - The returned values from `SkParagraph.getRectsForRange` now have direction with value
/external/skia/modules/canvaskit/tests/
Dparagraph.spec.js496 let rects = paragraph.getRectsForRange(test.start, test.end, hStyle, wStyle);
/external/skia/modules/canvaskit/npm_build/types/
Dcanvaskit-wasm-tests.ts510 const k = p.getRectsForRange(2, 10, CK.RectHeightStyle.Max, // $ExpectType Float32Array
Dindex.d.ts851 getRectsForRange(start: number, end: number, hStyle: RectHeightStyle, method