Lines Matching defs:glyphs

26     run consists of glyphs, SkPaint, and position. Only parts of SkPaint related to
37 larger than the bounds of all glyphs in runs.
51 The return count is zero or a multiple of two, and is at most twice the number of glyphs in
74 It does not perform kerning or other complex shaping; glyphs are
77 @param text character code points or glyphs drawn
95 It does not perform kerning or other complex shaping; glyphs are
98 @param string character code points or glyphs drawn
115 @param text character code points or glyphs drawn (based on encoding)
131 @param text character code points or glyphs drawn (based on encoding)
222 const uint16_t* glyphs;
296 /** Returns SkTextBlob built from runs of glyphs added by builder. Returned
298 Returns nullptr if no runs of glyphs were added by builder.
310 RunBuffer supplies storage for glyphs and positions within a run.
312 A run is a sequence of glyphs sharing font metrics and positioning.
313 Each run may position its glyphs in one of three ways:
315 determine the advance to subsequent glyphs; by specifying a baseline, and
320 SkGlyphID* glyphs; //!< storage for glyph indexes in run
330 /** Returns run with storage for glyphs. Caller must write count glyphs to
331 RunBuffer::glyphs before next call to SkTextBlobBuilder.
342 is computed from (x, y) and RunBuffer::glyphs metrics.
345 @param count number of glyphs
354 /** Returns run with storage for glyphs and positions along baseline. Caller must
355 write count glyphs to RunBuffer::glyphs and count scalars to RunBuffer::pos
367 is computed from y, RunBuffer::pos, and RunBuffer::glyphs metrics.
370 @param count number of glyphs
378 /** Returns run with storage for glyphs and SkPoint positions. Caller must
379 write count glyphs to RunBuffer::glyphs and count SkPoint to RunBuffer::pos
391 is computed from RunBuffer::pos, and RunBuffer::glyphs metrics.
394 @param count number of glyphs
404 /** Returns run with storage for glyphs, text, and clusters. Caller must
405 write count glyphs to RunBuffer::glyphs, textByteCount UTF-8 code units
418 is computed from (x, y) and RunBuffer::glyphs metrics.
421 @param count number of glyphs
431 /** Returns run with storage for glyphs, positions along baseline, text,
432 and clusters. Caller must write count glyphs to RunBuffer::glyphs,
444 is computed from y, RunBuffer::pos, and RunBuffer::glyphs metrics.
447 @param count number of glyphs
456 /** Returns run with storage for glyphs, SkPoint positions, text, and
457 clusters. Caller must write count glyphs to RunBuffer::glyphs, count
469 is computed from RunBuffer::pos, and RunBuffer::glyphs metrics.
472 @param count number of glyphs