|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
include/llvm/Support/BinaryByteStream.h 183 return make_error<BinaryStreamError>(stream_error_code::invalid_offset);
220 stream_error_code::filesystem_error);
include/llvm/Support/BinaryItemStream.h 50 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
89 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
include/llvm/Support/BinaryStream.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);
include/llvm/Support/BinaryStreamError.h 30 explicit BinaryStreamError(stream_error_code C);
32 BinaryStreamError(stream_error_code C, StringRef Context);
39 stream_error_code getErrorCode() const { return Code; }
43 stream_error_code Code;
include/llvm/Support/BinaryStreamReader.h 196 stream_error_code::invalid_array_size);
243 stream_error_code::invalid_array_size);
include/llvm/Support/BinaryStreamRef.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);
include/llvm/Support/BinaryStreamWriter.h 156 stream_error_code::invalid_array_size);
include/llvm/Support/Error.h 330 template <typename ErrT, typename... ArgTs> Error make_error(ArgTs &&... Args) {
331 return Error(std::make_unique<ErrT>(std::forward<ArgTs>(Args)...));
lib/Support/BinaryStreamError.cpp 16 BinaryStreamError::BinaryStreamError(stream_error_code C)
20 : BinaryStreamError(stream_error_code::unspecified, Context) {}
22 BinaryStreamError::BinaryStreamError(stream_error_code C, StringRef Context)
26 case stream_error_code::unspecified:
29 case stream_error_code::stream_too_short:
32 case stream_error_code::invalid_array_size:
35 case stream_error_code::invalid_offset:
38 case stream_error_code::filesystem_error:
lib/Support/BinaryStreamReader.cpp 136 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
150 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
lib/Support/BinaryStreamWriter.cpp 98 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
usr/include/c++/7.4.0/bits/move.h 72 constexpr _Tp&&
73 forward(typename std::remove_reference<_Tp>::type& __t) noexcept
83 constexpr _Tp&&
84 forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
usr/include/c++/7.4.0/bits/unique_ptr.h 824 make_unique(_Args&&... __args)
825 { return unique_ptr<_Tp>(new _Tp(std::forward<_Args>(__args)...)); }
usr/include/c++/7.4.0/type_traits 1629 { typedef _Tp type; };