Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationSettings.java129 reorderTable = null; in resetReordering()
154 reorderTable = table; in aliasReordering()
245 reorderTable = table; in setReorderArrays()
268 reorderTable = other.reorderTable; in copyReorderingFrom()
273 public boolean hasReordering() { return reorderTable != null; } in hasReordering()
286 byte b = reorderTable[(int)p >>> 24]; in reorder()
451 public byte[] reorderTable; field in CollationSettings
DCollationDataReader.java182 byte[] reorderTable = null; in read()
190 reorderTable = new byte[256]; in read()
191 inBytes.get(reorderTable); in read()
485 settings.aliasReordering(baseData, reorderCodes, reorderCodesLength, reorderTable); in read()
DCollationTailoring.java38 assert(baseSettings.readOnly().reorderTable == null); in CollationTailoring()
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationSettings.java131 reorderTable = null; in resetReordering()
156 reorderTable = table; in aliasReordering()
247 reorderTable = table; in setReorderArrays()
270 reorderTable = other.reorderTable; in copyReorderingFrom()
275 public boolean hasReordering() { return reorderTable != null; } in hasReordering()
288 byte b = reorderTable[(int)p >>> 24]; in reorder()
453 public byte[] reorderTable; field in CollationSettings
DCollationDataReader.java183 byte[] reorderTable = null; in read()
191 reorderTable = new byte[256]; in read()
192 inBytes.get(reorderTable); in read()
486 settings.aliasReordering(baseData, reorderCodes, reorderCodesLength, reorderTable); in read()
DCollationTailoring.java40 assert(baseSettings.readOnly().reorderTable == null); in CollationTailoring()
/external/icu/icu4c/source/i18n/
Dcollationsettings.cpp33 reorderTable(NULL), in CollationSettings()
78 reorderTable = NULL; in resetReordering()
100 reorderTable = table; in aliasReordering()
218 reorderTable = reinterpret_cast<const uint8_t *>(reorderCodes + reorderCodesCapacity); in setReorderArrays()
234 reorderTable = other.reorderTable; in copyReorderingFrom()
242 other.reorderTable, errorCode); in copyReorderingFrom()
Dcollationsettings.h109 reorderTable(NULL), in CollationSettings()
134 inline UBool hasReordering() const { return reorderTable != NULL; } in hasReordering()
137 uint8_t b = reorderTable[p >> 24]; in reorder()
224 const uint8_t *reorderTable; member
Dcollationdatawriter.cpp166 CollationSettings::reorderTableHasSplitBytes(settings.reorderTable)) { in write()
236 if(settings.reorderTable != NULL) { in write()
326 copyData(indexes, CollationDataReader::IX_REORDER_TABLE_OFFSET, settings.reorderTable, dest); in write()
Dcollationdatareader.cpp141 const uint8_t *reorderTable = NULL; in read() local
150 reorderTable = inBytes + offset; in read()
447 reorderTable, errorCode); in read()
Dcollationtailoring.cpp44 U_ASSERT(baseSettings->reorderTable == NULL); in CollationTailoring()