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

References

tools/clang/lib/Format/Encoding.h
   98   assert(Text[0] == '\\');
   99   if (Text.size() < 2)
  102   switch (Text[1]) {
  109     while (I < Text.size() && isHexDigit(Text[I]))
  109     while (I < Text.size() && isHexDigit(Text[I]))
  114     if (isOctDigit(Text[1])) {
  116       while (I < Text.size() && I < 4 && isOctDigit(Text[I]))
  116       while (I < Text.size() && I < 4 && isOctDigit(Text[I]))
  120     return 1 + llvm::getNumBytesForUTF8(Text[1]);