Lines Matching defs:HexStr
730 std::string HexStr = utohexstr(*i);
731 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
755 std::string HexStr = utohexstr(UnicodeScalarValue.first);
756 if (HexStr.size() <= 2)
757 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
758 else if (HexStr.size() <= 4)
759 EscapedInput += "\\u" + std::string(4 - HexStr.size(), '0') + HexStr;
760 else if (HexStr.size() <= 8)
761 EscapedInput += "\\U" + std::string(8 - HexStr.size(), '0') + HexStr;