Home | History | Annotate | Download | only in html

Lines Matching defs:codepoint

103     int codepoint = -1;
110 codepoint = 0;
119 codepoint = (codepoint << 4) | decDig;
121 codepoint = -1;
129 codepoint = (codepoint << 4) | (hexDig + 9);
131 codepoint = -1;
136 codepoint = -1;
140 if (codepoint > Character.MAX_CODE_POINT) {
141 codepoint = 0xfffd; // Unknown.
144 codepoint = 0;
153 codepoint = (codepoint * 10) + decDig;
155 codepoint = -1;
160 codepoint = -1;
164 if (codepoint > Character.MAX_CODE_POINT) {
165 codepoint = 0xfffd; // Unknown.
185 codepoint = t.getValue();
188 if (codepoint < 0) {
191 return (((long) tail) << 32) | codepoint;