Home
last modified time | relevance | path

Searched refs:allowedChars (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4c/source/i18n/
Duspoof_impl.cpp140 UnicodeSet allowedChars; in setAllowedLocales() local
169 addScriptChars(locale, &allowedChars, status); in setAllowedLocales()
197 allowedChars.addAll(tempSet); in setAllowedLocales()
199 allowedChars.addAll(tempSet); in setAllowedLocales()
208 tmpSet = static_cast<UnicodeSet *>(allowedChars.clone()); in setAllowedLocales()
231 void SpoofImpl::addScriptChars(const char *locale, UnicodeSet *allowedChars, UErrorCode &status) { in addScriptChars() argument
246 allowedChars->addAll(tmpSet); in addScriptChars()
Duspoof_impl.h77 void addScriptChars(const char *locale, UnicodeSet *allowedChars, UErrorCode &status);
/external/icu/icu4c/source/test/intltest/
Ditspoof.cpp556 UnicodeSet allowedChars; in testRestrictionLevel() local
559 allowedChars.addAll(*uspoof_getRecommendedUnicodeSet(&status)).add(0x303C); in testRestrictionLevel()
570 uspoof_setAllowedChars(sc, allowedChars.toUSet(), &status); in testRestrictionLevel()
587 uspoof_setAllowedChars(sc, allowedChars.toUSet(), &status); in testRestrictionLevel()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
DSpoofCheckerTest.java570 UnicodeSet allowedChars = new UnicodeSet(); in TestRestrictionLevel() local
573 allowedChars.addAll(SpoofChecker.RECOMMENDED).add(0x303c); in TestRestrictionLevel()
581 .setAllowedChars(allowedChars) in TestRestrictionLevel()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/text/
DSpoofCheckerTest.java571 UnicodeSet allowedChars = new UnicodeSet(); in TestRestrictionLevel() local
574 allowedChars.addAll(SpoofChecker.RECOMMENDED).add(0x303c); in TestRestrictionLevel()
582 .setAllowedChars(allowedChars) in TestRestrictionLevel()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java717 private void addScriptChars(ULocale locale, UnicodeSet allowedChars) { in addScriptChars() argument
723 allowedChars.addAll(tmpSet); in addScriptChars()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java677 private void addScriptChars(ULocale locale, UnicodeSet allowedChars) { in addScriptChars() argument
683 allowedChars.addAll(tmpSet); in addScriptChars()
/external/v8/benchmarks/
Dearley-boyer.js506 var allowedChars = "01234567890abcdefghijklmnopqrstuvwxyz".substring(0, radix+1);
507 if ((new RegExp("^["+allowedChars+"]*$", "i")).test(s))