Home | History | Annotate | Download | only in common

Lines Matching refs:lead

41  * - Still separate data for lead surrogate code _units_ vs. code _points_,
42 * but the lead surrogate code unit values are not required any more
47 * in the lead surrogate data for the associated supplementary code points.
500 * A UTrie2 stores separate values for lead surrogate code _units_ vs. code _points_.
507 * code points associated with a lead surrogate.
509 * lead surrogate code _unit_, with utrie2_set32ForLeadSurrogateCodeUnit().
513 * data and the code unit is a lead surrogate, then check if a trail surrogate
516 * or UTRIE2_GET32_FROM_SUPP(); otherwise reset the lead
519 * If there is only trivial data for lead and trail surrogates, then processing
525 * Get a value from a lead surrogate code unit as stored in the trie.
536 * corresponding to a given lead surrogate.
537 * For example, for the lead surrogate U+D87E it will enumerate the values
539 * Used by data builder code that sets special lead surrogate code unit values
560 utrie2_enumForLeadSurrogate(const UTrie2 *trie, UChar32 lead,
565 * Set a value for a lead surrogate code unit.
568 * @param lead the lead surrogate code unit (U+D800..U+DBFF)
575 UChar32 lead, uint32_t value,
579 * Return a 16-bit trie value from a UTF-16 single/lead code unit (<=U+ffff).
580 * Same as UTRIE2_GET16() if c is a BMP code point except for lead surrogates,
590 * Return a 32-bit trie value from a UTF-16 single/lead code unit (<=U+ffff).
591 * Same as UTRIE2_GET32() if c is a BMP code point except for lead surrogates,
783 * lead surrogate code _units_ not code _points_.
784 * Values for lead surrogate code _points_ are indexed with this portion of the table.
785 * Length=32=0x20=0x400>>UTRIE2_SHIFT_2. (There are 1024=0x400 lead surrogates.)
795 * Length 32=0x20 for lead bytes C0..DF, regardless of UTRIE2_SHIFT_2.
858 /** Internal trie getter from a UTF-16 single/lead code unit. Returns the data index. */
861 /** Internal trie getter from a lead surrogate code point (D800..DBFF). Returns the data index. */
896 /** Internal trie getter from a UTF-16 single/lead code unit. Returns the data. */