HomeSort by relevance Sort by last modified time
    Searched defs:MAX_UNCHANGED (Results 1 - 3 of 3) sorted by null

  /external/icu/android_icu4j/src/main/java/android/icu/text/
Edits.java 20 private static final int MAX_UNCHANGED = MAX_UNCHANGED_LENGTH - 1;
77 if(last < MAX_UNCHANGED) {
78 int remaining = MAX_UNCHANGED - last;
83 setLastUnit(MAX_UNCHANGED);
88 append(MAX_UNCHANGED);
127 if(MAX_UNCHANGED < last && last < MAX_SHORT_CHANGE &&
325 if (u <= MAX_UNCHANGED) {
329 while (index < length && (u = array[index]) <= MAX_UNCHANGED) {
339 // already fetched u > MAX_UNCHANGED at index
371 while (index < length && (u = array[index]) > MAX_UNCHANGED) {
    [all...]
  /external/icu/icu4c/source/common/
edits.cpp 18 const int32_t MAX_UNCHANGED = MAX_UNCHANGED_LENGTH - 1;
119 if(last < MAX_UNCHANGED) {
120 int32_t remaining = MAX_UNCHANGED - last;
125 setLastUnit(MAX_UNCHANGED);
130 append(MAX_UNCHANGED);
165 if(MAX_UNCHANGED < last && last < MAX_SHORT_CHANGE &&
481 if (u <= MAX_UNCHANGED) {
485 while (index < length && (u = array[index]) <= MAX_UNCHANGED) {
495 // already fetched u > MAX_UNCHANGED at index
527 while (index < length && (u = array[index]) > MAX_UNCHANGED) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Edits.java 19 private static final int MAX_UNCHANGED = MAX_UNCHANGED_LENGTH - 1;
79 if(last < MAX_UNCHANGED) {
80 int remaining = MAX_UNCHANGED - last;
85 setLastUnit(MAX_UNCHANGED);
90 append(MAX_UNCHANGED);
130 if(MAX_UNCHANGED < last && last < MAX_SHORT_CHANGE &&
333 if (u <= MAX_UNCHANGED) {
337 while (index < length && (u = array[index]) <= MAX_UNCHANGED) {
347 // already fetched u > MAX_UNCHANGED at index
379 while (index < length && (u = array[index]) > MAX_UNCHANGED) {
    [all...]

Completed in 89 milliseconds