Home | History | Annotate | Download | only in Support

Lines Matching refs:HexStr

724       std::string HexStr = utohexstr(*i);
725 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
746 std::string HexStr = utohexstr(UnicodeScalarValue.first);
747 if (HexStr.size() <= 2)
748 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
749 else if (HexStr.size() <= 4)
750 EscapedInput += "\\u" + std::string(4 - HexStr.size(), '0') + HexStr;
751 else if (HexStr.size() <= 8)
752 EscapedInput += "\\U" + std::string(8 - HexStr.size(), '0') + HexStr;