Home | History | Annotate | Download | only in i18n

Lines Matching refs:table

130                                 uint8_t table[256], UErrorCode &errorCode) const {
133 // Initialize the table.
137 table[lowByte] = lowByte;
143 table[highByte] = highByte;
149 table[i] = 0;
172 do { table[firstByte++] = lowByte++; } while(firstByte <= lastByte);
193 if(table[firstByte] != 0) { // Duplicate or equivalent script.
197 do { table[lastByte--] = highByte--; } while(firstByte <= lastByte);
212 if(table[firstByte] != 0) { // Duplicate or equivalent script.
216 do { table[firstByte++] = lowByte++; } while(firstByte <= lastByte);
220 // Avoid table[0] which must remain 0.
222 if(table[i] == 0) { table[i] = lowByte++; }