HomeSort by relevance Sort by last modified time
    Searched defs:HexStr (Results 1 - 2 of 2) sorted by null

  /external/libppp/src/
defs.c 354 HexStr(long val, char *buf, size_t sz)
  /external/llvm/lib/Support/
YAMLParser.cpp 659 std::string HexStr = utohexstr(*i);
660 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
681 std::string HexStr = utohexstr(UnicodeScalarValue.first);
682 if (HexStr.size() <= 2)
683 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
684 else if (HexStr.size() <= 4)
685 EscapedInput += "\\u" + std::string(4 - HexStr.size(), '0') + HexStr;
    [all...]

Completed in 53 milliseconds