Home | History | Annotate | Download | only in html

Lines Matching defs:codepoint

173       int codepoint = token.charAt(end - 1);
174 if (isHex(codepoint)) {
181 codepoint = Integer.parseInt(token.substring(esc + 1, end), 16);
183 codepoint = 0xfffd; // Unknown codepoint.
192 sb.appendCodePoint(codepoint);
199 private static boolean isHex(int codepoint) {
200 return ('0' <= codepoint && codepoint <= '9')
201 || ('A' <= codepoint && codepoint <= 'F')
202 || ('a' <= codepoint && codepoint <= 'f');