Searched refs:code_point (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/crypto/heimdal/lib/wind/
H A Dcombining.c50 _wind_combining_class(uint32_t code_point) argument
52 struct translation ts = {code_point};
/freebsd-13-stable/contrib/googletest/googletest/src/
H A Dgtest.cc1804 // code_point parameter is of type UInt32 because wchar_t may not be
1806 // If the code_point is not a valid Unicode code point
1809 std::string CodePointToUtf8(UInt32 code_point) { argument
1810 if (code_point > kMaxCodePoint4) {
1811 return "(Invalid Unicode 0x" + String::FormatHexInt(code_point) + ")";
1815 if (code_point <= kMaxCodePoint1) {
1817 str[0] = static_cast<char>(code_point); // 0xxxxxxx
1818 } else if (code_point <= kMaxCodePoint2) {
1820 str[1] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx
1821 str[0] = static_cast<char>(0xC0 | code_point); // 11
[all...]
H A Dgtest-internal-inl.h224 // code_point parameter is of type UInt32 because wchar_t may not be
226 // If the code_point is not a valid Unicode code point
229 GTEST_API_ std::string CodePointToUtf8(UInt32 code_point);

Completed in 83 milliseconds