Home | History | Annotate | Download | only in base

Lines Matching refs:codepoint

1038 // Returns the next non-ignorable codepoint within string starting from the
1045 int codepoint = 0;
1046 while (*index < length && codepoint == 0) {
1049 CBU8_NEXT(string, *index, length, codepoint);
1050 DCHECK_GT(codepoint, 0);
1051 if (codepoint > 0) {
1053 int lookup_offset = lower_case_table[codepoint >> 8];
1055 codepoint = lower_case_table[lookup_offset + (codepoint & 0x00FF)];
1060 return codepoint;