Searched refs:weight16 (Results 1 - 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationBuilder.java183 int weight16 = weight16FromNode(node);
184 if(weight16 == 0) {
190 assert(weight16 > Collation.BEFORE_WEIGHT16);
194 weight16 = getWeight16Before(index, node, strength);
202 assert(weight16 >= Collation.COMMON_WEIGHT16 || i == previousIndex);
215 if(previousWeight16 == weight16) {
222 node = nodeFromWeight16(weight16) | nodeFromStrength(strength);
227 int weight16 = getWeight16Before(index, node, strength);
228 index = findOrInsertWeakNode(index, weight16, strength);
273 int weight16;
630 findOrInsertWeakNode(int index, int weight16, int level) argument
1446 nodeFromWeight16(int weight16) argument
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationBuilder.java179 int weight16 = weight16FromNode(node);
180 if(weight16 == 0) {
186 assert(weight16 > Collation.BEFORE_WEIGHT16);
190 weight16 = getWeight16Before(index, node, strength);
198 assert(weight16 >= Collation.COMMON_WEIGHT16 || i == previousIndex);
211 if(previousWeight16 == weight16) {
218 node = nodeFromWeight16(weight16) | nodeFromStrength(strength);
223 int weight16 = getWeight16Before(index, node, strength);
224 index = findOrInsertWeakNode(index, weight16, strength);
269 int weight16;
626 findOrInsertWeakNode(int index, int weight16, int level) argument
1442 nodeFromWeight16(int weight16) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationbuilder.cpp377 uint32_t weight16 = weight16FromNode(node); local
378 if(weight16 == 0) {
387 U_ASSERT(weight16 > Collation::BEFORE_WEIGHT16);
391 weight16 = getWeight16Before(index, node, strength);
399 U_ASSERT(weight16 >= Collation::COMMON_WEIGHT16 || i == previousIndex);
412 if(previousWeight16 == weight16) {
419 node = nodeFromWeight16(weight16) | nodeFromStrength(strength);
424 uint32_t weight16 = getWeight16Before(index, node, strength); local
425 index = findOrInsertWeakNode(index, weight16, strength, errorCode);
471 uint32_t weight16; local
873 findOrInsertWeakNode(int32_t index, uint32_t weight16, int32_t level, UErrorCode &errorCode) argument
[all...]
H A Dcollationbuilder.h85 int32_t findOrInsertWeakNode(int32_t index, uint32_t weight16, int32_t level,
246 static inline int64_t nodeFromWeight16(uint32_t weight16) { argument
247 return (int64_t)weight16 << 48;

Completed in 136 milliseconds