Lines Matching defs:widths
357 Both widths and bounds may be nullptr.
358 If widths is not nullptr, widths must be an array of count entries.
363 @param widths returns text advances for each glyph; may be nullptr
366 void getWidths(const SkGlyphID glyphs[], int count, SkScalar widths[], SkRect bounds[]) const {
367 this->getWidthsBounds(glyphs, count, widths, bounds, nullptr);
371 void getWidths(const SkGlyphID glyphs[], int count, SkScalar widths[], std::nullptr_t) const {
372 this->getWidths(glyphs, count, widths);
376 Both widths and bounds may be nullptr.
377 If widths is not nullptr, widths must be an array of count entries.
382 @param widths returns text advances for each glyph
384 void getWidths(const SkGlyphID glyphs[], int count, SkScalar widths[]) const {
385 this->getWidthsBounds(glyphs, count, widths, nullptr, nullptr);
389 Both widths and bounds may be nullptr.
390 If widths is not nullptr, widths must be an array of count entries.
395 @param widths returns text advances for each glyph; may be nullptr
399 void getWidthsBounds(const SkGlyphID glyphs[], int count, SkScalar widths[], SkRect bounds[],