Home
last modified time | relevance | path

Searched refs:FormatHexInt (Results 1 – 3 of 3) sorted by relevance

/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
Dgtest-string.h151 static std::string FormatHexInt(int value);
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-printers.cc179 *os << "\\x" + String::FormatHexInt(static_cast<UnsignedChar>(c)); in PrintAsCharLiteralTo()
232 *os << ", 0x" << String::FormatHexInt(static_cast<UnsignedChar>(c)); in PrintCharAndCodeTo()
Dgtest.cc1358 const std::string error_hex("0x" + String::FormatHexInt(hr)); in HRESULTFailureHelper()
1423 return "(Invalid Unicode 0x" + String::FormatHexInt(code_point) + ")"; in CodePointToUtf8()
1628 std::string String::FormatHexInt(int value) { in FormatHexInt() function in testing::internal::String