Searched refs:runHandler (Results 1 – 2 of 2) sorted by relevance
/third_party/flutter/skia/experimental/editor/ |
D | shape.cpp | 273 RunHandler runHandler(utf8Text, textByteLen); in Shape() local 279 runHandler.setRunCallback(set_character_bounds, result.glyphBounds.data()); in Shape() 281 shaper->shape(utf8Text, textByteLen, font, true, width, &runHandler); in Shape() 282 if (runHandler.lineEndOffsets().size() > 1) { in Shape() 283 result.lineBreakOffsets = runHandler.lineEndOffsets(); in Shape() 287 height = std::max(height, runHandler.endPoint().y()); in Shape() 288 result.blob = runHandler.makeBlob(); in Shape() 290 result.glyphBounds.push_back(runHandler.finalRect(font)); in Shape()
|
/third_party/skia/modules/skplaintexteditor/src/ |
D | shape.cpp | 272 RunHandler runHandler(utf8Text, textByteLen); in Shape() local 278 runHandler.setRunCallback(set_character_bounds, result.glyphBounds.data()); in Shape() 280 shaper->shape(utf8Text, textByteLen, font, true, width, &runHandler); in Shape() 281 if (runHandler.lineEndOffsets().size() > 1) { in Shape() 282 result.lineBreakOffsets = runHandler.lineEndOffsets(); in Shape() 286 height = std::max(height, runHandler.endPoint().y()); in Shape() 287 result.blob = runHandler.makeBlob(); in Shape() 289 result.glyphBounds.push_back(runHandler.finalRect(font)); in Shape()
|