Searched refs:offset16 (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUTF16.java83 * sense of their ordering in a string. <code>offset16</code> and
93 * back if and only if <code>bounds(string, offset16) != TRAIL</code>.
178 * @param offset16 UTF-16 offset to the start of the character.
180 * offset16. The boundaries of that codepoint are the same as in
182 * @exception IndexOutOfBoundsException thrown if offset16 is out of
186 public static int charAt(String source, int offset16) { argument
187 char single = source.charAt(offset16);
191 return _charAt(source, offset16, single);
194 private static int _charAt(String source, int offset16, char single) { argument
204 ++offset16;
245 charAt(char source[], int start, int limit, int offset16) argument
441 moveCodePointOffset(char source[], int start, int limit, int offset16, int shift32) argument
[all...]
H A DUtility.java103 * @param offset16 an array containing offset to the character
104 * <em>after</em> the backslash. Upon return offset16[0] will
108 public static int unescapeAt(String s, int[] offset16) { argument
120 int offset = offset16[0];
201 offset16[0] = offset;
208 offset16[0] = offset;
218 offset16[0] = offset + UTF16.getCharCount(c);
224 offset16[0] = offset;

Completed in 34 milliseconds