Lines Matching defs:code_point
233 uchar code_point = ((first << 6) | second) & kMaxTwoByteChar;
234 if (code_point <= kMaxOneByteChar) {
239 return code_point;
251 uchar code_point = ((((first << 6) | second) << 6) | third)
253 if (code_point <= kMaxTwoByteChar) {
258 return code_point;
270 uchar code_point = (((((first << 6 | second) << 6) | third) << 6) | fourth)
272 if (code_point <= kMaxThreeByteChar) {
277 return code_point;