/third_party/skia/modules/skparagraph/tests/ |
H A D | SkParagraphTest.cpp | 342 auto boxes = paragraph->getRectsForRange(0, 3, rect_height_style, rect_width_style); in UNIX_ONLY_TEST() 346 boxes = paragraph->getRectsForRange(0, 3, rect_height_style, rect_width_style); in UNIX_ONLY_TEST() 353 boxes = paragraph->getRectsForRange(4, 17, rect_height_style, rect_width_style); in UNIX_ONLY_TEST() 425 boxes = paragraph->getRectsForRange(5, 6, rect_height_style, rect_width_style); in UNIX_ONLY_TEST() 481 boxes = paragraph->getRectsForRange(5, 6, rect_height_style, rect_width_style); in UNIX_ONLY_TEST() 537 boxes = paragraph->getRectsForRange(5, 6, rect_height_style, rect_width_style); in UNIX_ONLY_TEST() 592 boxes = paragraph->getRectsForRange(0, 1, rect_height_style, rect_width_style); in UNIX_ONLY_TEST() 646 boxes = paragraph->getRectsForRange(0, 1, rect_height_style, rect_width_style); in UNIX_ONLY_TEST() 700 boxes = paragraph->getRectsForRange(5, 6, rect_height_style, rect_width_style); in UNIX_ONLY_TEST() 753 boxes = paragraph->getRectsForRange( in UNIX_ONLY_TEST() [all...] |
/third_party/skia/modules/skparagraph/samples/ |
H A D | SampleParagraph.cpp | 1179 auto boxes = paragraph->getRectsForRange(from, to, rect_height_style, rect_width_style); in drawText() 1293 auto rects = paragraph->getRectsForRange(7, 9, RectHeightStyle::kTight, 1305 auto hitRects = paragraph->getRectsForRange(query.fX, query.fY, RectHeightStyle::kTight, 1316 auto missRects = paragraph->getRectsForRange(query.fX, query.fY, 1354 auto result = paragraph->getRectsForRange(65, 66, RectHeightStyle::kTight, RectWidthStyle::kTight); 2093 auto boxes = paragraph->getRectsForRange(0, 100, RectHeightStyle::kTight, RectWidthStyle::kTight); 2195 auto f1 = paragraph->getRectsForRange(0, 1, RectHeightStyle::kTight, 2205 auto f2 = paragraph->getRectsForRange(1, 2, RectHeightStyle::kTight, 2215 auto fi = paragraph->getRectsForRange(2, 3, RectHeightStyle::kTight, 2286 auto results = paragraph->getRectsForRange( [all...] |
/third_party/skia/modules/skparagraph/include/ |
H A D | Paragraph.h | 70 virtual std::vector<TextBox> getRectsForRange(unsigned start,
|
/third_party/skia/modules/canvaskit/ |
H A D | externs.js | 1051 CanvasKit.Paragraph.prototype.getRectsForRange = function() {};
|
H A D | paragraph_bindings.cpp | 283 std::vector<para::TextBox> boxes = self.getRectsForRange(start, end, heightStyle, widthStyle); in GetRectsForRange()
|
/third_party/skia/modules/skparagraph/src/ |
H A D | TextLine.h | 170 void getRectsForRange(TextRange textRange,
|
H A D | ParagraphImpl.h | 122 std::vector<TextBox> getRectsForRange(unsigned start, 411 // These two arrays are used in measuring methods (getRectsForRange, getGlyphPositionAtCoordinate)
|
H A D | ParagraphImpl.cpp | 1463 // calculate text box(reference to TextLine::getRectsForRange(), switch(rectHeightStyle)) in GetLineFontMetrics() 1500 std::vector<TextBox> ParagraphImpl::getRectsForRange(unsigned start, in GetLineFontMetrics() function in skia::textlayout::ParagraphImpl 1509 //SkDebugf("getRectsForRange(%d, %d): %f\n", start, end, fHeight); in GetLineFontMetrics() 1549 //SkDebugf("getRectsForRange(%d,%d) -> (%d:%d)\n", start, end, text.start, text.end); in GetLineFontMetrics() 1558 line.getRectsForRange(intersect, rectHeightStyle, rectWidthStyle, results); in GetLineFontMetrics() 1561 SkDebugf("getRectsForRange(%d, %d)\n", start, end); in GetLineFontMetrics() 2061 line.getRectsForRange(cluster.textRange(), in GetLineFontMetrics()
|
H A D | TextLine.cpp | 1819 void TextLine::getRectsForRange(TextRange textRange0, function in skia::textlayout::TextLine
|