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

  /external/icu/android_icu4j/src/main/java/android/icu/util/
Region.java 191 int rangeMarkerLocation = r.indexOf("~");
192 if ( rangeMarkerLocation > 0 ) {
194 char endRange = regionName.charAt(rangeMarkerLocation+1);
195 regionName.setLength(rangeMarkerLocation);
196 char lastChar = regionName.charAt(rangeMarkerLocation-1);
201 regionName.setCharAt(rangeMarkerLocation-1,lastChar);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Region.java 199 int rangeMarkerLocation = r.indexOf("~");
200 if ( rangeMarkerLocation > 0 ) {
202 char endRange = regionName.charAt(rangeMarkerLocation+1);
203 regionName.setLength(rangeMarkerLocation);
204 char lastChar = regionName.charAt(rangeMarkerLocation-1);
209 regionName.setCharAt(rangeMarkerLocation-1,lastChar);
  /external/icu/icu4c/source/i18n/
region.cpp 125 int32_t rangeMarkerLocation = regionName.indexOf(RANGE_MARKER);
128 if ( rangeMarkerLocation > 0 ) {
129 UChar endRange = regionName.charAt(rangeMarkerLocation+1);
130 buf[rangeMarkerLocation] = 0;
131 while ( buf[rangeMarkerLocation-1] <= endRange ) {
134 buf[rangeMarkerLocation-1]++;
144 int32_t rangeMarkerLocation = regionName.indexOf(RANGE_MARKER);
147 if ( rangeMarkerLocation > 0 ) {
148 UChar endRange = regionName.charAt(rangeMarkerLocation+1);
149 buf[rangeMarkerLocation] = 0
    [all...]

Completed in 232 milliseconds