Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Duspoof_impl.cpp357 ScriptSet resolvedNoLatn; in getRestrictionLevel() local
358 getResolvedScriptSetWithout(input, USCRIPT_LATIN, resolvedNoLatn, status); in getRestrictionLevel()
362 if (resolvedNoLatn.test(USCRIPT_HAN_WITH_BOPOMOFO, status) in getRestrictionLevel()
363 || resolvedNoLatn.test(USCRIPT_JAPANESE, status) in getRestrictionLevel()
364 || resolvedNoLatn.test(USCRIPT_KOREAN, status)) { in getRestrictionLevel()
369 if (!resolvedNoLatn.isEmpty() in getRestrictionLevel()
370 && !resolvedNoLatn.test(USCRIPT_CYRILLIC, status) in getRestrictionLevel()
371 && !resolvedNoLatn.test(USCRIPT_GREEK, status) in getRestrictionLevel()
372 && !resolvedNoLatn.test(USCRIPT_CHEROKEE, status)) { in getRestrictionLevel()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java1618 ScriptSet resolvedNoLatn = new ScriptSet(); in getRestrictionLevel() local
1619 getResolvedScriptSetWithout(input, UScript.LATIN, resolvedNoLatn); in getRestrictionLevel()
1622 if (resolvedNoLatn.get(UScript.HAN_WITH_BOPOMOFO) || resolvedNoLatn.get(UScript.JAPANESE) in getRestrictionLevel()
1623 || resolvedNoLatn.get(UScript.KOREAN)) { in getRestrictionLevel()
1628 …if (!resolvedNoLatn.isEmpty() && !resolvedNoLatn.get(UScript.CYRILLIC) && !resolvedNoLatn.get(UScr… in getRestrictionLevel()
1629 && !resolvedNoLatn.get(UScript.CHEROKEE)) { in getRestrictionLevel()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java1684 ScriptSet resolvedNoLatn = new ScriptSet(); in getRestrictionLevel() local
1685 getResolvedScriptSetWithout(input, UScript.LATIN, resolvedNoLatn); in getRestrictionLevel()
1688 if (resolvedNoLatn.get(UScript.HAN_WITH_BOPOMOFO) || resolvedNoLatn.get(UScript.JAPANESE) in getRestrictionLevel()
1689 || resolvedNoLatn.get(UScript.KOREAN)) { in getRestrictionLevel()
1694 …if (!resolvedNoLatn.isEmpty() && !resolvedNoLatn.get(UScript.CYRILLIC) && !resolvedNoLatn.get(UScr… in getRestrictionLevel()
1695 && !resolvedNoLatn.get(UScript.CHEROKEE)) { in getRestrictionLevel()