Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Dcollationbuilder.h123 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32,
126 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32,
142 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32,
Dcollationbuilder.cpp1067 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32, in addWithClosure() argument
1070 ce32 = addIfDifferent(nfdPrefix, nfdString, newCEs, newCEsLength, ce32, errorCode); in addWithClosure()
1071 ce32 = addOnlyClosure(nfdPrefix, nfdString, newCEs, newCEsLength, ce32, errorCode); in addWithClosure()
1078 const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32, in addOnlyClosure() argument
1091 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32, errorCode); in addOnlyClosure()
1107 ce32 = addIfDifferent(prefix, str, newCEs, newCEsLength, ce32, errorCode); in addOnlyClosure()
1141 int64_t newCEs[Collation::MAX_EXPANSION_LENGTH]; in addTailComposites() local
1151 int32_t newCEsLength = dataBuilder->getCEs(nfdPrefix, newNFDString, newCEs, 0); in addTailComposites()
1172 newCEs, newCEsLength, Collation::UNASSIGNED_CE32, errorCode); in addTailComposites()
1175 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()
/external/chromium_org/third_party/icu/source/test/intltest/
Dcolldata.cpp113 uint32_t *newCEs = NEW_ARRAY(uint32_t, newMax); in add() local
115 if (newCEs == NULL) { in add()
120 uprv_memcpy(newCEs, ces, listSize * sizeof(uint32_t)); in add()
126 ces = newCEs; in add()
/external/chromium_org/third_party/icu/source/i18n/
Ducol.cpp281 uint32_t *newCEs = (uint32_t *)uprv_malloc(newCapacity * 4); in reallocCEs() local
282 if(newCEs == NULL) { in reallocCEs()
285 uprv_memcpy(newCEs, oldCEs, length * 4); in reallocCEs()
287 data->extendCEs = newCEs; in reallocCEs()
289 data->CEpos = newCEs + length; in reallocCEs()