Home
last modified time | relevance | path

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

/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationBuilder.java858 long[] newCEs, int newCEsLength, int ce32) {
860 ce32 = addIfDifferent(nfdPrefix, nfdString, newCEs, newCEsLength, ce32);
861 ce32 = addOnlyClosure(nfdPrefix, nfdString, newCEs, newCEsLength, ce32);
867 long[] newCEs, int newCEsLength, int ce32) {
877 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32);
891 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32);
919 long[] newCEs = new long[Collation.MAX_EXPANSION_LENGTH];
929 int newCEsLength = dataBuilder.getCEs(nfdPrefix, newNFDString, newCEs, 0);
950 newCEs, newCEsLength, Collation.UNASSIGNED_CE32);
953 addOnlyClosure(nfdPrefix, newNFDString, newCEs, newCEsLength, ce32);
[all …]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationBuilder.java854 long[] newCEs, int newCEsLength, int ce32) {
856 ce32 = addIfDifferent(nfdPrefix, nfdString, newCEs, newCEsLength, ce32);
857 ce32 = addOnlyClosure(nfdPrefix, nfdString, newCEs, newCEsLength, ce32);
863 long[] newCEs, int newCEsLength, int ce32) {
873 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32);
887 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32);
915 long[] newCEs = new long[Collation.MAX_EXPANSION_LENGTH];
925 int newCEsLength = dataBuilder.getCEs(nfdPrefix, newNFDString, newCEs, 0);
946 newCEs, newCEsLength, Collation.UNASSIGNED_CE32);
949 addOnlyClosure(nfdPrefix, newNFDString, newCEs, newCEsLength, ce32);
[all …]
/external/icu/icu4c/source/i18n/
Dcollationbuilder.h128 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32,
131 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32,
147 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32,
Dcollationbuilder.cpp1100 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32, in addWithClosure() argument
1103 ce32 = addIfDifferent(nfdPrefix, nfdString, newCEs, newCEsLength, ce32, errorCode); in addWithClosure()
1104 ce32 = addOnlyClosure(nfdPrefix, nfdString, newCEs, newCEsLength, ce32, errorCode); in addWithClosure()
1111 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32, in addOnlyClosure() argument
1124 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32, errorCode); in addOnlyClosure()
1140 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32, errorCode); in addOnlyClosure()
1174 int64_t newCEs[Collation::MAX_EXPANSION_LENGTH]; in addTailComposites() local
1184 int32_t newCEsLength = dataBuilder->getCEs(nfdPrefix, newNFDString, newCEs, 0); in addTailComposites()
1205 newCEs, newCEsLength, Collation::UNASSIGNED_CE32, errorCode); in addTailComposites()
1208 addOnlyClosure(nfdPrefix, newNFDString, newCEs, newCEsLength, ce32, errorCode); in addTailComposites()
[all …]
/external/icu/icu4c/source/test/intltest/
Dcolldata.cpp115 uint32_t *newCEs = NEW_ARRAY(uint32_t, newMax); in add() local
117 if (newCEs == NULL) { in add()
122 uprv_memcpy(newCEs, ces, listSize * sizeof(uint32_t)); in add()
128 ces = newCEs; in add()