Searched refs:InputError (Results 1 – 11 of 11) sorted by relevance
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/ |
D | unicode.py | 26 class InputError(Error): class 48 raise InputError("invalid Unicode value %s" % (s,)) 75 raise InputError("invalid Unicode range %s" % (s,)) 93 raise InputError("invalid Unicode value %s" % (v,)) 152 raise InputError("invalid number of fields %d" % (nfields,)) 182 raise InputError("wrong number of fields %d %d - %s" % 198 raise InputError("expected Last line for %s" % 209 raise InputError("bad First line: range given") 221 raise InputError("expected Last line for %s; got EOF" %
|
/external/crosvm/devices/src/virtio/input/ |
D | evdev.rs | 12 use super::InputError; 125 return Err(InputError::EvdevIdError(errno())); in device_ids() 148 return Err(InputError::EvdevNameError(errno())); in name() 166 return Err(InputError::EvdevSerialError(errno())); in serial_name() 184 return Err(InputError::EvdevPropertiesError(errno())); in properties() 207 return Err(InputError::EvdevEventTypesError(errno())); in supported_events() 228 return Err(InputError::EvdevEventTypesError(errno())); in supported_events() 274 Err(InputError::EvdevGrabError(errno())) in grab_evdev() 291 Err(InputError::EvdevGrabError(errno())) in ungrab_evdev()
|
D | mod.rs | 34 pub enum InputError { enum 63 pub type Result<T> = std::result::Result<T, InputError>; 65 impl Display for InputError { implementation 67 use self::InputError::*; in fmt() 357 let mut writer = Writer::new(mem.clone(), avail_desc).map_err(InputError::Descriptor)?; in fill_event_virtqueue() 361 writer.write_obj(evt).map_err(InputError::WriteQueue)?; in fill_event_virtqueue() 414 let mut reader = Reader::new(mem.clone(), avail_desc).map_err(InputError::Descriptor)?; in read_event_virtqueue() 416 let evt: virtio_input_event = reader.read_obj().map_err(InputError::ReadQueue)?; in read_event_virtqueue()
|
D | event_source.rs | 7 use super::InputError; 66 .map_err(InputError::EventsReadError)?; in receive_events() 116 .map_err(InputError::EventsWriteError)?; in send_event()
|
/external/autotest/site_utils/tester_feedback/ |
D | input_handlers.py | 8 class InputError(Exception): class 103 raise InputError 145 raise InputError
|
D | sequenced_request.py | 56 except input_handlers.InputError:
|
/external/tensorflow/tensorflow/python/distribute/coordinator/ |
D | cluster_coordinator.py | 232 class InputError(Exception): class 402 if not isinstance(e, InputError): 403 e = InputError(e)
|
D | cluster_coordinator_test.py | 677 coordinator_lib.InputError, 855 with self.assertRaises(coordinator_lib.InputError): 858 with self.assertRaises(coordinator_lib.InputError):
|
/external/python/cpython2/Doc/tutorial/ |
D | errors.rst | 291 class InputError(Error):
|
/external/python/cpython3/Doc/tutorial/ |
D | errors.rst | 338 class InputError(Error):
|
/external/crosvm/src/ |
D | linux.rs | 139 InputDeviceNew(virtio::InputError),
|