Home
last modified time | relevance | path

Searched refs:allowedChars (Results 1 – 9 of 9) 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/cldr/tools/java/org/unicode/cldr/test/
DCheckNumbers.java295 UnicodeSet allowedChars = null; in findUnquotedChars() local
298 allowedChars = new UnicodeSet("[0-9]"); in findUnquotedChars()
300 allowedChars = new UnicodeSet("[0-9#@.,E+]"); in findUnquotedChars()
319 chars.removeAll(allowedChars); in findUnquotedChars()
/external/icu/icu4c/source/test/intltest/
Ditspoof.cpp559 UnicodeSet allowedChars; in testRestrictionLevel() local
562 allowedChars.addAll(*uspoof_getRecommendedUnicodeSet(&status)).add(0x303C); in testRestrictionLevel()
573 uspoof_setAllowedChars(sc, allowedChars.toUSet(), &status); in testRestrictionLevel()
590 uspoof_setAllowedChars(sc, allowedChars.toUSet(), &status); in testRestrictionLevel()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/text/
DSpoofCheckerTest.java579 UnicodeSet allowedChars = new UnicodeSet(); in TestRestrictionLevel() local
582 allowedChars.addAll(SpoofChecker.RECOMMENDED).add(0x303c); in TestRestrictionLevel()
590 .setAllowedChars(allowedChars) in TestRestrictionLevel()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
DSpoofCheckerTest.java576 UnicodeSet allowedChars = new UnicodeSet(); in TestRestrictionLevel() local
579 allowedChars.addAll(SpoofChecker.RECOMMENDED).add(0x303c); in TestRestrictionLevel()
587 .setAllowedChars(allowedChars) in TestRestrictionLevel()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java704 private void addScriptChars(ULocale locale, UnicodeSet allowedChars) { in addScriptChars() argument
710 allowedChars.addAll(tmpSet); in addScriptChars()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java747 private void addScriptChars(ULocale locale, UnicodeSet allowedChars) { in addScriptChars() argument
753 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))