Lines Matching refs:flags
94 /* modularization flags, see gennorm.h (default to "store everything") */
195 /* reset all "have seen" flags */
308 * Insert an entry into combiningCPs[] for the new code point code with its flags.
309 * The flags indicate if code combines forward, backward, or both.
317 * If it is found and already is in the right section (old flags==new flags)
319 * If it is found but the flags are different, then remove it,
320 * union the old and new flags, and reinsert it into its correct section.
326 addCombiningCP(uint32_t code, uint8_t flags) {
330 newEntry=code|((uint32_t)flags<<24);
340 /* combine the flags, remove the old entry from the old place, and insert the new one */
363 flags=(uint8_t)(newEntry>>24);
364 if(flags==1) {
367 } else if(flags==3) {
369 } else /* flags==2 */ {
845 /* ignore compatibility decomposition: unset the KC/KD flags */
848 /* set the KC/KD flags to the same values as the C/D flags */
852 /* ignore composition data: unset the C/KC flags */
855 /* set the C/KC flags to the same values as the D/KD flags */
897 * The quick check flags are parsed, except for Hangul.
1072 /* verify that code has a decomposition if and only if the quick check flags say "no" on NF(K)D */
1201 /* reset the 32-bit word and set the quick check flags */
1565 /* see unormimp.h for details on NF*C Skippable flags */