Lines Matching defs:codepoint
1146 // Returns the next non-ignorable codepoint within string starting from the
1153 int codepoint = 0;
1154 while (*index < length && codepoint == 0) {
1157 CBU8_NEXT(string, *index, length, codepoint);
1158 DCHECK_GT(codepoint, 0);
1159 if (codepoint > 0) {
1161 int lookup_offset = lower_case_table[codepoint >> 8];
1163 codepoint = lower_case_table[lookup_offset + (codepoint & 0x00FF)];
1168 return codepoint;