Home | History | Annotate | Download | only in coll

Lines Matching defs:ce32s

56         ce32s = new UVector32();
64 ce32s.addElement(0);
161 // Try to encode two or more CEs as CE32s.
415 int length = ce32s.size();
417 ce32s.elementAti(i)) { return i; }
419 ce32s.addElement(ce32);
454 assert((t & 0xc000) != 0xc000); // Impossible case bits 11 mark special CE32s.
515 // See if this sequence of CE32s has already been stored.
517 int ce32sMax = ce32s.size() - length;
519 if(first == ce32s.elementAti(i)) {
530 if(ce32s.elementAti(i + j) != newCE32s[start + j]) { break; }
535 int i = ce32s.size();
542 ce32s.addElement(newCE32s[start + j]);
558 ce32 = encodeExpansion32(base.ce32s, index, length);
695 int[] srcCE32s = src.ce32s.getBuffer();
698 // Inspect the source CE32s. Just copy them if none are modified.
918 jamoIndex = ce32s.size();
920 ce32s.addElement(jamoCE32s[i]);
923 // to indicate that none of the Jamo CE32s are isSpecialCE32()
948 // Copy the Hangul CE32s from the base in blocks per Jamo L,
962 // For U+0000, move its normal ce32 into CE32s[0] and set U0000_TAG.
963 ce32s.setElementAt(trie.get(0), 0);
978 data.ce32s = ce32s.getBuffer();
984 data.jamoCE32s = jamoCE32s; // C++: data.ce32s + jamoIndex
1209 // Set all of the jamoCE32s[] to indirection CE32s.
1220 builderData.ce32s = builder.ce32s.getBuffer();
1342 protected UVector32 ce32s;