Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDecimalFormat.java2453 if ((lastGroup != -1 && countCodePoints(text, lastGroup, backup) - 1 != gs2) in subparse()
2454 … || (lastGroup == -1 && countCodePoints(text, digitStart, position) - 1 > gs2)) { in subparse()
2482 … if ((lastGroup != -1 && countCodePoints(text, lastGroup, backup) - 1 != gs2) in subparse()
2483 … || (lastGroup == -1 && countCodePoints(text, digitStart, position) - 1 > gs2)) { in subparse()
2500 … (lastGroup != -1 && countCodePoints(text,lastGroup,position) != groupingSize + 1)) { in subparse()
2531 … (lastGroup != -1 && countCodePoints(text,lastGroup,position) != groupingSize + 1)) { in subparse()
2650 … if (lastGroup != -1 && countCodePoints(text,lastGroup,position) != groupingSize + 1) { in subparse()
2729 private int countCodePoints(String str,int start, int end) { in countCodePoints() method