Home
last modified time | relevance | path

Searched refs:normUniVer (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DStringPrep.java293 VersionInfo normUniVer = UCharacter.getUnicodeVersion(); in StringPrep() local
294 …if(normUniVer.compareTo(sprepUniVer) < 0 && /* the Unicode version of SPREP file must be less than… in StringPrep()
295normUniVer.compareTo(normCorrVer) < 0 && /* the Unicode version of the NormalizationCorrections.tx… in StringPrep()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DStringPrep.java280 VersionInfo normUniVer = UCharacter.getUnicodeVersion(); in StringPrep() local
281 …if(normUniVer.compareTo(sprepUniVer) < 0 && /* the Unicode version of SPREP file must be less than… in StringPrep()
282normUniVer.compareTo(normCorrVer) < 0 && /* the Unicode version of the NormalizationCorrections.tx… in StringPrep()
/external/icu/icu4c/source/common/
Dusprep.cpp237 int32_t normUniVer, sprepUniVer, normCorrVer; in loadData() local
276 normUniVer = (normUnicodeVersion[0] << 24) + (normUnicodeVersion[1] << 16) + in loadData()
286 …if( normUniVer < sprepUniVer && /* the Unicode version of SPREP file must be less than the Unicode… in loadData()
287normUniVer < normCorrVer && /* the Unicode version of the NormalizationCorrections.txt file should… in loadData()