Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/test/
DDisplayAndInputProcessor.java679 int hyphenLocation = value.indexOf("-"); in normalizeHyphens() local
680 if (hyphenLocation > 0 && in normalizeHyphens()
681 Character.isDigit(value.charAt(hyphenLocation - 1)) && in normalizeHyphens()
682 hyphenLocation < value.length() - 1 && in normalizeHyphens()
683 Character.isDigit(value.charAt(hyphenLocation + 1))) { in normalizeHyphens()
685 sb.append(value.substring(0, hyphenLocation)); in normalizeHyphens()
687 sb.append(value.substring(hyphenLocation + 1)); in normalizeHyphens()