Home
last modified time | relevance | path

Searched refs:newCEs (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationBuilder.java857 long[] newCEs, int newCEsLength, int ce32) {
859 ce32 = addIfDifferent(nfdPrefix, nfdString, newCEs, newCEsLength, ce32);
860 ce32 = addOnlyClosure(nfdPrefix, nfdString, newCEs, newCEsLength, ce32);
866 long[] newCEs, int newCEsLength, int ce32) {
876 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32);
890 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32);
918 long[] newCEs = new long[Collation.MAX_EXPANSION_LENGTH];
928 int newCEsLength = dataBuilder.getCEs(nfdPrefix, newNFDString, newCEs, 0);
949 newCEs, newCEsLength, Collation.UNASSIGNED_CE32);
952 addOnlyClosure(nfdPrefix, newNFDString, newCEs, newCEsLength, ce32);
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationBuilder.java861 long[] newCEs, int newCEsLength, int ce32) {
863 ce32 = addIfDifferent(nfdPrefix, nfdString, newCEs, newCEsLength, ce32);
864 ce32 = addOnlyClosure(nfdPrefix, nfdString, newCEs, newCEsLength, ce32);
870 long[] newCEs, int newCEsLength, int ce32) {
880 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32);
894 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32);
922 long[] newCEs = new long[Collation.MAX_EXPANSION_LENGTH];
932 int newCEsLength = dataBuilder.getCEs(nfdPrefix, newNFDString, newCEs, 0);
953 newCEs, newCEsLength, Collation.UNASSIGNED_CE32);
956 addOnlyClosure(nfdPrefix, newNFDString, newCEs, newCEsLength, ce32);
[all …]
/external/icu/icu4c/source/i18n/
Dcollationbuilder.cpp1102 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32, in addWithClosure() argument
1105 ce32 = addIfDifferent(nfdPrefix, nfdString, newCEs, newCEsLength, ce32, errorCode); in addWithClosure()
1106 ce32 = addOnlyClosure(nfdPrefix, nfdString, newCEs, newCEsLength, ce32, errorCode); in addWithClosure()
1113 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32, in addOnlyClosure() argument
1126 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32, errorCode); in addOnlyClosure()
1142 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32, errorCode); in addOnlyClosure()
1176 int64_t newCEs[Collation::MAX_EXPANSION_LENGTH]; in addTailComposites() local
1186 int32_t newCEsLength = dataBuilder->getCEs(nfdPrefix, newNFDString, newCEs, 0); in addTailComposites()
1207 newCEs, newCEsLength, Collation::UNASSIGNED_CE32, errorCode); in addTailComposites()
1210 addOnlyClosure(nfdPrefix, newNFDString, newCEs, newCEsLength, ce32, errorCode); in addTailComposites()
[all …]
Dcollationbuilder.h130 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32,
133 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32,
149 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32,
/external/icu/icu4c/source/test/intltest/
Dcolldata.cpp114 uint32_t *newCEs = NEW_ARRAY(uint32_t, newMax); in add() local
116 if (newCEs == NULL) { in add()
121 uprv_memcpy(newCEs, ces, listSize * sizeof(uint32_t)); in add()
127 ces = newCEs; in add()