Home
last modified time | relevance | path

Searched refs:U16_LENGTH (Results 1 – 25 of 38) sorted by relevance

12

/external/icu4c/i18n/
Dcasetrn.cpp60 csc->index-=U16_LENGTH(c); in utrans_rep_caseContextIterator()
72 csc->index+=U16_LENGTH(c); in utrans_rep_caseContextIterator()
155 csc.cpLimit=textPos+=U16_LENGTH(c); in handleTransliterate()
172 delta=result-U16_LENGTH(c); in handleTransliterate()
176 delta=tmp.length()-U16_LENGTH(c); in handleTransliterate()
Dtitletrn.cpp95 for (start = offsets.start - 1; start >= offsets.contextStart; start -= U16_LENGTH(c)) { in handleTransliterate()
123 csc.cpLimit=textPos+=U16_LENGTH(c); in handleTransliterate()
147 delta=result-U16_LENGTH(c); in handleTransliterate()
151 delta=tmp.length()-U16_LENGTH(c); in handleTransliterate()
Ddecimfmt.cpp1942 position += U16_LENGTH(ch); in subparse()
2095 int32_t padLen = U16_LENGTH(fPad); in skipPadding()
2174 int32_t len = U16_LENGTH(c); in compareSimpleAffix()
2192 len = U16_LENGTH(c); in compareSimpleAffix()
2237 pos += U16_LENGTH(c); in skipRuleWhiteSpace()
2252 pos += U16_LENGTH(c); in skipUWhiteSpace()
2283 i += U16_LENGTH(c); in compareComplexAffix()
2288 i += U16_LENGTH(c); in compareComplexAffix()
2380 (pos + U16_LENGTH(ch)) : -1; in match()
2391 i += U16_LENGTH(ch); in match()
[all …]
Dnortrans.cpp144 start += U16_LENGTH(c); in handleTransliterate()
Dsmpdtfmt.cpp3210 int32_t len = U16_LENGTH(c); in compareSimpleAffix()
3228 len = U16_LENGTH(c); in compareSimpleAffix()
3272 pos += U16_LENGTH(c); in skipRuleWhiteSpace()
3286 pos += U16_LENGTH(c); in skipUWhiteSpace()
/external/webkit/Source/WebCore/css/
DCSSOMUtils.cpp40 if (U16_LENGTH(c) == 1) in appendCharacter()
76 index += U16_LENGTH(c); in serializeIdentifier()
111 index += U16_LENGTH(c); in serializeString()
/external/icu4c/common/
Dnormalizer2impl.cpp127 int32_t cpLength=U16_LENGTH(c); in appendZeroCC()
234 UChar *r=limit+=U16_LENGTH(c); in insert()
446 src+=U16_LENGTH(c); in decompose()
468 src+=U16_LENGTH(c); in decompose()
808 pRemove=p-U16_LENGTH(c); // pRemove & p: start & limit of the combining mark in recompose()
964 src+=U16_LENGTH(c); in compose()
995 src+=U16_LENGTH(c); in compose()
1211 src+=U16_LENGTH(c); in composeQuickCheck()
1230 src+=U16_LENGTH(c); in composeQuickCheck()
1569 src+=U16_LENGTH(c); in makeFCD()
[all …]
Dunorm.cpp159 src->move(src, -U16_LENGTH(c), UITER_CURRENT); in unorm_iterate()
Dusprep.cpp550 uprv_syntaxError(src,srcIndex-U16_LENGTH(ch), srcLength,parseError); in usprep_map()
766 uprv_syntaxError(b1, b2Index-U16_LENGTH(ch), b2Len, parseError); in usprep_prepare()
Dustrcase.c60 destIndex+=U16_LENGTH(c); in appendResult()
77 destIndex+=U16_LENGTH(c); in appendResult()
Dustring.c514 return strItr - U16_LENGTH(stringCh); /* one matches */ in _matchFromSet()
524 return strItr - U16_LENGTH(stringCh); /* none matches */ in _matchFromSet()
Dustrtrns.c527 reqLength += U16_LENGTH(ch); in u_strFromUTF8WithSub()
1482 reqLength+=U16_LENGTH(ch); in u_strFromJavaModifiedUTF8WithSub()
Dutext.cpp618 cLength1 = U16_LENGTH(c1); in utext_caseCompare()
644 cLength2 = U16_LENGTH(c2); in utext_caseCompare()
1791 reqLength+=U16_LENGTH(ch); in utext_strFromUTF8()
3121 int32_t len = U16_LENGTH(c); in charIterTextExtract()
Ducnv2022.c1958 int32_t sourceIndex = (int32_t)(source - args->source - U16_LENGTH(sourceChar)); in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC()
1967 &offsets, (int32_t)(source - args->source - U16_LENGTH(sourceChar)), in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC()
3154 int32_t sourceIndex = (int32_t)(source - args->source - U16_LENGTH(sourceChar)); in UConverter_fromUnicode_ISO_2022_CN_OFFSETS_LOGIC()
3163 &offsets, (int32_t)(source - args->source - U16_LENGTH(sourceChar)), in UConverter_fromUnicode_ISO_2022_CN_OFFSETS_LOGIC()
/external/icu4c/tools/toolutil/
Duparse.c281 if((destLength+U16_LENGTH(value))<=destCapacity) { in u_parseString()
284 destLength+=U16_LENGTH(value); in u_parseString()
/external/icu4c/test/intltest/
Dtestutil.cpp44 for (int32_t i = 0; i < s.length(); i += U16_LENGTH(c)) { in hex()
Dintltest.cpp278 i += U16_LENGTH(ch); in prettify()
313 i += U16_LENGTH(ch); in prettify()
/external/webkit/Source/JavaScriptCore/wtf/unicode/
DUnicodeMacrosFromICU.h20 #define U16_LENGTH(c) ((uint32_t)(c) <= 0xffff ? 1 : 2) macro
/external/webkit/Source/WebCore/icu/unicode/
Dutf16.h131 #define U16_LENGTH(c) ((uint32_t)(c)<=0xffff ? 1 : 2) macro
/external/webkit/Source/JavaScriptGlue/icu/unicode/
Dutf16.h131 #define U16_LENGTH(c) ((uint32_t)(c)<=0xffff ? 1 : 2) macro
/external/icu4c/common/unicode/
Dutf16.h140 #define U16_LENGTH(c) ((uint32_t)(c)<=0xffff ? 1 : 2) macro
/external/webkit/Source/JavaScriptCore/icu/unicode/
Dutf16.h131 #define U16_LENGTH(c) ((uint32_t)(c)<=0xffff ? 1 : 2) macro
/external/webkit/Source/WebCore/html/parser/
DHTMLEntityParser.cpp263 if (U16_LENGTH(entityValue) != 1) { in decodeNamedEntity()
/external/webkit/Source/WebKit/mac/icu/unicode/
Dutf16.h131 #define U16_LENGTH(c) ((uint32_t)(c)<=0xffff ? 1 : 2) macro
/external/icu4c/tools/makeconv/
Dgencnvex.c337 u16Length=U16_LENGTH(m->u); in getToUnicodeValue()
678 u16Length=U16_LENGTH(m->u); in getFromUBytesValue()
680 u16Length=U16_LENGTH(UCM_GET_CODE_POINTS(table, m)[0])+(m->uLen-2); in getFromUBytesValue()

12