Home
last modified time | relevance | path

Searched refs:fChecks (Results 1 – 5 of 5) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java471 int fChecks; // Bit vector of checks to perform. field in SpoofChecker.Builder
484 fChecks = ALL_CHECKS; in Builder()
496 fChecks = src.fChecks; in Builder()
528 result.fChecks = this.fChecks; in build()
618 this.fChecks = (checks & SpoofChecker.ALL_CHECKS); in setChecks()
663 fChecks &= ~CHAR_LIMIT; in setAllowedLocales()
678 fChecks |= CHAR_LIMIT; in setAllowedLocales()
734 fChecks |= CHAR_LIMIT; in setAllowedChars()
751 fChecks |= RESTRICTION_LEVEL | MIXED_NUMBERS; in setRestrictionLevel()
1108 return fChecks;
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java505 int fChecks; // Bit vector of checks to perform. field in SpoofChecker.Builder
520 fChecks = ALL_CHECKS; in Builder()
533 fChecks = src.fChecks; in Builder()
566 result.fChecks = this.fChecks; in build()
659 this.fChecks = (checks & SpoofChecker.ALL_CHECKS); in setChecks()
705 fChecks &= ~CHAR_LIMIT; in setAllowedLocales()
720 fChecks |= CHAR_LIMIT; in setAllowedLocales()
778 fChecks |= CHAR_LIMIT; in setAllowedChars()
796 fChecks |= RESTRICTION_LEVEL | MIXED_NUMBERS; in setRestrictionLevel()
1154 return fChecks;
[all …]
/external/icu/icu4c/source/i18n/
Duspoof.cpp265 This->fChecks = checks; in uspoof_setChecks()
275 return This->fChecks; in uspoof_getChecks()
284 This->fChecks |= USPOOF_RESTRICTION_LEVEL; in uspoof_setRestrictionLevel()
358 This->fChecks |= USPOOF_CHAR_LIMIT; in uspoof_setAllowedUnicodeSet()
486 if ((This->fChecks & USPOOF_CONFUSABLE) == 0) { in uspoof_areConfusableUnicodeString()
521 if ((This->fChecks & USPOOF_SINGLE_SCRIPT_CONFUSABLE) == 0) { in uspoof_areConfusableUnicodeString()
524 if ((This->fChecks & USPOOF_MIXED_SCRIPT_CONFUSABLE) == 0) { in uspoof_areConfusableUnicodeString()
527 if ((This->fChecks & USPOOF_WHOLE_SCRIPT_CONFUSABLE) == 0) { in uspoof_areConfusableUnicodeString()
556 if (0 != (This->fChecks & USPOOF_RESTRICTION_LEVEL)) { in checkImpl()
564 if (0 != (This->fChecks & USPOOF_MIXED_NUMBERS)) { in checkImpl()
[all …]
Duspoof_impl.cpp56 fChecks = USPOOF_ALL_CHECKS; in construct()
77 fMagic(0), fChecks(USPOOF_ALL_CHECKS), fSpoofData(NULL), fAllowedCharsSet(NULL) , in SpoofImpl()
83 fChecks = src.fChecks; in SpoofImpl()
189 fChecks &= ~USPOOF_CHAR_LIMIT; in setAllowedLocales()
219 fChecks |= USPOOF_CHAR_LIMIT; in setAllowedLocales()
489 fChecks = 0; in clear()
496 return fChecks | fRestrictionLevel; in toCombinedBitmask()
498 return fChecks; in toCombinedBitmask()
Duspoof_impl.h100 int32_t fChecks; // Bit vector of checks to perform. variable
131 int32_t fChecks; // Bit vector of checks that were failed. variable