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

References

lib/Support/ConvertUTFWrapper.cpp
  215     const UTF8 *Start = reinterpret_cast<const UTF8 *>(Source.data());
  217         reinterpret_cast<const UTF8 *>(Source.data() + Source.size());
  217         reinterpret_cast<const UTF8 *>(Source.data() + Source.size());
  220     Result.resize(Source.size());
  221     memcpy(&Result[0], Source.data(), Source.size());
  221     memcpy(&Result[0], Source.data(), Source.size());
  225         llvm::ArrayRef<UTF16>(reinterpret_cast<const UTF16 *>(Source.data()),
  226                               Source.size()),
  229     const UTF32 *Start = reinterpret_cast<const UTF32 *>(Source.data());
  231         reinterpret_cast<const UTF32 *>(Source.data() + Source.size());
  231         reinterpret_cast<const UTF32 *>(Source.data() + Source.size());
  232     Result.resize(UNI_MAX_UTF8_BYTES_PER_CODE_POINT * Source.size());