Home
last modified time | relevance | path

Searched refs:fullLength (Results 1 – 5 of 5) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/
DUCaseProps.java312 int index, closureLength, fullLength, length; in addCaseClosure() local
345 fullLength=(int)value; in addCaseClosure()
350 fullLength&=0xffff; /* bits 16 and higher are reserved */ in addCaseClosure()
353 excOffset+=fullLength&FULL_LOWER; in addCaseClosure()
354 fullLength>>=4; in addCaseClosure()
357 length=fullLength&0xf; in addCaseClosure()
364 fullLength>>=4; in addCaseClosure()
365 excOffset+=fullLength&0xf; in addCaseClosure()
366 fullLength>>=4; in addCaseClosure()
367 excOffset+=fullLength; in addCaseClosure()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DUCaseProps.java308 int index, closureLength, fullLength, length; in addCaseClosure() local
341 fullLength=(int)value; in addCaseClosure()
346 fullLength&=0xffff; /* bits 16 and higher are reserved */ in addCaseClosure()
349 excOffset+=fullLength&FULL_LOWER; in addCaseClosure()
350 fullLength>>=4; in addCaseClosure()
353 length=fullLength&0xf; in addCaseClosure()
360 fullLength>>=4; in addCaseClosure()
361 excOffset+=fullLength&0xf; in addCaseClosure()
362 fullLength>>=4; in addCaseClosure()
363 excOffset+=fullLength; in addCaseClosure()
/external/icu/icu4c/source/common/
Ducase.cpp261 int32_t idx, closureLength, fullLength, length; in ucase_addCaseClosure() local
294 GET_SLOT_VALUE(excWord, UCASE_EXC_FULL_MAPPINGS, pe, fullLength); in ucase_addCaseClosure()
299 fullLength&=0xffff; /* bits 16 and higher are reserved */ in ucase_addCaseClosure()
302 pe+=fullLength&UCASE_FULL_LOWER; in ucase_addCaseClosure()
303 fullLength>>=4; in ucase_addCaseClosure()
306 length=fullLength&0xf; in ucase_addCaseClosure()
313 fullLength>>=4; in ucase_addCaseClosure()
314 pe+=fullLength&0xf; in ucase_addCaseClosure()
315 fullLength>>=4; in ucase_addCaseClosure()
316 pe+=fullLength; in ucase_addCaseClosure()
/external/icu/icu4c/source/i18n/
Duregex.cpp696 int32_t fullLength = endIx - startIx; in uregex_group() local
697 int32_t copyLength = fullLength; in uregex_group()
713 return fullLength; in uregex_group()
/external/icu/icu4c/source/test/cintltst/
Dcucdtst.c3369 const UChar *full, int32_t fullLength, in testFold() argument
3385 if(length2!=fullLength || 0!=u_memcmp(t, full, fullLength)) { in testFold()