Home | History | Annotate | Download | only in i18n

Lines Matching refs:bit

32      * Options bit 0: Perform the FCD check on the input text and deliver normalized text.
36 * Options bit 1: Numeric collation.
53 * Options bits 6..4: The 3-bit maxVariable value bit field is shifted by this value.
56 /** maxVariable options bit mask before shifting. */
58 /** Options bit 7: Reserved/unused/0. */
60 * Options bit 8: Sort uppercase first if caseLevel or caseFirst is on.
64 * Options bit 9: Keep the case bits in the tertiary weight (they trump other tertiary values)
73 * Options bit mask for caseFirst and upperFirst, before shifting.
78 * Options bit 10: Insert the case level between the secondary and tertiary levels.
82 * Options bit 11: Compare secondary weights backwards. ("French secondary")
86 * Options bits 15..12: The 4-bit strength value bit field is shifted by this value.
87 * It is the top used bit field in the options. (No need to mask after shifting.)
90 /** Strength options bit mask before shifting. */
134 /** Sets the options bit for an on/off attribute. */
135 void setFlag(int32_t bit, UColAttributeValue value,
138 UColAttributeValue getFlag(int32_t bit) const {
139 return ((options & bit) != 0) ? UCOL_ON : UCOL_OFF;