HomeSort by relevance Sort by last modified time
    Searched refs:cesLength (Results 1 - 9 of 9) sorted by null

  /external/icu/icu4c/source/i18n/
collationbasedatabuilder.h 64 virtual uint32_t encodeCEs(const int64_t ces[], int32_t cesLength, UErrorCode &errorCode);
66 void addRootElements(const int64_t ces[], int32_t cesLength, UErrorCode &errorCode);
collationdatabuilder.h 96 const int64_t ces[], int32_t cesLength,
103 * add(p, s, ces, cesLength) = addCE32(p, s, encodeCEs(ces, cesLength))
105 virtual uint32_t encodeCEs(const int64_t ces[], int32_t cesLength, UErrorCode &errorCode);
161 * @return incremented cesLength
163 int32_t getCEs(const UnicodeString &s, int64_t ces[], int32_t cesLength);
165 int64_t ces[], int32_t cesLength);
219 int32_t getCEs(const UnicodeString &s, int32_t start, int64_t ces[], int32_t cesLength);
collationdata.h 42 ce32sLength(0), cesLength(0), contextsLength(0),
170 int32_t cesLength;
collationbuilder.cpp 202 cesLength(0),
291 cesLength = 1;
301 cesLength = dataBuilder->getCEs(nfdString, ces, 0);
302 if(cesLength > Collation::MAX_EXPANSION_LENGTH) {
462 strength = ceStrength(ces[cesLength - 1]);
468 ces[cesLength - 1] = tempCEFromIndexAndStrength(index, strength);
693 U_ASSERT(cesLength > 0);
694 int64_t ce = ces[cesLength - 1];
718 ces[cesLength - 1] = tempCEFromIndexAndStrength(index, tempStrength);
724 int32_t cesLengthBeforeExtension = cesLength;
    [all...]
collationdatabuilder.cpp 128 int32_t fetchCEs(const UnicodeString &str, int32_t start, int64_t ces[], int32_t cesLength);
168 int64_t ces[], int32_t cesLength) {
196 if(cesLength < Collation::MAX_EXPANSION_LENGTH) {
197 ces[cesLength] = ce;
199 ++cesLength;
203 return cesLength;
525 const int64_t ces[], int32_t cesLength,
527 uint32_t ce32 = encodeCEs(ces, cesLength, errorCode);
651 CollationDataBuilder::encodeCEs(const int64_t ces[], int32_t cesLength,
654 if(cesLength < 0 || cesLength > Collation::MAX_EXPANSION_LENGTH)
    [all...]
collationbasedatabuilder.cpp 256 CollationBaseDataBuilder::encodeCEs(const int64_t ces[], int32_t cesLength, UErrorCode &errorCode) {
257 addRootElements(ces, cesLength, errorCode);
258 return CollationDataBuilder::encodeCEs(ces, cesLength, errorCode);
262 CollationBaseDataBuilder::addRootElements(const int64_t ces[], int32_t cesLength,
265 for(int32_t i = 0; i < cesLength; ++i) {