Searched refs:getCEs (Results 1 - 19 of 19) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dcollationfastlatinbuilder.h52 void getCEs(const CollationData &data, UErrorCode &errorCode);
H A Dcollationdatabuilder.h165 int32_t getCEs(const UnicodeString &s, int64_t ces[], int32_t cesLength);
166 int32_t getCEs(const UnicodeString &prefix, const UnicodeString &s,
221 int32_t getCEs(const UnicodeString &s, int32_t start, int64_t ces[], int32_t cesLength);
H A Dcollationiterator.h75 const int64_t *getCEs() const { return buffer.getAlias(); } function in class:CollationIterator::CEBuffer
185 const int64_t *getCEs() const { function in class:CollationIterator
186 return ceBuffer.getCEs();
H A Dcollationdatabuilder.cpp1508 CollationDataBuilder::getCEs(const UnicodeString &s, int64_t ces[], int32_t cesLength) { function in class:CollationDataBuilder
1509 return getCEs(s, 0, ces, cesLength);
1513 CollationDataBuilder::getCEs(const UnicodeString &prefix, const UnicodeString &s, function in class:CollationDataBuilder
1517 return getCEs(s, 0, ces, cesLength);
1519 return getCEs(prefix + s, prefixLength, ces, cesLength);
1524 CollationDataBuilder::getCEs(const UnicodeString &s, int32_t start, function in class:CollationDataBuilder
H A Dcollationfastlatinbuilder.cpp113 getCEs(data, errorCode);
120 getCEs(data, errorCode);
205 CollationFastLatinBuilder::getCEs(const CollationData &data, UErrorCode &errorCode) { function in class:CollationFastLatinBuilder
H A Dcollationbuilder.cpp310 cesLength = dataBuilder->getCEs(nfdString, ces, 0);
738 cesLength = dataBuilder->getCEs(nfdExtension, ces, cesLength);
1186 int32_t newCEsLength = dataBuilder->getCEs(nfdPrefix, newNFDString, newCEs, 0);
1333 cesLength = dataBuilder->getCEs(nfdString, ces, 0);
1336 // We could add a capacity parameter to getCEs() and reallocate if necessary.
1351 int32_t oldCEsLength = dataBuilder->getCEs(prefix, str, oldCEs, 0);
H A Dcollationsets.cpp521 sink->handleExpansion(iter.getCEs(), length - 1);
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationFastLatinBuilder.java89 getCEs(data);
96 getCEs(data);
194 private void getCEs(CollationData data) { method in class:CollationFastLatinBuilder
H A DCollationDataBuilder.java332 int getCEs(CharSequence s, long ces[], int cesLength) { method in class:CollationDataBuilder
333 return getCEs(s, 0, ces, cesLength);
336 int getCEs(CharSequence prefix, CharSequence s, long ces[], int cesLength) { method in class:CollationDataBuilder
339 return getCEs(s, 0, ces, cesLength);
341 return getCEs(new StringBuilder(prefix).append(s), prefixLength, ces, cesLength);
1166 protected int getCEs(CharSequence s, int start, long ces[], int cesLength) { method in class:CollationDataBuilder
H A DCollationBuilder.java121 cesLength = dataBuilder.getCEs(nfdString, ces, 0);
510 cesLength = dataBuilder.getCEs(nfdExtension, ces, cesLength);
932 int newCEsLength = dataBuilder.getCEs(nfdPrefix, newNFDString, newCEs, 0);
1084 cesLength = dataBuilder.getCEs(nfdString, ces, 0);
1087 // We could add a capacity parameter to getCEs() and reallocate if necessary.
1099 int oldCEsLength = dataBuilder.getCEs(prefix, str, oldCEs, 0);
H A DContractionsAndExpansions.java212 sink.handleExpansion(iter.getCEs(), 0, length - 1);
H A DCollationIterator.java77 long[] getCEs() { return buffer; } method in class:CollationIterator.CEBuffer
353 public final long[] getCEs() { method in class:CollationIterator
354 return ceBuffer.getCEs();
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationFastLatinBuilder.java88 getCEs(data);
95 getCEs(data);
193 private void getCEs(CollationData data) { method in class:CollationFastLatinBuilder
H A DCollationDataBuilder.java331 int getCEs(CharSequence s, long ces[], int cesLength) { method in class:CollationDataBuilder
332 return getCEs(s, 0, ces, cesLength);
335 int getCEs(CharSequence prefix, CharSequence s, long ces[], int cesLength) { method in class:CollationDataBuilder
338 return getCEs(s, 0, ces, cesLength);
340 return getCEs(new StringBuilder(prefix).append(s), prefixLength, ces, cesLength);
1165 protected int getCEs(CharSequence s, int start, long ces[], int cesLength) { method in class:CollationDataBuilder
H A DCollationBuilder.java117 cesLength = dataBuilder.getCEs(nfdString, ces, 0);
506 cesLength = dataBuilder.getCEs(nfdExtension, ces, cesLength);
928 int newCEsLength = dataBuilder.getCEs(nfdPrefix, newNFDString, newCEs, 0);
1080 cesLength = dataBuilder.getCEs(nfdString, ces, 0);
1083 // We could add a capacity parameter to getCEs() and reallocate if necessary.
1095 int oldCEsLength = dataBuilder.getCEs(prefix, str, oldCEs, 0);
H A DContractionsAndExpansions.java208 sink.handleExpansion(iter.getCEs(), 0, length - 1);
H A DCollationIterator.java75 long[] getCEs() { return buffer; } method in class:CollationIterator.CEBuffer
351 public final long[] getCEs() { method in class:CollationIterator
352 return ceBuffer.getCEs();
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DRuleBasedCollator.java1195 System.arraycopy(iter.getCEs(), 0, ces, 0, length);
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DRuleBasedCollator.java1219 System.arraycopy(iter.getCEs(), 0, ces, 0, length);

Completed in 235 milliseconds