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

References

lib/Support/ConvertUTF.cpp
  666             case 5: ch += *source++; ch <<= 6;
  666             case 5: ch += *source++; ch <<= 6;
  667             case 4: ch += *source++; ch <<= 6;
  667             case 4: ch += *source++; ch <<= 6;
  668             case 3: ch += *source++; ch <<= 6;
  668             case 3: ch += *source++; ch <<= 6;
  669             case 2: ch += *source++; ch <<= 6;
  669             case 2: ch += *source++; ch <<= 6;
  670             case 1: ch += *source++; ch <<= 6;
  670             case 1: ch += *source++; ch <<= 6;
  671             case 0: ch += *source++;
  673         ch -= offsetsFromUTF8[extraBytesToRead];
  675         if (ch <= UNI_MAX_LEGAL_UTF32) {
  680             if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_LOW_END) {
  680             if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_LOW_END) {
  689                 *target++ = ch;