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

References

lib/Support/BinaryStreamError.cpp
   24   ErrMsg = "Stream Error: ";
   27     ErrMsg += "An unspecified error has occurred.";
   30     ErrMsg += "The stream is too short to perform the requested operation.";
   33     ErrMsg += "The buffer size is not a multiple of the array element size.";
   36     ErrMsg += "The specified offset is invalid for the current stream.";
   39     ErrMsg += "An I/O error occurred on the file system.";
   44     ErrMsg += "  ";
   45     ErrMsg += Context;
   49 void BinaryStreamError::log(raw_ostream &OS) const { OS << ErrMsg; }
   51 StringRef BinaryStreamError::getErrorMessage() const { return ErrMsg; }