Searched refs:UChar32 (Results 26 - 50 of 703) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/common/unicode/
H A Duchriter.h163 virtual UChar32 first32(void);
173 virtual UChar32 first32PostInc(void);
191 virtual UChar32 last32(void);
214 virtual UChar32 setIndex32(int32_t position);
228 virtual UChar32 current32(void) const;
259 virtual UChar32 next32(void);
269 virtual UChar32 next32PostInc(void);
298 virtual UChar32 previous32(void);
H A Duchar.h129 * For a single character, UChar32 is a simple type that can hold any code point value.
131 * @see UChar32
1889 u_hasBinaryProperty(UChar32 c, UProperty which);
1904 u_isUAlphabetic(UChar32 c);
1919 u_isULowercase(UChar32 c);
1934 u_isUUppercase(UChar32 c);
1955 u_isUWhiteSpace(UChar32 c);
1995 u_getIntPropertyValue(UChar32 c, UProperty which);
2070 u_getNumericValue(UChar32 c);
2105 u_islower(UChar32
[all...]
H A Duniset.h280 UChar32* list; // MUST be terminated with HIGH
282 UChar32* buffer; // internal buffer, may be NULL
370 UnicodeSet(UChar32 start, UChar32 end);
572 UnicodeSet& set(UChar32 start, UChar32 end);
757 virtual UBool contains(UChar32 c) const;
767 virtual UBool contains(UChar32 start, UChar32 end) const;
804 UBool containsNone(UChar32 star
[all...]
H A Dchariter.h33 * of Unicode characters. ICU uses the type UChar32 for them.
71 * UChar32 c;
160 virtual UChar32 next32PostInc(void) = 0;
220 * UChar32 c;
240 * UChar32 c;
263 * UChar32 c=it.current32();
408 virtual UChar32 first32(void) = 0;
418 virtual UChar32 first32PostInc(void);
445 virtual UChar32 last32(void) = 0;
477 virtual UChar32 setIndex3
[all...]
/external/icu/icu4c/source/i18n/
H A Dregeximp.cpp26 UChar32 CaseFoldingUTextIterator::next() {
27 UChar32 foldedC;
28 UChar32 originalC;
43 foldedC = (UChar32)fFoldLength;
74 UChar32 CaseFoldingUCharIterator::next() {
75 UChar32 foldedC;
76 UChar32 originalC;
92 foldedC = (UChar32)fFoldLength;
H A Dregexcmp.h50 UChar32 fChar;
88 UChar32 nextCharLL();
89 UChar32 peekCharLL();
102 void literalChar(UChar32 c); // Compile a literal char
115 UChar32 scanNamedChar();
134 UChar32 fLastChar; // Previous char, needed to count CR-LF
136 UChar32 fPeekChar; // Saved char, if we've scanned ahead.
206 UChar32 fLastSetLiteral; // The last single code point added to a set.
/external/icu/icu4c/source/test/intltest/
H A Dtestutil.h22 static UnicodeString &appendHex(UnicodeString &buf, UChar32 ch);
24 static UnicodeString hex(UChar32 ch);
/external/icu/icu4c/source/common/
H A Dubidi_props.c54 _enumPropertyStartsRange(const void *context, UChar32 start, UChar32 end, uint32_t value) {
64 UChar32 c, start, limit;
132 ubidi_getClass(const UBiDiProps *bdp, UChar32 c) {
138 ubidi_isMirrored(const UBiDiProps *bdp, UChar32 c) {
143 static UChar32
144 getMirror(const UBiDiProps *bdp, UChar32 c, uint16_t props) {
153 UChar32 c2;
175 U_CFUNC UChar32
176 ubidi_getMirror(const UBiDiProps *bdp, UChar32
[all...]
H A Ducase.h86 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 nex
[all...]
H A Dbrkeng.h58 virtual UBool handles(UChar32 c, int32_t breakType) const = 0;
132 virtual const LanguageBreakEngine *getEngineFor(UChar32 c, int32_t breakType) = 0;
183 virtual UBool handles(UChar32 c, int32_t breakType) const;
212 virtual void handleCharacter(UChar32 c, int32_t breakType);
260 virtual const LanguageBreakEngine *getEngineFor(UChar32 c, int32_t breakType);
273 virtual const LanguageBreakEngine *loadEngineFor(UChar32 c, int32_t breakType);
H A Dnormalizer2impl.h61 static inline UBool isHangul(UChar32 c) {
69 static inline UBool isJamoL(UChar32 c) {
72 static inline UBool isJamoV(UChar32 c) {
80 static inline int32_t decompose(UChar32 c, UChar buffer[3]) {
82 UChar32 c2=c%JAMO_T_COUNT;
98 static inline void getRawDecomposition(UChar32 c, UChar buffer[2]) {
99 UChar32 orig=c;
101 UChar32 c2=c%JAMO_T_COUNT;
143 UBool append(UChar32 c, uint8_t cc, UErrorCode &errorCode) {
168 UBool appendZeroCC(UChar32
[all...]
H A Duchar.c57 u_charType(UChar32 c) {
75 _enumTypeRange(const void *context, UChar32 start, UChar32 end, uint32_t value) {
97 u_islower(UChar32 c) {
105 u_isupper(UChar32 c) {
113 u_istitle(UChar32 c) {
121 u_isdigit(UChar32 c) {
128 u_isxdigit(UChar32 c) {
145 u_isalpha(UChar32 c) {
152 u_isUAlphabetic(UChar32
[all...]
/external/chromium_org/third_party/icu/source/common/unicode/
H A Duchar.h129 * For a single character, UChar32 is a simple type that can hold any code point value.
131 * @see UChar32
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
[all...]
H A Duniset.h276 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 star
[all...]
H A Dchariter.h33 * of Unicode characters. ICU uses the type UChar32 for them.
71 * UChar32 c;
160 virtual UChar32 next32PostInc(void) = 0;
220 * UChar32 c;
240 * UChar32 c;
263 * UChar32 c=it.current32();
402 virtual UChar32 first32(void) = 0;
412 virtual UChar32 first32PostInc(void);
439 virtual UChar32 last32(void) = 0;
471 virtual UChar32 setIndex3
[all...]
H A Dnormalizer2.h188 getDecomposition(UChar32 c, UnicodeString &decomposition) const = 0;
263 virtual UBool hasBoundaryBefore(UChar32 c) const = 0;
279 virtual UBool hasBoundaryAfter(UChar32 c) const = 0;
294 virtual UBool isInert(UChar32 c) const = 0;
392 getDecomposition(UChar32 c, UnicodeString &decomposition) const;
442 virtual UBool hasBoundaryBefore(UChar32 c) const;
452 virtual UBool hasBoundaryAfter(UChar32 c) const;
461 virtual UBool isInert(UChar32 c) const;
H A Duset.h263 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 en
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/icu/
H A DUnicodeIcu.h117 inline UChar32 foldCase(UChar32 c)
138 inline UChar32 toLower(UChar32 c)
143 inline UChar32 toUpper(UChar32 c)
156 inline UChar32 toTitleCase(UChar32 c)
161 inline bool isArabicChar(UChar32 c)
166 inline bool isAlphanumeric(UChar32
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dregexcmp.h50 UChar32 fChar;
88 UChar32 nextCharLL();
89 UChar32 peekCharLL();
102 void literalChar(UChar32 c); // Compile a literal char
106 void emitONE_CHAR(UChar32 c); // Emit a ONE_CHAR op into the compiled code,
117 UChar32 scanNamedChar();
136 UChar32 fLastChar; // Previous char, needed to count CR-LF
138 UChar32 fPeekChar; // Saved char, if we've scanned ahead.
207 UChar32 fLastSetLiteral; // The last single code point added to a set.
/external/chromium_org/third_party/icu/source/common/
H A Ducase.h80 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
[all...]
H A Dbrkeng.h58 virtual UBool handles(UChar32 c, int32_t breakType) const = 0;
132 virtual const LanguageBreakEngine *getEngineFor(UChar32 c, int32_t breakType) = 0;
183 virtual UBool handles(UChar32 c, int32_t breakType) const;
212 virtual void handleCharacter(UChar32 c, int32_t breakType);
260 virtual const LanguageBreakEngine *getEngineFor(UChar32 c, int32_t breakType);
274 virtual const LanguageBreakEngine *loadEngineFor(UChar32 c, int32_t breakType);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/android/
H A DFontCacheAndroid.cpp42 static AtomicString getFamilyNameForCharacter(UChar32 c, UScriptCode script)
72 PassRefPtr<SimpleFontData> FontCache::fallbackFontForCharacter(const FontDescription& fontDescription, UChar32 c, const SimpleFontData*)
85 UChar32 examplerChar;
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DSurrogatePairAwareTextIterator.cpp41 bool SurrogatePairAwareTextIterator::consumeSlowCase(UChar32& character, unsigned& clusterLength)
47 if (UChar32 normalized = normalizeVoicingMarks()) {
75 UChar32 SurrogatePairAwareTextIterator::normalizeVoicingMarks()
/external/icu/icu4c/source/samples/ucnv/
H A Dflagcb.h36 UChar32 codePoint,
54 UChar32 codePoint,
/external/icu/icu4c/source/tools/toolutil/
H A Dppucd.h47 UChar32 start, end;
51 UChar32 bmg, bpb;
52 UChar32 scf, slc, stc, suc;
137 UBool getRangeForAlgNames(UChar32 &start, UChar32 &end, UErrorCode &errorCode);
149 UChar32 parseCodePoint(const char *s, UErrorCode &errorCode);
150 UBool parseCodePointRange(const char *s, UChar32 &start, UChar32 &end, UErrorCode &errorCode);

Completed in 431 milliseconds

1234567891011>>