Home
last modified time | relevance | path

Searched refs:keys16 (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4c/source/common/
Dresource.h79 ResourceTable() : keys16(NULL), keys32(NULL), items16(NULL), items32(NULL), length(0) {} in ResourceTable()
84 keys16(k16), keys32(k32), items16(i16), items32(i32), length(len) {} in ResourceTable()
99 const uint16_t *keys16;
Duresdata.cpp600 const uint16_t *keys16 = NULL; in getTable() local
609 keys16 = (const uint16_t *)(pResData->pRoot+offset); in getTable()
610 length = *keys16++; in getTable()
611 items32 = (const Resource *)(keys16+length+(~length&1)); in getTable()
615 keys16 = pResData->p16BitUnits+offset; in getTable()
616 length = *keys16++; in getTable()
617 items16 = keys16 + length; in getTable()
630 return ResourceTable(keys16, keys32, items16, items32, length); in getTable()
821 if (keys16 != NULL) { in getKeyAndValue()
822 key = RES_GET_KEY16(rdValue.pResData, keys16[i]); in getKeyAndValue()
/external/cldr/tools/java/org/unicode/cldr/icu/
DICUResourceWriter.java888 short[] keys16 = null; in writeBinary() local
896 keys16 = new short[numChildren]; in writeBinary()
908 keys16[count] = (short) current.keyStringOffset; in writeBinary()
971 out.write(shortArrayToBytes(keys16)); in writeBinary()
972 LDML2ICUBinaryWriter.written += shortArrayToBytes(keys16).length; in writeBinary()