Lines Matching refs:lead
365 UChar32 lead=m.char32At(0);
367 if(getCC(lead)!=0) {
372 (long)start, (long)lead);
377 // Insert (trail, composite) pair into compositions list for the lead character.
379 Norm *leadNorm=createNorm(lead);
394 (long)start, (long)lead, (long)trail);
702 UChar32 lead= c<=0xffff ? c : U16_LEAD(c);
703 smallFCD[lead>>8]|=(uint8_t)1<<((lead>>5)&7);
844 UChar32 lead= c<=0xffff ? c : U16_LEAD(c);
845 smallFCD[lead>>8]|=(uint8_t)1<<((lead>>5)&7);
1113 // corresponding to a lead surrogate, and set it as that surrogate's value.
1122 for(UChar lead=0xd800; lead<0xdc00; ++lead) {
1123 uint32_t maxValue=utrie2_get32(norm16Trie, lead);
1124 utrie2_enumForLeadSurrogate(norm16Trie, lead, NULL, enumRangeMaxValue, &maxValue);
1133 utrie2_set32ForLeadSurrogateCodeUnit(norm16Trie, lead, maxValue, errorCode);
1136 // Adjust supplementary minimum code points to break quick check loops at their lead surrogates.