/third_party/node/deps/icu-small/source/common/ |
D | emojiprops.h | 25 static UBool hasBinaryProperty(UChar32 c, UProperty which); 26 static UBool hasBinaryProperty(const char16_t *s, int32_t length, UProperty which);
|
D | emojiprops.cpp | 125 EmojiProps::hasBinaryProperty(UChar32 c, UProperty which) { in hasBinaryProperty() function in EmojiProps 163 EmojiProps::hasBinaryProperty(const char16_t *s, int32_t length, UProperty which) { in hasBinaryProperty() function in EmojiProps
|
D | uprops.cpp | 328 return EmojiProps::hasBinaryProperty(c, which); in hasEmojiProperty() 506 EmojiProps::hasBinaryProperty(s, length, which); in u_stringHasBinaryProperty()
|
/third_party/icu/icu4c/source/common/ |
D | emojiprops.h | 25 static UBool hasBinaryProperty(UChar32 c, UProperty which); 26 static UBool hasBinaryProperty(const UChar *s, int32_t length, UProperty which);
|
D | emojiprops.cpp | 125 EmojiProps::hasBinaryProperty(UChar32 c, UProperty which) { in hasBinaryProperty() function in EmojiProps 163 EmojiProps::hasBinaryProperty(const UChar *s, int32_t length, UProperty which) { in hasBinaryProperty() function in EmojiProps
|
D | uprops.cpp | 328 return EmojiProps::hasBinaryProperty(c, which); in hasEmojiProperty() 443 EmojiProps::hasBinaryProperty(s, length, which); in u_stringHasBinaryProperty()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/ |
D | UCharacterTest.java | 846 … && !UCharacter.hasBinaryProperty(ch, UProperty.FULL_COMPOSITION_EXCLUSION)) { in TestUnicodeData() 1678 …s.global.icu.impl.UCharacterUtility.isNonCharacter(c) || UCharacter.hasBinaryProperty(c, UProperty… in TestIteration() 2295 if (UCharacter.hasBinaryProperty(props[i][0], which) in TestAdditionalProperties() 2548 assertFalse("space is not Emoji", UCharacter.hasBinaryProperty(0x20, UProperty.EMOJI)); in TestEmojiProperties() 2549 … assertTrue("shooting star is Emoji", UCharacter.hasBinaryProperty(0x1F320, UProperty.EMOJI)); in TestEmojiProperties() 2554 UCharacter.hasBinaryProperty(0x1F320, UProperty.EMOJI_PRESENTATION)); in TestEmojiProperties() 2556 UCharacter.hasBinaryProperty(0x1F3FF, UProperty.EMOJI_MODIFIER)); in TestEmojiProperties() 2558 UCharacter.hasBinaryProperty(0x1F64B, UProperty.EMOJI_MODIFIER_BASE)); in TestEmojiProperties() 2560 UCharacter.hasBinaryProperty(0x2A, UProperty.EMOJI_COMPONENT)); in TestEmojiProperties() 2562 UCharacter.hasBinaryProperty(0xA9, UProperty.EXTENDED_PICTOGRAPHIC)); in TestEmojiProperties() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | EmojiProps.java | 139 public boolean hasBinaryProperty(int c, int which) { in hasBinaryProperty() method in EmojiProps 151 public boolean hasBinaryProperty(CharSequence s, int which) { in hasBinaryProperty() method in EmojiProps
|
D | UCharacterProperty.java | 352 return UCaseProps.INSTANCE.hasBinaryProperty(c, which); in contains() 364 return EmojiProps.INSTANCE.hasBinaryProperty(c, which); in contains() 573 public boolean hasBinaryProperty(int c, int which) { in hasBinaryProperty() method in UCharacterProperty
|
D | UCaseProps.java | 1501 public final boolean hasBinaryProperty(int c, int which) { in hasBinaryProperty() method in UCaseProps
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
D | UCharacterTest.java | 843 … && !UCharacter.hasBinaryProperty(ch, UProperty.FULL_COMPOSITION_EXCLUSION)) { in TestUnicodeData() 1683 …(com.ibm.icu.impl.UCharacterUtility.isNonCharacter(c) || UCharacter.hasBinaryProperty(c, UProperty… in TestIteration() 2299 if (UCharacter.hasBinaryProperty(props[i][0], which) in TestAdditionalProperties() 2552 assertFalse("space is not Emoji", UCharacter.hasBinaryProperty(0x20, UProperty.EMOJI)); in TestEmojiProperties() 2553 … assertTrue("shooting star is Emoji", UCharacter.hasBinaryProperty(0x1F320, UProperty.EMOJI)); in TestEmojiProperties() 2558 UCharacter.hasBinaryProperty(0x1F320, UProperty.EMOJI_PRESENTATION)); in TestEmojiProperties() 2560 UCharacter.hasBinaryProperty(0x1F3FF, UProperty.EMOJI_MODIFIER)); in TestEmojiProperties() 2562 UCharacter.hasBinaryProperty(0x1F64B, UProperty.EMOJI_MODIFIER_BASE)); in TestEmojiProperties() 2564 UCharacter.hasBinaryProperty(0x2A, UProperty.EMOJI_COMPONENT)); in TestEmojiProperties() 2566 UCharacter.hasBinaryProperty(0xA9, UProperty.EXTENDED_PICTOGRAPHIC)); in TestEmojiProperties() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
D | UCharacter.java | 5960 public static boolean hasBinaryProperty(int ch, int property) in hasBinaryProperty() method in UCharacter 5962 return UCharacterProperty.INSTANCE.hasBinaryProperty(ch, property); in hasBinaryProperty() 5985 public static boolean hasBinaryProperty(CharSequence s, int property) { in hasBinaryProperty() method in UCharacter 5988 return hasBinaryProperty(s.charAt(0), property); // single code point in hasBinaryProperty() 5993 return hasBinaryProperty(c, property); // single code point in hasBinaryProperty() 5999 EmojiProps.INSTANCE.hasBinaryProperty(s, property); in hasBinaryProperty() 6011 return hasBinaryProperty(ch, UProperty.ALPHABETIC); in isUAlphabetic() 6023 return hasBinaryProperty(ch, UProperty.LOWERCASE); in isULowercase() 6035 return hasBinaryProperty(ch, UProperty.UPPERCASE); in isUUppercase() 6048 return hasBinaryProperty(ch, UProperty.WHITE_SPACE); in isUWhiteSpace()
|
D | CharacterProperties.java | 50 if (UCharacter.hasBinaryProperty(c, property)) { in makeSet()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/ |
D | CharacterProperties.java | 41 if (UCharacter.hasBinaryProperty(c, property)) { in makeSet()
|
D | UCharacter.java | 5214 public static boolean hasBinaryProperty(int ch, int property) in hasBinaryProperty() method in UCharacter 5216 return UCharacterProperty.INSTANCE.hasBinaryProperty(ch, property); in hasBinaryProperty() 5227 return hasBinaryProperty(ch, UProperty.ALPHABETIC); in isUAlphabetic() 5238 return hasBinaryProperty(ch, UProperty.LOWERCASE); in isULowercase() 5249 return hasBinaryProperty(ch, UProperty.UPPERCASE); in isUUppercase() 5261 return hasBinaryProperty(ch, UProperty.WHITE_SPACE); in isUWhiteSpace()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
D | TestDeprecatedNormalizerAPI.java | 141 if (UCharacter.hasBinaryProperty(ch, UProperty.FULL_COMPOSITION_EXCLUSION)) { in TestRoundTrip()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/ |
D | TestDeprecatedNormalizerAPI.java | 144 if (UCharacter.hasBinaryProperty(ch, UProperty.FULL_COMPOSITION_EXCLUSION)) { in TestRoundTrip()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | UCharacterProperty.java | 352 return UCaseProps.INSTANCE.hasBinaryProperty(c, which); in contains() 554 public boolean hasBinaryProperty(int c, int which) { in hasBinaryProperty() method in UCharacterProperty
|
D | UCaseProps.java | 1486 public final boolean hasBinaryProperty(int c, int which) { in hasBinaryProperty() method in UCaseProps
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | RBBIRuleScanner.java | 705 boolean whiteSpace = UCharacter.hasBinaryProperty(cp, UProperty.PATTERN_WHITE_SPACE); in stripRules()
|
D | SpoofChecker.java | 1657 UCharacter.hasBinaryProperty(cp, UProperty.SOFT_DOTTED); in isIllegalCombiningDotLeadCharacterNoLookup()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RBBIRuleScanner.java | 703 boolean whiteSpace = UCharacter.hasBinaryProperty(cp, UProperty.PATTERN_WHITE_SPACE); in stripRules()
|
D | SpoofChecker.java | 1730 UCharacter.hasBinaryProperty(cp, UProperty.SOFT_DOTTED); in isIllegalCombiningDotLeadCharacterNoLookup()
|
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | RoundTripTest.java | 961 if (UCharacter.hasBinaryProperty(ch, UProperty.LOGICAL_ORDER_EXCEPTION)) return false; in is()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/ |
D | RoundTripTest.java | 976 if (UCharacter.hasBinaryProperty(ch, UProperty.LOGICAL_ORDER_EXCEPTION)) return false; in is()
|