Searched refs:allowedChars (Results 1 – 8 of 8) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | uspoof_impl.cpp | 140 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()
|
D | uspoof_impl.h | 77 void addScriptChars(const char *locale, UnicodeSet *allowedChars, UErrorCode &status);
|
/external/icu/icu4c/source/test/intltest/ |
D | itspoof.cpp | 556 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/ |
D | SpoofCheckerTest.java | 570 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/ |
D | SpoofCheckerTest.java | 571 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/ |
D | SpoofChecker.java | 717 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/ |
D | SpoofChecker.java | 677 private void addScriptChars(ULocale locale, UnicodeSet allowedChars) { in addScriptChars() argument 683 allowedChars.addAll(tmpSet); in addScriptChars()
|
/external/v8/benchmarks/ |
D | earley-boyer.js | 506 var allowedChars = "01234567890abcdefghijklmnopqrstuvwxyz".substring(0, radix+1); 507 if ((new RegExp("^["+allowedChars+"]*$", "i")).test(s))
|