Home
last modified time | relevance | path

Searched refs:MessageError (Results 1 – 13 of 13) sorted by relevance

/external/rust/crates/criterion/src/
Dconnection.rs10 pub enum MessageError { enum
14 impl From<serde_cbor::Error> for MessageError { implementation
16 MessageError::SerializationError(other) in from()
19 impl From<std::io::Error> for MessageError { implementation
21 MessageError::IoError(other) in from()
24 impl std::fmt::Display for MessageError { implementation
27 MessageError::SerializationError(error) => write!( in fmt()
32 MessageError::IoError(error) => write!( in fmt()
40 impl std::error::Error for MessageError { implementation
43 MessageError::SerializationError(err) => Some(err), in source()
[all …]
/external/python/cpython2/Lib/email/
Derrors.py9 class MessageError(Exception): class
13 class MessageParseError(MessageError):
25 class MultipartConversionError(MessageError, TypeError):
29 class CharsetError(MessageError):
/external/python/cpython3/Lib/email/
Derrors.py8 class MessageError(Exception): class
12 class MessageParseError(MessageError):
24 class MultipartConversionError(MessageError, TypeError):
28 class CharsetError(MessageError):
/external/rust/crates/anyhow/src/
Dwrapper.rs5 pub struct MessageError<M>(pub M); struct
7 impl<M> Debug for MessageError<M> implementation
16 impl<M> Display for MessageError<M> implementation
25 impl<M> StdError for MessageError<M> where M: Display + Debug + 'static {} implementation
Derror.rs107 use crate::wrapper::MessageError; in from_adhoc()
108 let error: MessageError<M> = MessageError(message); in from_adhoc()
110 object_drop: object_drop::<MessageError<M>>, in from_adhoc()
111 object_ref: object_ref::<MessageError<M>>, in from_adhoc()
113 object_mut: object_mut::<MessageError<M>>, in from_adhoc()
114 object_boxed: object_boxed::<MessageError<M>>, in from_adhoc()
/external/lzma/CPP/7zip/UI/FileManager/
DExtractCallback.cpp242 STDMETHODIMP CExtractCallbackImp::MessageError(const wchar_t *s) in MessageError() function in CExtractCallbackImp
248 HRESULT CExtractCallbackImp::MessageError(const char *message, const FString &path) in MessageError() function in CExtractCallbackImp
640 MessageError(_currentFilePath); in ExtractResult()
641 MessageError(NError::MyFormatMessage(result)); in ExtractResult()
705 RINOK(MessageError("can not replace file with folder with same name", destPathSys)); in AskWrite()
714 RINOK(MessageError("can not replace folder with file with same name", destPathSys)); in AskWrite()
756 RINOK(MessageError("can not create name for file", destPathSys)); in AskWrite()
767 RINOK(MessageError("can not delete output file", destPathSys)); in AskWrite()
DExtractCallback.h180 HRESULT MessageError(const char *message, const FString &path);
/external/python/cpython2/Doc/library/
Demail.errors.rst11 .. exception:: MessageError()
21 class. It is derived from :exc:`MessageError`.
55 inherits from :exc:`MessageError` and the built-in :exc:`TypeError`.
/external/python/cpython3/Doc/library/
Demail.errors.rst14 .. exception:: MessageError()
25 :exc:`MessageError`. This class is also used internally by the parser used
52 inherits from :exc:`MessageError` and the built-in :exc:`TypeError`.
/external/lzma/CPP/7zip/UI/Common/
DIFileExtractCallback.h51 STDMETHOD(MessageError)(const wchar_t *message) x; \
DArchiveExtractCallback.cpp404 return _extractCallback2->MessageError(s); in SendMessageError()
417 return _extractCallback2->MessageError(s); in SendMessageError_with_LastError()
425 return _extractCallback2->MessageError(s); in SendMessageError2()
/external/lzma/CPP/7zip/UI/Console/
DExtractCallbackConsole.cpp378 STDMETHODIMP CExtractCallbackConsole::MessageError(const wchar_t *message) in MessageError() function in CExtractCallbackConsole
/external/protobuf/objectivec/
DGPBMessage.m117 static NSError *MessageError(NSInteger code, NSDictionary *userInfo) { function
885 *errorPtr = MessageError(GPBMessageErrorCodeMissingRequiredField, nil);
916 *errorPtr = MessageError(GPBMessageErrorCodeMissingRequiredField, nil);
1995 *errorPtr = MessageError(GPBMessageErrorCodeMissingRequiredField, nil);