Searched refs:allowedChars (Results 1 – 9 of 9) 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/cldr/tools/java/org/unicode/cldr/test/ |
D | CheckNumbers.java | 295 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/ |
D | itspoof.cpp | 559 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/ |
D | SpoofCheckerTest.java | 579 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/ |
D | SpoofCheckerTest.java | 576 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/ |
D | SpoofChecker.java | 704 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/ |
D | SpoofChecker.java | 747 private void addScriptChars(ULocale locale, UnicodeSet allowedChars) { in addScriptChars() argument 753 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))
|