Home | History | Annotate | Download | only in src

Lines Matching defs:code_point

229     uchar code_point = ((first << 6) | second) & kMaxTwoByteChar;
230 if (code_point <= kMaxOneByteChar) {
235 return code_point;
247 uchar code_point = ((((first << 6) | second) << 6) | third)
249 if (code_point <= kMaxTwoByteChar) {
254 return code_point;
266 uchar code_point = (((((first << 6 | second) << 6) | third) << 6) | fourth)
268 if (code_point <= kMaxThreeByteChar) {
273 return code_point;