Home
last modified time | relevance | path

Searched refs:targetChars (Results 1 – 2 of 2) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/tool/
DMakeTransliterator.java498 static UnicodeSet targetChars = new UnicodeSet(); field in MakeTransliterator
514 targetChars.clear().addAll(zappedTarget); // in distance()
516 if (targetChars.equals(targetCoreChars)) { in distance()
519 targetChars.removeAll(short_vowels); in distance()
521 if (targetChars.equals(targetCoreChars)) { in distance()
525 targetChars.removeAll(vowels); in distance()
527 if (targetChars.equals(targetCoreChars)) { in distance()
531 tempDiff.clear().addAll(targetChars).removeAll(targetCoreChars); in distance()
533 tempDiff.clear().addAll(targetCoreChars).removeAll(targetChars); in distance()
/external/icu/icu4c/source/common/
Ducnv2022.cpp439 char *targetChars = (char *)*target; in fromUWriteUInt8() local
440 ucnv_fromUWriteBytes(cnv, bytes, length, &targetChars, targetLimit, in fromUWriteUInt8()
442 *target = (uint8_t*)targetChars; in fromUWriteUInt8()