Searched refs:HexStr (Results 1 – 2 of 2) sorted by relevance
709 std::string HexStr = utohexstr(*i); in escape() local710 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr; in escape()734 std::string HexStr = utohexstr(UnicodeScalarValue.first); in escape() local735 if (HexStr.size() <= 2) in escape()736 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr; in escape()737 else if (HexStr.size() <= 4) in escape()738 EscapedInput += "\\u" + std::string(4 - HexStr.size(), '0') + HexStr; in escape()739 else if (HexStr.size() <= 8) in escape()740 EscapedInput += "\\U" + std::string(8 - HexStr.size(), '0') + HexStr; in escape()
975 StringRef HexStr(TokStart + 3, len); in LexIdentifier() local976 if (!all_of(HexStr, isxdigit)) { in LexIdentifier()981 APInt Tmp(bits, HexStr, 16); in LexIdentifier()