Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Ducnv_ext.cpp540 const uint32_t *fromUTableValues, *fromUSectionValues; in ucnv_extMatchFromU() local
589 fromUSectionValues=fromUTableValues+idx; in ucnv_extMatchFromU()
593 value=*fromUSectionValues++; in ucnv_extMatchFromU()
626 value=fromUSectionValues[idx]; in ucnv_extMatchFromU()
987 const uint32_t *fromUSectionValues; in ucnv_extGetUnicodeSetString() local
993 fromUSectionValues=UCNV_EXT_ARRAY(cx, UCNV_EXT_FROM_U_VALUES_INDEX, uint32_t)+sectionIndex; in ucnv_extGetUnicodeSetString()
997 value=*fromUSectionValues++; in ucnv_extGetUnicodeSetString()
1012 value=fromUSectionValues[i]; in ucnv_extGetUnicodeSetString()
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetMBCS.java3632 IntBuffer fromUTableValues, fromUSectionValues; in matchFromU() local
3678 fromUSectionValues = ((IntBuffer) fromUTableValues.position(index)).slice(); in matchFromU()
3683 value = fromUSectionValues.get(); in matchFromU()
3715 value = fromUSectionValues.get(fromUSectionValues.position() + index); in matchFromU()
4957 IntBuffer fromUSectionValues; in extGetUnicodeSetString() local
4959 fromUSectionValues = (IntBuffer)ARRAY(cx, EXT_FROM_U_VALUES_INDEX,int.class ); in extGetUnicodeSetString()
4961 int fromUSectionValuesIndex = fromUSectionValues.position()+sectionIndex; in extGetUnicodeSetString()
4966 value = fromUSectionValues.get(fromUSectionValuesIndex++); in extGetUnicodeSetString()
4984 value = fromUSectionValues.get(fromUSectionValuesIndex + i); in extGetUnicodeSetString()