reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-rc/ResourceFileWriter.cpp
  153     convertUTF8ToUTF16String(Str, Chars);
  156       Chars.push_back(cp1252ToUnicode((unsigned char)C));
  163       Chars.push_back((unsigned char)C);
  169     for (UTF16 &Ch : Chars) {
  173     Result.swap(Chars);
  176   Result.reserve(Chars.size());
  218   while (Pos < Chars.size()) {
  219     UTF16 CurChar = Chars[Pos];
  224       if (Pos == Chars.size() || Chars[Pos] != '"')
  224       if (Pos == Chars.size() || Chars[Pos] != '"')
  232       UTF16 TypeChar = Chars[Pos];
  252         while (RemainingChars && Pos < Chars.size() && Chars[Pos] < 0x80) {
  252         while (RemainingChars && Pos < Chars.size() && Chars[Pos] < 0x80) {
  253           if (!isxdigit(Chars[Pos]))
  255           char Digit = tolower(Chars[Pos]);
  276         while (RemainingChars && Pos < Chars.size() && Chars[Pos] >= '0' &&
  276         while (RemainingChars && Pos < Chars.size() && Chars[Pos] >= '0' &&
  277                Chars[Pos] < '8') {
  279           ReadInt |= Chars[Pos] - '0';
  316         if (Pos == Chars.size() || Chars[Pos] != '"')
  316         if (Pos == Chars.size() || Chars[Pos] != '"')