Searched refs:resolvedNoLatn (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | uspoof_impl.cpp | 357 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/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | SpoofChecker.java | 1651 ScriptSet resolvedNoLatn = new ScriptSet(); in getRestrictionLevel() local 1652 getResolvedScriptSetWithout(input, UScript.LATIN, resolvedNoLatn); in getRestrictionLevel() 1655 if (resolvedNoLatn.get(UScript.HAN_WITH_BOPOMOFO) || resolvedNoLatn.get(UScript.JAPANESE) in getRestrictionLevel() 1656 || resolvedNoLatn.get(UScript.KOREAN)) { in getRestrictionLevel() 1661 …if (!resolvedNoLatn.isEmpty() && !resolvedNoLatn.get(UScript.CYRILLIC) && !resolvedNoLatn.get(UScr… in getRestrictionLevel() 1662 && !resolvedNoLatn.get(UScript.CHEROKEE)) { in getRestrictionLevel()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | SpoofChecker.java | 1589 ScriptSet resolvedNoLatn = new ScriptSet(); in getRestrictionLevel() local 1590 getResolvedScriptSetWithout(input, UScript.LATIN, resolvedNoLatn); in getRestrictionLevel() 1593 if (resolvedNoLatn.get(UScript.HAN_WITH_BOPOMOFO) || resolvedNoLatn.get(UScript.JAPANESE) in getRestrictionLevel() 1594 || resolvedNoLatn.get(UScript.KOREAN)) { in getRestrictionLevel() 1599 …if (!resolvedNoLatn.isEmpty() && !resolvedNoLatn.get(UScript.CYRILLIC) && !resolvedNoLatn.get(UScr… in getRestrictionLevel() 1600 && !resolvedNoLatn.get(UScript.CHEROKEE)) { in getRestrictionLevel()
|