Home | History | Annotate | Download | only in i18n

Lines Matching refs:conts

1202         //UChar *conts = (UChar *)((uint8_t *)src->UCA->image + src->UCA->image->UCAConsts+sizeof(UCAConstants));
1203 UChar *conts = (UChar *)((uint8_t *)src->UCA->image + src->UCA->image->contractionUCACombos);
1210 while(*conts != 0) {
1211 /*tailoredCE = ucmpe32_get(t->mapping, *conts);*/
1212 tailoredCE = utrie_get32(t->mapping, *conts, NULL);
1216 if(uprv_cnttab_isTailored(t->contractions, tailoredCE, conts+1, status) == TRUE) {
1220 if (!needToAdd && isPrefix(tailoredCE) && *(conts+1)==0) {
1224 elm.uchars[0] = *conts;
1227 elm.prefixChars[0] = *(conts+2);
1232 if ((prefixEnt==NULL) || *(prefixEnt->prefix)!=*(conts+2)) {
1236 if(src->removeSet != NULL && uset_contains(src->removeSet, *conts)) {
1241 if (*(conts+1) != 0) { // contractions
1246 el.uchars[0] = *conts;
1247 el.uchars[1] = *(conts+1);
1248 if(*(conts+2)!=0) {
1249 el.uchars[2] = *(conts+2);
1263 el.uchars[0] = *conts;
1266 el.prefixChars[0] = *(conts+2);
1297 } else if(src->removeSet != NULL && uset_contains(src->removeSet, *conts)) {
1298 ucol_uprv_bld_copyRangeFromUCA(src, t, *conts, *conts, status);
1300 conts+=3;