Home | History | Annotate | Download | only in url

Lines Matching defs:code_point

29                           UChar32 code_point,
39 DCHECK(code_point < 0x110000);
41 _itoa_s(code_point, number, 10);
143 int code_point; // Avoids warning when U8_NEXT writes -1 to it.
144 U8_NEXT(str, *begin, length, code_point);
145 *code_point_out = static_cast<unsigned>(code_point);
152 if (U_IS_UNICODE_CHAR(code_point))
159 unsigned* code_point) {
164 *code_point = kUnicodeReplacementCharacter;
168 *code_point = U16_GET_SUPPLEMENTARY(str[*begin], str[*begin + 1]);
173 *code_point = str[*begin];
176 if (U_IS_UNICODE_CHAR(*code_point))
180 *code_point = kUnicodeReplacementCharacter;