Home | History | Annotate | Download | only in src

Lines Matching defs:code_point

55                           UChar32 code_point,
65 DCHECK(code_point < 0x110000);
67 _itoa_s(code_point, number, 10);
166 int code_point; // Avoids warning when U8_NEXT writes -1 to it.
167 U8_NEXT(str, *begin, length, code_point);
168 *code_point_out = static_cast<unsigned>(code_point);
175 if (U_IS_UNICODE_CHAR(code_point))
182 unsigned* code_point) {
187 *code_point = kUnicodeReplacementCharacter;
191 *code_point = U16_GET_SUPPLEMENTARY(str[*begin], str[*begin + 1]);
196 *code_point = str[*begin];
199 if (U_IS_UNICODE_CHAR(*code_point))
203 *code_point = kUnicodeReplacementCharacter;