HomeSort by relevance Sort by last modified time
    Searched refs:UChar32 (Results 101 - 125 of 417) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/icu4c/i18n/
bocsu.h 158 u_writeIdenticalLevelRunTwoChars(UChar32 first, UChar32 second, uint8_t *p);
casetrn.cpp 32 U_CFUNC UChar32 U_CALLCONV
39 UChar32 c;
151 UChar32 c;
bocsu.cpp 103 UChar32 prev=0;
128 UChar32 c;
138 u_writeIdenticalLevelRunTwoChars(UChar32 first, UChar32 second, uint8_t *p) {
regextxt.cpp 20 UChar32 c;
  /external/webkit/Source/JavaScriptCore/wtf/unicode/wince/
UnicodeWinCE.h 144 UChar mirroredChar(UChar32);
145 unsigned char combiningClass(UChar32);
146 DecompositionType decompositionType(UChar32);
147 Direction direction(UChar32);
148 inline bool isArabicChar(UChar32 c)
153 inline bool hasLineBreakingPropertyComplexContext(UChar32)
169 inline UChar32 surrogateToUcs4(UChar high, UChar low)
171 return (UChar32(high) << 10) + low - 0x35fdc00;
  /external/webkit/Source/WebCore/platform/text/
TextBoundaries.cpp 43 UChar32 ch;
55 UChar32 ch;
  /external/chromium/base/third_party/icu/
icu_utf.h 24 typedef uint32 UChar32;
32 * (take or) return single code points (UChar32).
45 * @see UChar32
172 UChar32 utf8_nextCharSafeBody(const uint8 *s, int32 *pi, int32 length, UChar32 c, UBool strict);
188 * @param c output UChar32 variable, set to <0 in case of an error
297 (((base_icu::UChar32)(lead)<<10UL)+(base_icu::UChar32)(trail)-CBU16_SURROGATE_OFFSET)
350 * @param c output UChar32 variable
  /external/icu4c/common/unicode/
normlzr.h 67 * At any time, next() returns the next normalized code point (UChar32),
69 * previous() returns the previous normalized code point (UChar32),
457 UChar32 current(void);
467 UChar32 first(void);
477 UChar32 last(void);
493 UChar32 next(void);
509 UChar32 previous(void);
uscript.h 451 * @param codepoint UChar32 codepoint
457 uscript_getScript(UChar32 codepoint, UErrorCode *err);
476 uscript_hasScript(UChar32 c, UScriptCode sc);
510 uscript_getScriptExtensions(UChar32 c,
  /external/webkit/Source/WebCore/html/parser/
HTMLEntityParser.cpp 48 inline UChar adjustEntity(UChar32 value)
55 inline UChar32 legalEntityFor(UChar32 value)
65 inline bool convertToUTF16(UChar32 value, Vector<UChar, 16>& decodedEntity)
117 UChar32 result = 0;
262 UChar32 entityValue = search.currentValue();
  /external/icu4c/common/
uiter.cpp 51 static UChar32 U_CALLCONV
152 static UChar32 U_CALLCONV
161 static UChar32 U_CALLCONV
170 static UChar32 U_CALLCONV
242 static inline UChar32
248 static UChar32 U_CALLCONV
259 static UChar32 U_CALLCONV
271 static UChar32 U_CALLCONV
409 static UChar32 U_CALLCONV
411 UChar32 c
    [all...]
normalizer2impl.cpp 70 UBool ReorderingBuffer::appendSupplementary(UChar32 c, uint8_t cc, UErrorCode &errorCode) {
110 UChar32 c;
127 UBool ReorderingBuffer::appendZeroCC(UChar32 c, UErrorCode &errorCode) {
216 UChar32 c=*--codePointStart;
231 void ReorderingBuffer::insert(UChar32 c, uint8_t cc) {
250 void addToStartSet(UChar32 origin, UChar32 decompLead, UErrorCode &errorCode);
346 UChar32 c;
363 enumPropertyStartsRange(const void *context, UChar32 start, UChar32 /*end*/, uint32_t /*value*/)
    [all...]
utrie2.h 140 utrie2_get32(const UTrie2 *trie, UChar32 c);
169 UTrie2EnumRange(const void *context, UChar32 start, UChar32 end, uint32_t value);
250 utrie2_set32(UTrie2 *trie, UChar32 c, uint32_t value, UErrorCode *pErrorCode);
267 UChar32 start, UChar32 end,
387 * @param c (UChar32, in) the input code point
397 * @param c (UChar32, in) the input code point
403 * UTF-16: Get the next code point (UChar32 c, out), post-increment src,
409 * @param c (UChar32, out) variable for the code poin
    [all...]
patternprops.cpp 117 PatternProps::isSyntax(UChar32 c) {
135 PatternProps::isSyntaxOrWhiteSpace(UChar32 c) {
153 PatternProps::isWhiteSpace(UChar32 c) {
ucnv_bld.h 139 UChar32 codePoint,
197 UChar32 fromUChar32;
226 UChar32 preFromUFirstCP; /* >=0: partial match */
unisetspan.h 73 inline UBool contains(UChar32 c) const;
94 void addToSpanNotSet(UChar32 c);
149 UBool UnicodeSetStringSpan::contains(UChar32 c) const {
appendable.cpp 24 Appendable::appendCodePoint(UChar32 c) {
unifilt.cpp 44 UChar32 c;
utrie2_impl.h 151 UChar32 highStart;
  /external/webkit/Source/JavaScriptCore/icu/unicode/
utf8.h 75 U_INTERNAL UChar32 U_EXPORT2
76 utf8_nextCharSafeBody(const uint8_t *s, int32_t *pi, int32_t length, UChar32 c, UBool strict);
83 utf8_appendCharSafeBody(uint8_t *s, int32_t i, int32_t length, UChar32 c, UBool *pIsError);
89 U_INTERNAL UChar32 U_EXPORT2
90 utf8_prevCharSafeBody(const uint8_t *s, int32_t start, int32_t *pi, UChar32 c, UBool strict);
162 * @param c output UChar32 variable
186 * @param c output UChar32 variable, set to <0 in case of an error
211 * @param c output UChar32 variable
248 * @param c output UChar32 variable, set to <0 in case of an error
454 * @param c output UChar32 variabl
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/unicode/brew/
UnicodeBrew.h 133 inline bool isArabicChar(UChar32 c)
153 inline bool hasLineBreakingPropertyComplexContext(UChar32)
159 inline bool hasLineBreakingPropertyComplexContextOrIdeographic(UChar32 c)
165 UChar mirroredChar(UChar32);
167 Direction direction(UChar32);
173 unsigned char combiningClass(UChar32);
175 DecompositionType decompositionType(UChar32);
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
utf8.h 75 U_INTERNAL UChar32 U_EXPORT2
76 utf8_nextCharSafeBody(const uint8_t *s, int32_t *pi, int32_t length, UChar32 c, UBool strict);
83 utf8_appendCharSafeBody(uint8_t *s, int32_t i, int32_t length, UChar32 c, UBool *pIsError);
89 U_INTERNAL UChar32 U_EXPORT2
90 utf8_prevCharSafeBody(const uint8_t *s, int32_t start, int32_t *pi, UChar32 c, UBool strict);
162 * @param c output UChar32 variable
186 * @param c output UChar32 variable, set to <0 in case of an error
211 * @param c output UChar32 variable
248 * @param c output UChar32 variable, set to <0 in case of an error
454 * @param c output UChar32 variabl
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
utf8.h 75 U_INTERNAL UChar32 U_EXPORT2
76 utf8_nextCharSafeBody(const uint8_t *s, int32_t *pi, int32_t length, UChar32 c, UBool strict);
83 utf8_appendCharSafeBody(uint8_t *s, int32_t i, int32_t length, UChar32 c, UBool *pIsError);
89 U_INTERNAL UChar32 U_EXPORT2
90 utf8_prevCharSafeBody(const uint8_t *s, int32_t start, int32_t *pi, UChar32 c, UBool strict);
162 * @param c output UChar32 variable
186 * @param c output UChar32 variable, set to <0 in case of an error
211 * @param c output UChar32 variable
248 * @param c output UChar32 variable, set to <0 in case of an error
454 * @param c output UChar32 variabl
    [all...]
  /external/webkit/Source/WebKit/mac/icu/unicode/
utf8.h 75 U_INTERNAL UChar32 U_EXPORT2
76 utf8_nextCharSafeBody(const uint8_t *s, int32_t *pi, int32_t length, UChar32 c, UBool strict);
83 utf8_appendCharSafeBody(uint8_t *s, int32_t i, int32_t length, UChar32 c, UBool *pIsError);
89 U_INTERNAL UChar32 U_EXPORT2
90 utf8_prevCharSafeBody(const uint8_t *s, int32_t start, int32_t *pi, UChar32 c, UBool strict);
162 * @param c output UChar32 variable
186 * @param c output UChar32 variable, set to <0 in case of an error
211 * @param c output UChar32 variable
248 * @param c output UChar32 variable, set to <0 in case of an error
454 * @param c output UChar32 variabl
    [all...]
  /external/icu4c/test/perf/usetperf/
usetperf.cpp 53 for (UChar32 cp=0; cp<0x110000; ++cp) {
69 for (UChar32 cp=0; cp<0x110000; ++cp) {
79 for (UChar32 cp=0; cp<0x110000; ++cp) {

Completed in 431 milliseconds

1 2 3 45 6 7 8 91011>>