Lines Matching refs:decomp
134 UnicodeString decomp; in is() local
136 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec); in is()
140 for (int i = 0; i < decomp.length(); ++i) { // don't worry about surrogates in is()
141 switch (getType(decomp.charAt(i))) { in is()
142 case 0: t = getType(decomp.charAt(i+1)); in is()
145 case 1: t = getType(decomp.charAt(i-1)); in is()
148 case 2: t = getType(decomp.charAt(i-1)); in is()
180 UnicodeString decomp; in is() local
182 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec); in is()
191 for (int32_t i = 0; i < decomp.length(); ++i) { in is()
192 UChar c = decomp.charAt(i); in is()
210 for (int32_t i = 0; i < decomp.length(); ++i) { in is()
211 UChar c = decomp.charAt(i); in is()