Searched refs:BinaryStreamError (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamError.cpp1 //===- BinaryStreamError.cpp - Error extensions for streams -----*- C++ -*-===//
9 #include "llvm/Support/BinaryStreamError.h"
14 char BinaryStreamError::ID = 0;
16 BinaryStreamError::BinaryStreamError(stream_error_code C) function in class:BinaryStreamError
17 : BinaryStreamError(C, "") {}
19 BinaryStreamError::BinaryStreamError(StringRef Context) function in class:BinaryStreamError
20 : BinaryStreamError(stream_error_code::unspecified, Context) {}
22 BinaryStreamError function in class:BinaryStreamError
[all...]
H A DBinaryStreamWriter.cpp11 #include "llvm/Support/BinaryStreamError.h"
98 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
H A DBinaryStreamReader.cpp11 #include "llvm/Support/BinaryStreamError.h"
136 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
150 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamError.h1 //===- BinaryStreamError.h - Error extensions for Binary Streams *- C++ -*-===//
27 class BinaryStreamError : public ErrorInfo<BinaryStreamError> { class in namespace:llvm
30 explicit BinaryStreamError(stream_error_code C);
31 explicit BinaryStreamError(StringRef Context);
32 BinaryStreamError(stream_error_code C, StringRef Context);
H A DBinaryStream.h14 #include "llvm/Support/BinaryStreamError.h"
61 return make_error<BinaryStreamError>(stream_error_code::invalid_offset);
63 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
94 return make_error<BinaryStreamError>(stream_error_code::invalid_offset);
H A DBinaryItemStream.h14 #include "llvm/Support/BinaryStreamError.h"
50 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
89 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
H A DBinaryStreamRef.h15 #include "llvm/Support/BinaryStreamError.h"
137 return make_error<BinaryStreamError>(stream_error_code::invalid_offset);
139 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
235 return make_error<BinaryStreamError>(stream_error_code::invalid_offset);
H A DBinaryStreamReader.h195 return make_error<BinaryStreamError>(
242 return make_error<BinaryStreamError>(
H A DBinaryStreamWriter.h16 #include "llvm/Support/BinaryStreamError.h"
155 return make_error<BinaryStreamError>(
H A DBinaryByteStream.h16 #include "llvm/Support/BinaryStreamError.h"
183 return make_error<BinaryStreamError>(stream_error_code::invalid_offset);
219 return make_error<BinaryStreamError>(
/freebsd-11-stable/lib/clang/libllvm/
H A DMakefile839 SRCS_MIN+= Support/BinaryStreamError.cpp

Completed in 134 milliseconds