Home
last modified time | relevance | path

Searched refs:fromUSectionValues (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/common/
Ducnv_ext.cpp538 const uint32_t *fromUTableValues, *fromUSectionValues; in ucnv_extMatchFromU() local
587 fromUSectionValues=fromUTableValues+idx; in ucnv_extMatchFromU()
591 value=*fromUSectionValues++; in ucnv_extMatchFromU()
624 value=fromUSectionValues[idx]; in ucnv_extMatchFromU()
982 const uint32_t *fromUSectionValues; in ucnv_extGetUnicodeSetString() local
988 fromUSectionValues=UCNV_EXT_ARRAY(cx, UCNV_EXT_FROM_U_VALUES_INDEX, uint32_t)+sectionIndex; in ucnv_extGetUnicodeSetString()
992 value=*fromUSectionValues++; in ucnv_extGetUnicodeSetString()
1007 value=fromUSectionValues[i]; in ucnv_extGetUnicodeSetString()
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetMBCS.java3635 IntBuffer fromUTableValues, fromUSectionValues; in matchFromU() local
3681 fromUSectionValues = ((IntBuffer) fromUTableValues.position(index)).slice(); in matchFromU()
3686 value = fromUSectionValues.get(); in matchFromU()
3718 value = fromUSectionValues.get(fromUSectionValues.position() + index); in matchFromU()
4956 IntBuffer fromUSectionValues; in extGetUnicodeSetString() local
4958 fromUSectionValues = (IntBuffer)ARRAY(cx, EXT_FROM_U_VALUES_INDEX,int.class ); in extGetUnicodeSetString()
4960 int fromUSectionValuesIndex = fromUSectionValues.position()+sectionIndex; in extGetUnicodeSetString()
4965 value = fromUSectionValues.get(fromUSectionValuesIndex++); in extGetUnicodeSetString()
4983 value = fromUSectionValues.get(fromUSectionValuesIndex + i); in extGetUnicodeSetString()