/external/chromium_org/third_party/icu/source/tools/gennorm2/ |
D | n2builder.h | 59 void setCC(UChar32 c, uint8_t cc); 60 void setOneWayMapping(UChar32 c, const UnicodeString &m); 61 void setRoundTripMapping(UChar32 c, const UnicodeString &m); 62 void removeMapping(UChar32 c); 79 Norm *getNorm(UChar32 c); 80 Norm *createNorm(UChar32 c); 81 Norm *checkNormForMapping(Norm *p, UChar32 c); // check for permitted overrides 83 const Norm &getNormRef(UChar32 c) const; 84 uint8_t getCC(UChar32 c) const; 86 UChar32 combine(const Norm &norm, UChar32 trail) const; [all …]
|
/external/icu4c/tools/gennorm2/ |
D | n2builder.h | 59 void setCC(UChar32 c, uint8_t cc); 60 void setOneWayMapping(UChar32 c, const UnicodeString &m); 61 void setRoundTripMapping(UChar32 c, const UnicodeString &m); 62 void removeMapping(UChar32 c); 79 Norm *getNorm(UChar32 c); 80 Norm *createNorm(UChar32 c); 81 Norm *checkNormForMapping(Norm *p, UChar32 c); // check for permitted overrides 83 const Norm &getNormRef(UChar32 c) const; 84 uint8_t getCC(UChar32 c) const; 86 UChar32 combine(const Norm &norm, UChar32 trail) const; [all …]
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
D | uchar.h | 1742 u_hasBinaryProperty(UChar32 c, UProperty which); 1757 u_isUAlphabetic(UChar32 c); 1772 u_isULowercase(UChar32 c); 1787 u_isUUppercase(UChar32 c); 1808 u_isUWhiteSpace(UChar32 c); 1848 u_getIntPropertyValue(UChar32 c, UProperty which); 1921 u_getNumericValue(UChar32 c); 1956 u_islower(UChar32 c); 1983 u_isupper(UChar32 c); 2000 u_istitle(UChar32 c); [all …]
|
D | uniset.h | 276 UChar32* list; // MUST be terminated with HIGH 278 UChar32* buffer; // internal buffer, may be NULL 366 UnicodeSet(UChar32 start, UChar32 end); 566 UnicodeSet& set(UChar32 start, UChar32 end); 749 virtual UBool contains(UChar32 c) const; 759 virtual UBool contains(UChar32 start, UChar32 end) const; 796 UBool containsNone(UChar32 start, UChar32 end) const; 824 inline UBool containsSome(UChar32 start, UChar32 end) const; 995 int32_t findCodePoint(UChar32 c) const; 1016 int32_t indexOf(UChar32 c) const; [all …]
|
D | uset.h | 263 uset_open(UChar32 start, UChar32 end); 387 UChar32 start, UChar32 end); 526 uset_add(USet* set, UChar32 c); 553 uset_addRange(USet* set, UChar32 start, UChar32 end); 588 uset_remove(USet* set, UChar32 c); 600 uset_removeRange(USet* set, UChar32 start, UChar32 end); 643 uset_retain(USet* set, UChar32 start, UChar32 end); 763 uset_contains(const USet* set, UChar32 c); 775 uset_containsRange(const USet* set, UChar32 start, UChar32 end); 799 uset_indexOf(const USet* set, UChar32 c); [all …]
|
/external/icu4c/common/unicode/ |
D | uchar.h | 1844 u_hasBinaryProperty(UChar32 c, UProperty which); 1859 u_isUAlphabetic(UChar32 c); 1874 u_isULowercase(UChar32 c); 1889 u_isUUppercase(UChar32 c); 1910 u_isUWhiteSpace(UChar32 c); 1950 u_getIntPropertyValue(UChar32 c, UProperty which); 2025 u_getNumericValue(UChar32 c); 2060 u_islower(UChar32 c); 2087 u_isupper(UChar32 c); 2104 u_istitle(UChar32 c); [all …]
|
D | uniset.h | 277 UChar32* list; // MUST be terminated with HIGH 279 UChar32* buffer; // internal buffer, may be NULL 367 UnicodeSet(UChar32 start, UChar32 end); 569 UnicodeSet& set(UChar32 start, UChar32 end); 754 virtual UBool contains(UChar32 c) const; 764 virtual UBool contains(UChar32 start, UChar32 end) const; 801 UBool containsNone(UChar32 start, UChar32 end) const; 829 inline UBool containsSome(UChar32 start, UChar32 end) const; 1001 int32_t findCodePoint(UChar32 c) const; 1022 int32_t indexOf(UChar32 c) const; [all …]
|
D | normalizer2.h | 267 getDecomposition(UChar32 c, UnicodeString &decomposition) const = 0; 294 getRawDecomposition(UChar32 c, UnicodeString &decomposition) const; 311 virtual UChar32 312 composePair(UChar32 a, UChar32 b) const; 323 getCombiningClass(UChar32 c) const; 398 virtual UBool hasBoundaryBefore(UChar32 c) const = 0; 414 virtual UBool hasBoundaryAfter(UChar32 c) const = 0; 429 virtual UBool isInert(UChar32 c) const = 0; 530 getDecomposition(UChar32 c, UnicodeString &decomposition) const; 544 getRawDecomposition(UChar32 c, UnicodeString &decomposition) const; [all …]
|
D | uset.h | 267 uset_open(UChar32 start, UChar32 end); 391 UChar32 start, UChar32 end); 530 uset_add(USet* set, UChar32 c); 557 uset_addRange(USet* set, UChar32 start, UChar32 end); 592 uset_remove(USet* set, UChar32 c); 604 uset_removeRange(USet* set, UChar32 start, UChar32 end); 647 uset_retain(USet* set, UChar32 start, UChar32 end); 767 uset_contains(const USet* set, UChar32 c); 779 uset_containsRange(const USet* set, UChar32 start, UChar32 end); 803 uset_indexOf(const USet* set, UChar32 c); [all …]
|
/external/chromium_org/third_party/icu/source/test/perf/charperf/ |
D | charperf.h | 19 typedef void (*CharPerfFn)(UChar32 ch); 27 for (UChar32 i = MIN_; i < MAX_; i ++) { in call() 36 CharPerfFunction(CharPerfFn func, UChar32 min, UChar32 max) in CharPerfFunction() 45 UChar32 MIN_; 46 UChar32 MAX_; 115 UChar32 MIN_; 116 UChar32 MAX_; 119 inline void isAlpha(UChar32 ch) in isAlpha() 124 inline void isUpper(UChar32 ch) in isUpper() 129 inline void isLower(UChar32 ch) in isLower() [all …]
|
/external/icu4c/test/perf/charperf/ |
D | charperf.h | 19 typedef void (*CharPerfFn)(UChar32 ch); 27 for (UChar32 i = MIN_; i < MAX_; i ++) { in call() 36 CharPerfFunction(CharPerfFn func, UChar32 min, UChar32 max) in CharPerfFunction() 45 UChar32 MIN_; 46 UChar32 MAX_; 115 UChar32 MIN_; 116 UChar32 MAX_; 119 inline void isAlpha(UChar32 ch) in isAlpha() 124 inline void isUpper(UChar32 ch) in isUpper() 129 inline void isLower(UChar32 ch) in isLower() [all …]
|
/external/chromium_org/third_party/icu/source/common/ |
D | ucase.h | 80 U_CAPI UChar32 U_EXPORT2 81 ucase_tolower(const UCaseProps *csp, UChar32 c); 83 U_CAPI UChar32 U_EXPORT2 84 ucase_toupper(const UCaseProps *csp, UChar32 c); 86 U_CAPI UChar32 U_EXPORT2 87 ucase_totitle(const UCaseProps *csp, UChar32 c); 89 U_CAPI UChar32 U_EXPORT2 90 ucase_fold(const UCaseProps *csp, UChar32 c, uint32_t options); 102 ucase_addCaseClosure(const UCaseProps *csp, UChar32 c, const USetAdder *sa); 121 ucase_getType(const UCaseProps *csp, UChar32 c); [all …]
|
D | uniset.cpp | 70 static inline UChar32 pinCodePoint(UChar32& c) { in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 153 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity); in UnicodeSet() 170 UnicodeSet::UnicodeSet(UChar32 start, UChar32 end) : in UnicodeSet() 180 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity); in UnicodeSet() 207 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity); in UnicodeSet() 231 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity); in UnicodeSet() 235 uprv_memcpy(list, o.list, len*sizeof(UChar32)); in UnicodeSet() 287 uprv_memcpy(list, o.list, len*sizeof(UChar32)); in operator =() 400 UBool UnicodeSet::contains(UChar32 c) const { in contains() 430 int32_t UnicodeSet::findCodePoint(UChar32 c) const { in findCodePoint() [all …]
|
D | uchar.c | 56 u_charType(UChar32 c) { in u_charType() 74 _enumTypeRange(const void *context, UChar32 start, UChar32 end, uint32_t value) { in _enumTypeRange() 96 u_islower(UChar32 c) { in u_islower() 104 u_isupper(UChar32 c) { in u_isupper() 112 u_istitle(UChar32 c) { in u_istitle() 120 u_isdigit(UChar32 c) { in u_isdigit() 127 u_isxdigit(UChar32 c) { in u_isxdigit() 144 u_isalpha(UChar32 c) { in u_isalpha() 151 u_isUAlphabetic(UChar32 c) { in u_isUAlphabetic() 157 u_isalnum(UChar32 c) { in u_isalnum() [all …]
|
D | uprops.cpp | 48 typedef UBool BinaryPropertyContains(const BinaryProperty &prop, UChar32 c, UProperty which); 56 static UBool defaultContains(const BinaryProperty &prop, UChar32 c, UProperty /*which*/) { in defaultContains() 61 static UBool caseBinaryPropertyContains(const BinaryProperty &/*prop*/, UChar32 c, UProperty which)… in caseBinaryPropertyContains() 65 static UBool isBidiControl(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isBidiControl() 69 static UBool isMirrored(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isMirrored() 73 static UBool isJoinControl(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isJoinControl() 78 static UBool hasFullCompositionExclusion(const BinaryProperty &, UChar32, UProperty) { in hasFullCompositionExclusion() argument 82 static UBool hasFullCompositionExclusion(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*whi… in hasFullCompositionExclusion() 92 static UBool isNormInert(const BinaryProperty &, UChar32, UProperty) { in isNormInert() argument 96 static UBool isNormInert(const BinaryProperty &/*prop*/, UChar32 c, UProperty which) { in isNormInert() [all …]
|
D | normalizer2impl.h | 56 static inline UBool isHangul(UChar32 c) { in isHangul() 64 static inline UBool isJamoL(UChar32 c) { in isJamoL() 67 static inline UBool isJamoV(UChar32 c) { in isJamoV() 75 static inline int32_t decompose(UChar32 c, UChar buffer[3]) { in decompose() 77 UChar32 c2=c%JAMO_T_COUNT; in decompose() 120 UBool append(UChar32 c, uint8_t cc, UErrorCode &errorCode) { in append() 145 UBool appendZeroCC(UChar32 c, UErrorCode &errorCode); 168 UBool appendSupplementary(UChar32 c, uint8_t cc, UErrorCode &errorCode); 169 void insert(UChar32 c, uint8_t cc); 170 static void writeCodePoint(UChar *p, UChar32 c) { in writeCodePoint() [all …]
|
D | ubidi_props.c | 54 _enumPropertyStartsRange(const void *context, UChar32 start, UChar32 end, uint32_t value) { in _enumPropertyStartsRange() 64 UChar32 c, start, limit; in ubidi_addPropertyStarts() 130 ubidi_getClass(const UBiDiProps *bdp, UChar32 c) { in ubidi_getClass() 136 ubidi_isMirrored(const UBiDiProps *bdp, UChar32 c) { in ubidi_isMirrored() 141 U_CFUNC UChar32 142 ubidi_getMirror(const UBiDiProps *bdp, UChar32 c) { in ubidi_getMirror() 152 UChar32 c2; in ubidi_getMirror() 175 ubidi_isBidiControl(const UBiDiProps *bdp, UChar32 c) { in ubidi_isBidiControl() 181 ubidi_isJoinControl(const UBiDiProps *bdp, UChar32 c) { in ubidi_isJoinControl() 187 ubidi_getJoiningType(const UBiDiProps *bdp, UChar32 c) { in ubidi_getJoiningType() [all …]
|
/external/icu4c/common/ |
D | ucase.h | 86 U_CAPI UChar32 U_EXPORT2 87 ucase_tolower(const UCaseProps *csp, UChar32 c); 89 U_CAPI UChar32 U_EXPORT2 90 ucase_toupper(const UCaseProps *csp, UChar32 c); 92 U_CAPI UChar32 U_EXPORT2 93 ucase_totitle(const UCaseProps *csp, UChar32 c); 95 U_CAPI UChar32 U_EXPORT2 96 ucase_fold(const UCaseProps *csp, UChar32 c, uint32_t options); 108 ucase_addCaseClosure(const UCaseProps *csp, UChar32 c, const USetAdder *sa); 139 UChar32 next(UnicodeString &full); [all …]
|
D | normalizer2impl.h | 57 static inline UBool isHangul(UChar32 c) { in isHangul() 65 static inline UBool isJamoL(UChar32 c) { in isJamoL() 68 static inline UBool isJamoV(UChar32 c) { in isJamoV() 76 static inline int32_t decompose(UChar32 c, UChar buffer[3]) { in decompose() 78 UChar32 c2=c%JAMO_T_COUNT; in decompose() 94 static inline void getRawDecomposition(UChar32 c, UChar buffer[2]) { in getRawDecomposition() 95 UChar32 orig=c; in getRawDecomposition() 97 UChar32 c2=c%JAMO_T_COUNT; in getRawDecomposition() 139 UBool append(UChar32 c, uint8_t cc, UErrorCode &errorCode) { in append() 164 UBool appendZeroCC(UChar32 c, UErrorCode &errorCode); [all …]
|
D | uniset.cpp | 72 static inline UChar32 pinCodePoint(UChar32& c) { in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 155 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity); in UnicodeSet() 172 UnicodeSet::UnicodeSet(UChar32 start, UChar32 end) : in UnicodeSet() 182 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity); in UnicodeSet() 209 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity); in UnicodeSet() 233 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity); in UnicodeSet() 237 uprv_memcpy(list, o.list, len*sizeof(UChar32)); in UnicodeSet() 289 uprv_memcpy(list, o.list, len*sizeof(UChar32)); in operator =() 402 UBool UnicodeSet::contains(UChar32 c) const { in contains() 432 int32_t UnicodeSet::findCodePoint(UChar32 c) const { in findCodePoint() [all …]
|
D | uchar.c | 57 u_charType(UChar32 c) { in u_charType() 75 _enumTypeRange(const void *context, UChar32 start, UChar32 end, uint32_t value) { in _enumTypeRange() 97 u_islower(UChar32 c) { in u_islower() 105 u_isupper(UChar32 c) { in u_isupper() 113 u_istitle(UChar32 c) { in u_istitle() 121 u_isdigit(UChar32 c) { in u_isdigit() 128 u_isxdigit(UChar32 c) { in u_isxdigit() 145 u_isalpha(UChar32 c) { in u_isalpha() 152 u_isUAlphabetic(UChar32 c) { in u_isUAlphabetic() 158 u_isalnum(UChar32 c) { in u_isalnum() [all …]
|
D | ubidi_props.c | 54 _enumPropertyStartsRange(const void *context, UChar32 start, UChar32 end, uint32_t value) { in _enumPropertyStartsRange() 64 UChar32 c, start, limit; in ubidi_addPropertyStarts() 130 ubidi_getClass(const UBiDiProps *bdp, UChar32 c) { in ubidi_getClass() 136 ubidi_isMirrored(const UBiDiProps *bdp, UChar32 c) { in ubidi_isMirrored() 141 U_CFUNC UChar32 142 ubidi_getMirror(const UBiDiProps *bdp, UChar32 c) { in ubidi_getMirror() 152 UChar32 c2; in ubidi_getMirror() 175 ubidi_isBidiControl(const UBiDiProps *bdp, UChar32 c) { in ubidi_isBidiControl() 181 ubidi_isJoinControl(const UBiDiProps *bdp, UChar32 c) { in ubidi_isJoinControl() 187 ubidi_getJoiningType(const UBiDiProps *bdp, UChar32 c) { in ubidi_getJoiningType() [all …]
|
D | uprops.cpp | 48 typedef UBool BinaryPropertyContains(const BinaryProperty &prop, UChar32 c, UProperty which); 56 static UBool defaultContains(const BinaryProperty &prop, UChar32 c, UProperty /*which*/) { in defaultContains() 61 static UBool caseBinaryPropertyContains(const BinaryProperty &/*prop*/, UChar32 c, UProperty which)… in caseBinaryPropertyContains() 65 static UBool isBidiControl(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isBidiControl() 69 static UBool isMirrored(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isMirrored() 73 static UBool isJoinControl(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isJoinControl() 78 static UBool hasFullCompositionExclusion(const BinaryProperty &, UChar32, UProperty) { in hasFullCompositionExclusion() argument 82 static UBool hasFullCompositionExclusion(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*whi… in hasFullCompositionExclusion() 92 static UBool isNormInert(const BinaryProperty &, UChar32, UProperty) { in isNormInert() argument 96 static UBool isNormInert(const BinaryProperty &/*prop*/, UChar32 c, UProperty which) { in isNormInert() [all …]
|
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/icu/ |
D | UnicodeIcu.h | 121 inline UChar32 foldCase(UChar32 c) in foldCase() 142 inline UChar32 toLower(UChar32 c) in toLower() 147 inline UChar32 toUpper(UChar32 c) in toUpper() 160 inline UChar32 toTitleCase(UChar32 c) in toTitleCase() 165 inline bool isArabicChar(UChar32 c) in isArabicChar() 170 inline bool isAlphanumeric(UChar32 c) in isAlphanumeric() 175 inline bool isSeparatorSpace(UChar32 c) in isSeparatorSpace() 180 inline bool isPrintableChar(UChar32 c) in isPrintableChar() 185 inline bool isPunct(UChar32 c) in isPunct() 190 inline bool hasLineBreakingPropertyComplexContext(UChar32 c) in hasLineBreakingPropertyComplexContext() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSUnicodeRangeValue.h | 36 static PassRefPtr<CSSUnicodeRangeValue> create(UChar32 from, UChar32 to) in create() 41 UChar32 from() const { return m_from; } in from() 42 UChar32 to() const { return m_to; } in to() 49 CSSUnicodeRangeValue(UChar32 from, UChar32 to) in CSSUnicodeRangeValue() 56 UChar32 m_from; 57 UChar32 m_to;
|