HomeSort by relevance Sort by last modified time
    Searched refs:ce32s (Results 1 - 25 of 27) sorted by null

1 2

  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationDataBuilder.java 54 ce32s = new UVector32();
62 ce32s.addElement(0);
159 // Try to encode two or more CEs as CE32s.
413 int length = ce32s.size();
415 if(ce32 == ce32s.elementAti(i)) { return i; }
417 ce32s.addElement(ce32);
452 assert((t & 0xc000) != 0xc000); // Impossible case bits 11 mark special CE32s.
513 // See if this sequence of CE32s has already been stored.
515 int ce32sMax = ce32s.size() - length;
517 if(first == ce32s.elementAti(i))
1340 protected UVector32 ce32s; field in class:CollationDataBuilder
    [all...]
CollationData.java 85 ce32 = ce32s[Collation.indexFromCE32(ce32)];
90 ce32 = ce32s[0];
148 ce32 = d.ce32s[Collation.indexFromCE32(ce32)];
166 ce32 = d.ce32s[Collation.indexFromCE32(ce32)];
171 ce32 = d.ce32s[0];
491 int[] ce32s; field in class:CollationData
499 * Simple array of JAMO_CE32S_LENGTH=19+21+27 CE32s, one per canonical Jamo L/V/T.
500 * They are normally simple CE32s, rarely expansions.
ContractionsAndExpansions.java 160 ces[i] = Collation.ceFromCE32(data.ce32s[idx + i]);
190 ce32 = data.ce32s[Collation.indexFromCE32(ce32)];
195 ce32 = data.ce32s[0];
CollationDataReader.java 50 /** Array offset to Jamo CE32s in ce32s[], or <0 if none. */
75 /** Byte offset to int ce32s[]. */
252 throw new ICUException("Tailored ce32s without tailored trie");
254 data.ce32s = ICUBinary.getInts(inBytes, length / 4, length & 3);
261 if(data == null || data.ce32s == null) {
262 throw new ICUException("JamoCE32sStart index into non-existent ce32s[]");
265 System.arraycopy(data.ce32s, jamoCE32sStart, data.jamoCE32s, 0, CollationData.JAMO_CE32S_LENGTH);
271 throw new ICUException("Missing Jamo CE32s for Hangul processing");
TailoredSet.java 197 if (data.ce32s[idx0 + i] != baseData.ce32s[idx1 + i]) {
CollationFastLatinBuilder.java 246 ce0 = Collation.ceFromCE32(data.ce32s[index]);
248 ce1 = Collation.ceFromCE32(data.ce32s[index + 1]);
CollationIterator.java 476 ceBuffer.appendUnsafe(Collation.ceFromCE32(d.ce32s[index++]));
556 ce32 = d.ce32s[Collation.indexFromCE32(ce32)];
563 ce32 = d.ce32s[0];
573 // None of the Jamo CE32s are isSpecialCE32().
    [all...]
  /external/icu/icu4c/source/i18n/
collationdata.cpp 34 ce32 = ce32s[Collation::indexFromCE32(ce32)];
39 ce32 = ce32s[0];
84 ce32 = d->ce32s[Collation::indexFromCE32(ce32)];
100 ce32 = d->ce32s[Collation::indexFromCE32(ce32)];
105 ce32 = d->ce32s[0];
collationdatabuilder.cpp 157 // Set all of the jamoCE32s[] to indirection CE32s.
172 builderData.ce32s = reinterpret_cast<const uint32_t *>(builder.ce32s.getBuffer());
282 ce32s(errorCode), ce64s(errorCode), conditionalCE32s(errorCode),
287 ce32s.addElement(0, errorCode);
383 // Short range: Set individual CE32s.
453 ce32 = fromBase ? base->ce32s[i] : ce32s.elementAti(i);
470 ce32 = ce32s.elementAti(Collation::indexFromCE32(ce32));
475 ce32 = fromBase ? base->ce32s[0] : ce32s.elementAti(0)
    [all...]
collationsets.cpp 169 const uint32_t *ce32s = data->ce32s + Collation::indexFromCE32(ce32); local
172 const uint32_t *baseCE32s = baseData->ce32s + Collation::indexFromCE32(baseCE32);
180 if(ce32s[i] != baseCE32s[i]) {
467 const uint32_t *ce32s = data->ce32s + Collation::indexFromCE32(ce32); local
470 ces[i] = Collation::ceFromCE32(*ce32s++);
499 ce32 = data->ce32s[Collation::indexFromCE32(ce32)];
504 ce32 = data->ce32s[0];
collationdata.h 55 ce32s(NULL), ces(NULL), contexts(NULL), base(NULL),
179 const uint32_t *ce32s; member in struct:CollationData
187 * Simple array of JAMO_CE32S_LENGTH=19+21+27 CE32s, one per canonical Jamo L/V/T.
188 * They are normally simple CE32s, rarely expansions.
collationdatareader.cpp 197 errorCode = U_INVALID_FORMAT_ERROR; // Tailored ce32s without tailored trie.
200 data->ce32s = reinterpret_cast<const uint32_t *>(inBytes + offset);
206 if(data == NULL || data->ce32s == NULL) {
207 errorCode = U_INVALID_FORMAT_ERROR; // Index into non-existent ce32s[].
210 data->jamoCE32s = data->ce32s + jamoCE32sStart;
216 errorCode = U_INVALID_FORMAT_ERROR; // No Jamo CE32s for Hangul processing.
collationiterator.cpp 271 const uint32_t *ce32s = d->ce32s + Collation::indexFromCE32(ce32); local
275 ceBuffer.appendUnsafe(Collation::ceFromCE32(*ce32s++));
358 ce32 = d->ce32s[Collation::indexFromCE32(ce32)];
369 ce32 = d->ce32s[0];
380 // None of the Jamo CE32s are isSpecialCE32().
663 // Fetch CE32s for skipped combining marks from the normal data, with fallback,
    [all...]
collationdatawriter.cpp 225 indexes[CollationDataReader::IX_JAMO_CE32S_START] = data.jamoCE32s - data.ce32s;
327 copyData(indexes, CollationDataReader::IX_CE32S_OFFSET, data.ce32s, dest);
collationdatabuilder.h 238 UVector32 ce32s; member in class:CollationDataBuilder
collationfastlatinbuilder.cpp 258 const uint32_t *ce32s = data.ce32s + Collation::indexFromCE32(ce32); local
261 ce0 = Collation::ceFromCE32(ce32s[0]);
263 ce1 = Collation::ceFromCE32(ce32s[1]);
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationDataBuilder.java 53 ce32s = new UVector32();
61 ce32s.addElement(0);
158 // Try to encode two or more CEs as CE32s.
412 int length = ce32s.size();
414 if(ce32 == ce32s.elementAti(i)) { return i; }
416 ce32s.addElement(ce32);
451 assert((t & 0xc000) != 0xc000); // Impossible case bits 11 mark special CE32s.
512 // See if this sequence of CE32s has already been stored.
514 int ce32sMax = ce32s.size() - length;
516 if(first == ce32s.elementAti(i))
1339 protected UVector32 ce32s; field in class:CollationDataBuilder
    [all...]
CollationData.java 83 ce32 = ce32s[Collation.indexFromCE32(ce32)];
88 ce32 = ce32s[0];
146 ce32 = d.ce32s[Collation.indexFromCE32(ce32)];
164 ce32 = d.ce32s[Collation.indexFromCE32(ce32)];
169 ce32 = d.ce32s[0];
489 int[] ce32s; field in class:CollationData
497 * Simple array of JAMO_CE32S_LENGTH=19+21+27 CE32s, one per canonical Jamo L/V/T.
498 * They are normally simple CE32s, rarely expansions.
ContractionsAndExpansions.java 156 ces[i] = Collation.ceFromCE32(data.ce32s[idx + i]);
186 ce32 = data.ce32s[Collation.indexFromCE32(ce32)];
191 ce32 = data.ce32s[0];
CollationDataReader.java 49 /** Array offset to Jamo CE32s in ce32s[], or <0 if none. */
74 /** Byte offset to int ce32s[]. */
251 throw new ICUException("Tailored ce32s without tailored trie");
253 data.ce32s = ICUBinary.getInts(inBytes, length / 4, length & 3);
260 if(data == null || data.ce32s == null) {
261 throw new ICUException("JamoCE32sStart index into non-existent ce32s[]");
264 System.arraycopy(data.ce32s, jamoCE32sStart, data.jamoCE32s, 0, CollationData.JAMO_CE32S_LENGTH);
270 throw new ICUException("Missing Jamo CE32s for Hangul processing");
TailoredSet.java 195 if (data.ce32s[idx0 + i] != baseData.ce32s[idx1 + i]) {
CollationFastLatinBuilder.java 245 ce0 = Collation.ceFromCE32(data.ce32s[index]);
247 ce1 = Collation.ceFromCE32(data.ce32s[index + 1]);
CollationIterator.java 474 ceBuffer.appendUnsafe(Collation.ceFromCE32(d.ce32s[index++]));
554 ce32 = d.ce32s[Collation.indexFromCE32(ce32)];
561 ce32 = d.ce32s[0];
571 // None of the Jamo CE32s are isSpecialCE32().
    [all...]
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 789 milliseconds

1 2