Home | History | Annotate | Download | only in src

Lines Matching refs:code_point

210     uchar code_point = ((first << 6) | second) & kMaxTwoByteChar;
211 if (code_point <= kMaxOneByteChar) {
216 return code_point;
228 uchar code_point = ((((first << 6) | second) << 6) | third)
230 if (code_point <= kMaxTwoByteChar) {
235 return code_point;
247 uchar code_point = (((((first << 6 | second) << 6) | third) << 6) | fourth)
249 if (code_point <= kMaxThreeByteChar) {
254 return code_point;