Searched refs:codePointAndLength (Results 1 – 1 of 1) sorted by relevance
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
| D | Utility.java | 912 return codePointAndLength(result, start, offset); in unescapeAndLengthAt() 918 return codePointAndLength(UNESCAPE_MAP[i+1], start, offset); in unescapeAndLengthAt() 927 return codePointAndLength(c & 0x1F, start, offset + Character.charCount(c)); in unescapeAndLengthAt() 940 return codePointAndLength(c, start, offset); in unescapeAndLengthAt() 943 private static int codePointAndLength(int c, int length) { in codePointAndLength() method in Utility 949 private static int codePointAndLength(int c, int start, int limit) { in codePointAndLength() method in Utility 950 return codePointAndLength(c, limit - start); in codePointAndLength()
|