Lines Matching refs:unfold
39 const uint16_t *unfold; member
362 if(ucase_props_singleton.unfold==NULL || s==NULL) { in ucase_addStringCaseClosure()
376 const uint16_t *unfold=ucase_props_singleton.unfold; in ucase_addStringCaseClosure() local
377 unfoldRows=unfold[UCASE_UNFOLD_ROWS]; in ucase_addStringCaseClosure()
378 unfoldRowWidth=unfold[UCASE_UNFOLD_ROW_WIDTH]; in ucase_addStringCaseClosure()
379 unfoldStringWidth=unfold[UCASE_UNFOLD_STRING_WIDTH]; in ucase_addStringCaseClosure()
380 unfold+=unfoldRowWidth; in ucase_addStringCaseClosure()
392 const UChar *p=reinterpret_cast<const UChar *>(unfold+(i*unfoldRowWidth)); in ucase_addStringCaseClosure()
418 : unfold(reinterpret_cast<const UChar *>(ucase_props_singleton.unfold)), in FullCaseFoldingIterator()
419 unfoldRows(unfold[UCASE_UNFOLD_ROWS]), in FullCaseFoldingIterator()
420 unfoldRowWidth(unfold[UCASE_UNFOLD_ROW_WIDTH]), in FullCaseFoldingIterator()
421 unfoldStringWidth(unfold[UCASE_UNFOLD_STRING_WIDTH]), in FullCaseFoldingIterator()
424 unfold+=unfoldRowWidth; in FullCaseFoldingIterator()
430 const UChar *p=unfold+(currentRow*unfoldRowWidth); in next()