Home | History | Annotate | Download | only in files

Lines Matching defs:codepoint

1129 // Returns the next non-ignorable codepoint within string starting from the
1136 int codepoint = 0;
1137 while (*index < length && codepoint == 0) {
1140 CBU8_NEXT(string, *index, length, codepoint);
1141 DCHECK_GT(codepoint, 0);
1142 if (codepoint > 0) {
1144 int lookup_offset = lower_case_table[codepoint >> 8];
1146 codepoint = lower_case_table[lookup_offset + (codepoint & 0x00FF)];
1151 return codepoint;