Home
last modified time | relevance | path

Searched refs:reorderTable (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationSettings.java127 reorderTable = null; in resetReordering()
152 reorderTable = table; in aliasReordering()
243 reorderTable = table; in setReorderArrays()
266 reorderTable = other.reorderTable; in copyReorderingFrom()
271 public boolean hasReordering() { return reorderTable != null; } in hasReordering()
284 byte b = reorderTable[(int)p >>> 24]; in reorder()
449 public byte[] reorderTable; field in CollationSettings
DCollationDataReader.java184 byte[] reorderTable = null; in read()
192 reorderTable = new byte[256]; in read()
193 inBytes.get(reorderTable); in read()
503 settings.aliasReordering(baseData, reorderCodes, reorderCodesLength, reorderTable); in read()
DCollationTailoring.java35 assert(baseSettings.readOnly().reorderTable == null); in CollationTailoring()
/external/icu/icu4c/source/i18n/
Dcollationsettings.cpp31 reorderTable(NULL), in CollationSettings()
76 reorderTable = NULL; in resetReordering()
98 reorderTable = table; in aliasReordering()
216 reorderTable = reinterpret_cast<const uint8_t *>(reorderCodes + reorderCodesCapacity); in setReorderArrays()
232 reorderTable = other.reorderTable; in copyReorderingFrom()
240 other.reorderTable, errorCode); in copyReorderingFrom()
Dcollationsettings.h107 reorderTable(NULL), in CollationSettings()
132 inline UBool hasReordering() const { return reorderTable != NULL; } in hasReordering()
135 uint8_t b = reorderTable[p >> 24]; in reorder()
222 const uint8_t *reorderTable; member
Dcollationdatawriter.cpp164 CollationSettings::reorderTableHasSplitBytes(settings.reorderTable)) { in write()
234 if(settings.reorderTable != NULL) { in write()
324 copyData(indexes, CollationDataReader::IX_REORDER_TABLE_OFFSET, settings.reorderTable, dest); in write()
Dcollationdatareader.cpp138 const uint8_t *reorderTable = NULL; in read() local
147 reorderTable = inBytes + offset; in read()
434 reorderTable, errorCode); in read()
Dcollationtailoring.cpp42 U_ASSERT(baseSettings->reorderTable == NULL); in CollationTailoring()