Home
last modified time | relevance | path

Searched refs:segmentLength (Results 1 – 7 of 7) sorted by relevance

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DSimpleFormatterImpl.java302 int segmentLength = compiledPattern.charAt(i++) - ARG_NUM_LIMIT; in getTextWithNoArguments() local
303 if (segmentLength > 0) { in getTextWithNoArguments()
304 int limit = i + segmentLength; in getTextWithNoArguments()
321 int segmentLength = compiledPattern.charAt(i++) - ARG_NUM_LIMIT; in getLength() local
322 if (segmentLength > 0) { in getLength()
323 int limit = i + segmentLength; in getLength()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DSimpleFormatterImpl.java304 int segmentLength = compiledPattern.charAt(i++) - ARG_NUM_LIMIT; in getTextWithNoArguments() local
305 if (segmentLength > 0) { in getTextWithNoArguments()
306 int limit = i + segmentLength; in getTextWithNoArguments()
323 int segmentLength = compiledPattern.charAt(i++) - ARG_NUM_LIMIT; in getLength() local
324 if (segmentLength > 0) { in getLength()
325 int limit = i + segmentLength; in getLength()
/third_party/node/deps/icu-small/source/i18n/
Dcollationiterator.cpp737 int32_t segmentLength = digits.length() - pos; in appendNumericCEs() local
738 if(segmentLength > 254) { segmentLength = 254; } in appendNumericCEs()
739 appendNumericSegmentCEs(digits.data() + pos, segmentLength, errorCode); in appendNumericCEs()
740 pos += segmentLength; in appendNumericCEs()
/third_party/skia/third_party/externals/icu/source/i18n/
Dcollationiterator.cpp737 int32_t segmentLength = digits.length() - pos; in appendNumericCEs() local
738 if(segmentLength > 254) { segmentLength = 254; } in appendNumericCEs()
739 appendNumericSegmentCEs(digits.data() + pos, segmentLength, errorCode); in appendNumericCEs()
740 pos += segmentLength; in appendNumericCEs()
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationIterator.java1013 int segmentLength = digits.length() - pos;
1014 if(segmentLength > 254) { segmentLength = 254; }
1015 appendNumericSegmentCEs(digits.subSequence(pos, pos + segmentLength));
1016 pos += segmentLength;
/third_party/icu/icu4c/source/i18n/
Dcollationiterator.cpp737 int32_t segmentLength = digits.length() - pos; in appendNumericCEs() local
738 if(segmentLength > 254) { segmentLength = 254; } in appendNumericCEs()
739 appendNumericSegmentCEs(digits.data() + pos, segmentLength, errorCode); in appendNumericCEs()
740 pos += segmentLength; in appendNumericCEs()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
DCollationIterator.java1015 int segmentLength = digits.length() - pos;
1016 if(segmentLength > 254) { segmentLength = 254; }
1017 appendNumericSegmentCEs(digits.subSequence(pos, pos + segmentLength));
1018 pos += segmentLength;