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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc628 // code_point parameter is of type UInt32 because wchar_t may not be
630 // If the code_point is not a valid Unicode code point
633 GTEST_API_ std::string CodePointToUtf8(UInt32 code_point);
2915 // code_point parameter is of type UInt32 because wchar_t may not be
2917 // If the code_point is not a valid Unicode code point
2920 std::string CodePointToUtf8(UInt32 code_point) { argument
2921 if (code_point > kMaxCodePoint4) {
2922 return "(Invalid Unicode 0x" + String::FormatHexInt(code_point) + ")";
2926 if (code_point <= kMaxCodePoint1) {
2928 str[0] = static_cast<char>(code_point); //
[all...]

Completed in 52 milliseconds