Home | History | Annotate | Download | only in src

Lines Matching refs:code_point

162 // the decoded value into |*code_point|. If the character is valid, we will
164 // kUnicodeReplacementCharacter into |*code_point|.
239 // the decoded value into |*code_point|. If the character is valid, we will
241 // kUnicodeReplacementCharacter into |*code_point|.
249 unsigned* code_point);
252 inline void AppendUTF16Value(unsigned code_point,
254 if (code_point > 0xffff) {
255 output->push_back(static_cast<char16>((code_point >> 10) + 0xd7c0));
256 output->push_back(static_cast<char16>((code_point & 0x3ff) | 0xdc00));
258 output->push_back(static_cast<char16>(code_point));