/external/icu/icu4c/source/i18n/ |
D | collationdatabuilder.h | 163 int32_t getCEs(const UnicodeString &s, int64_t ces[], int32_t cesLength); 164 int32_t getCEs(const UnicodeString &prefix, const UnicodeString &s, 219 int32_t getCEs(const UnicodeString &s, int32_t start, int64_t ces[], int32_t cesLength);
|
D | collationiterator.h | 73 const int64_t *getCEs() const { return buffer.getAlias(); } in getCEs() function 183 const int64_t *getCEs() const { in getCEs() function 184 return ceBuffer.getCEs(); in getCEs()
|
D | collationfastlatinbuilder.h | 49 void getCEs(const CollationData &data, UErrorCode &errorCode);
|
D | collationfastlatinbuilder.cpp | 111 getCEs(data, errorCode); in forData() 118 getCEs(data, errorCode); in forData() 203 CollationFastLatinBuilder::getCEs(const CollationData &data, UErrorCode &errorCode) { in getCEs() function in CollationFastLatinBuilder
|
D | collationdatabuilder.cpp | 1506 CollationDataBuilder::getCEs(const UnicodeString &s, int64_t ces[], int32_t cesLength) { in getCEs() function in CollationDataBuilder 1507 return getCEs(s, 0, ces, cesLength); in getCEs() 1511 CollationDataBuilder::getCEs(const UnicodeString &prefix, const UnicodeString &s, in getCEs() function in CollationDataBuilder 1515 return getCEs(s, 0, ces, cesLength); in getCEs() 1517 return getCEs(prefix + s, prefixLength, ces, cesLength); in getCEs() 1522 CollationDataBuilder::getCEs(const UnicodeString &s, int32_t start, in getCEs() function in CollationDataBuilder
|
D | collationbuilder.cpp | 308 cesLength = dataBuilder->getCEs(nfdString, ces, 0); in addReset() 736 cesLength = dataBuilder->getCEs(nfdExtension, ces, cesLength); in addRelation() 1184 int32_t newCEsLength = dataBuilder->getCEs(nfdPrefix, newNFDString, newCEs, 0); in addTailComposites() 1331 cesLength = dataBuilder->getCEs(nfdString, ces, 0); in closeOverComposites() 1349 int32_t oldCEsLength = dataBuilder->getCEs(prefix, str, oldCEs, 0); in addIfDifferent()
|
D | collationsets.cpp | 519 sink->handleExpansion(iter.getCEs(), length - 1); in handleCE32()
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | CollationDataBuilder.java | 329 int getCEs(CharSequence s, long ces[], int cesLength) { in getCEs() method in CollationDataBuilder 330 return getCEs(s, 0, ces, cesLength); in getCEs() 333 int getCEs(CharSequence prefix, CharSequence s, long ces[], int cesLength) { in getCEs() method in CollationDataBuilder 336 return getCEs(s, 0, ces, cesLength); in getCEs() 338 return getCEs(new StringBuilder(prefix).append(s), prefixLength, ces, cesLength); in getCEs() 1163 protected int getCEs(CharSequence s, int start, long ces[], int cesLength) { in getCEs() method in CollationDataBuilder
|
D | CollationFastLatinBuilder.java | 86 getCEs(data); in forData() 93 getCEs(data); in forData() 191 private void getCEs(CollationData data) { in getCEs() method in CollationFastLatinBuilder
|
D | CollationBuilder.java | 114 cesLength = dataBuilder.getCEs(nfdString, ces, 0); in addReset() 503 cesLength = dataBuilder.getCEs(nfdExtension, ces, cesLength); in addRelation() 925 int newCEsLength = dataBuilder.getCEs(nfdPrefix, newNFDString, newCEs, 0); 1077 cesLength = dataBuilder.getCEs(nfdString, ces, 0); 1092 int oldCEsLength = dataBuilder.getCEs(prefix, str, oldCEs, 0);
|
D | CollationIterator.java | 73 long[] getCEs() { return buffer; } in getCEs() method in CollationIterator.CEBuffer 343 public final long[] getCEs() { in getCEs() method in CollationIterator 344 return ceBuffer.getCEs(); in getCEs()
|
D | ContractionsAndExpansions.java | 206 sink.handleExpansion(iter.getCEs(), 0, length - 1); in handleCE32()
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
D | RuleBasedCollator.java | 1236 System.arraycopy(iter.getCEs(), 0, ces, 0, length); in internalGetCEs()
|