HomeSort by relevance Sort by last modified time
    Searched refs:u_hasBinaryProperty (Results 1 - 12 of 12) sorted by null

  /frameworks/minikin/libs/minikin/
Emoji.cpp 40 return isNewEmoji(c) || u_hasBinaryProperty(c, UCHAR_EMOJI);
46 return u_hasBinaryProperty(c, UCHAR_EMOJI_MODIFIER);
64 return u_hasBinaryProperty(c, UCHAR_EMOJI_MODIFIER_BASE);
  /external/icu/icu4c/source/test/intltest/
ucdtest.cpp 237 if(!u_hasBinaryProperty(start, derivedPropsIndex[i])) {
238 dataerrln("UnicodeTest error: u_hasBinaryProperty(U+%04lx, %s)==FALSE is wrong", start, derivedPropsNames[i]);
260 if(u_hasBinaryProperty(start, derivedPropsIndex[i])) {
261 errln("UnicodeTest error: u_hasBinaryProperty(U+%04lx, %s)==TRUE is wrong\n", start, derivedPropsNames[i]);
518 assertFalse("space is not Emoji", u_hasBinaryProperty(0x20, UCHAR_EMOJI));
519 assertTrue("shooting star is Emoji", u_hasBinaryProperty(0x1F320, UCHAR_EMOJI));
525 u_hasBinaryProperty(0x1F320, UCHAR_EMOJI_PRESENTATION));
527 u_hasBinaryProperty(0x1F3FF, UCHAR_EMOJI_MODIFIER));
529 u_hasBinaryProperty(0x1F64B, UCHAR_EMOJI_MODIFIER_BASE));
rbbitst.cpp 328 u_hasBinaryProperty(c, UCHAR_GRAPHEME_EXTEND),
    [all...]
regextst.cpp     [all...]
  /bionic/libc/bionic/
wctype.cpp 41 static auto u_hasBinaryProperty = reinterpret_cast<FnT>(__find_icu_symbol("u_hasBinaryProperty"));
42 return u_hasBinaryProperty ? u_hasBinaryProperty(wc, property) : fallback(wc);
  /libcore/ojluni/src/main/native/
Character.cpp 62 return u_hasBinaryProperty(codePoint, UCHAR_ALPHABETIC);
67 return u_hasBinaryProperty(codePoint, UCHAR_IDEOGRAPHIC);
  /external/icu/icu4c/source/common/
uprops.cpp 283 u_hasBinaryProperty(UChar32 c, UProperty which) {
  /external/icu/icu4c/source/common/unicode/
uchar.h 88 * - alpha: u_isUAlphabetic(c) or u_hasBinaryProperty(c, UCHAR_ALPHABETIC)
89 * - lower: u_isULowercase(c) or u_hasBinaryProperty(c, UCHAR_LOWERCASE)
90 * - upper: u_isUUppercase(c) or u_hasBinaryProperty(c, UCHAR_UPPERCASE)
93 * - xdigit: u_isxdigit(c) or u_hasBinaryProperty(c, UCHAR_POSIX_XDIGIT)
94 * - alnum: u_hasBinaryProperty(c, UCHAR_POSIX_ALNUM)
95 * - space: u_isUWhiteSpace(c) or u_hasBinaryProperty(c, UCHAR_WHITE_SPACE)
96 * - blank: u_isblank(c) or u_hasBinaryProperty(c, UCHAR_POSIX_BLANK)
98 * - graph: u_hasBinaryProperty(c, UCHAR_POSIX_GRAPH)
99 * - print: u_hasBinaryProperty(c, UCHAR_POSIX_PRINT)
146 * These constants are used in functions like u_hasBinaryProperty to selec
    [all...]
urename.h 282 #define u_hasBinaryProperty U_ICU_ENTRY_POINT_RENAME(u_hasBinaryProperty)
    [all...]
  /external/icu/icu4c/source/i18n/
rematch.cpp     [all...]
regexcmp.cpp     [all...]
  /external/icu/icu4c/source/test/cintltst/
cucdtst.c     [all...]

Completed in 1182 milliseconds