Searched refs:fAllowedCharsSet (Results 1 – 5 of 5) sorted by relevance
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | SpoofChecker.java | 473 …final UnicodeSet fAllowedCharsSet = new UnicodeSet(0, 0x10ffff); // The UnicodeSet of allowed char… field in SpoofChecker.Builder 501 fAllowedCharsSet.set(src.fAllowedCharsSet); in Builder() 530 result.fAllowedCharsSet = (UnicodeSet) (this.fAllowedCharsSet.clone()); in build() 531 result.fAllowedCharsSet.freeze(); in build() 650 fAllowedCharsSet.clear(); in setAllowedLocales() 655 addScriptChars(locale, fAllowedCharsSet); in setAllowedLocales() 662 fAllowedCharsSet.add(0, 0x10ffff); in setAllowedLocales() 671 fAllowedCharsSet.addAll(tempSet); in setAllowedLocales() 673 fAllowedCharsSet.addAll(tempSet); in setAllowedLocales() 732 fAllowedCharsSet.set(chars); in setAllowedChars() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | SpoofChecker.java | 507 …final UnicodeSet fAllowedCharsSet = new UnicodeSet(0, 0x10ffff); // The UnicodeSet of allowed char… field in SpoofChecker.Builder 538 fAllowedCharsSet.set(src.fAllowedCharsSet); in Builder() 568 result.fAllowedCharsSet = (UnicodeSet) (this.fAllowedCharsSet.clone()); in build() 569 result.fAllowedCharsSet.freeze(); in build() 692 fAllowedCharsSet.clear(); in setAllowedLocales() 697 addScriptChars(locale, fAllowedCharsSet); in setAllowedLocales() 704 fAllowedCharsSet.add(0, 0x10ffff); in setAllowedLocales() 713 fAllowedCharsSet.addAll(tempSet); in setAllowedLocales() 715 fAllowedCharsSet.addAll(tempSet); in setAllowedLocales() 776 fAllowedCharsSet.set(chars); in setAllowedChars() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | uspoof_impl.cpp | 58 fAllowedCharsSet = NULL; in construct() 65 fAllowedCharsSet = allowedCharsSet; in construct() 67 if (fAllowedCharsSet == NULL || fAllowedLocales == NULL) { in construct() 77 fMagic(0), fChecks(USPOOF_ALL_CHECKS), fSpoofData(NULL), fAllowedCharsSet(NULL) , in SpoofImpl() 87 fAllowedCharsSet = static_cast<const UnicodeSet *>(src.fAllowedCharsSet->clone()); in SpoofImpl() 89 if (fAllowedCharsSet == NULL || fAllowedLocales == NULL) { in SpoofImpl() 101 delete fAllowedCharsSet; in ~SpoofImpl() 187 delete fAllowedCharsSet; in setAllowedLocales() 188 fAllowedCharsSet = tmpSet; in setAllowedLocales() 217 delete fAllowedCharsSet; in setAllowedLocales() [all …]
|
D | uspoof.cpp | 329 return This->fAllowedCharsSet; in uspoof_getAllowedUnicodeSet() 356 delete This->fAllowedCharsSet; in uspoof_setAllowedUnicodeSet() 357 This->fAllowedCharsSet = clonedSet; in uspoof_setAllowedUnicodeSet() 588 if (!This->fAllowedCharsSet->contains(c)) { in checkImpl()
|
D | uspoof_impl.h | 104 const UnicodeSet *fAllowedCharsSet; // The UnicodeSet of allowed characters. variable
|