Home
last modified time | relevance | path

Searched defs:ParseIntError (Results 1 – 11 of 11) sorted by relevance

/third_party/rust/rust/library/core/src/num/
Derror.rs66 pub struct ParseIntError { struct
67 pub(super) kind: IntErrorKind,
113 impl ParseIntError { impl
123 impl fmt::Display for ParseIntError { implementation
131 impl Error for ParseIntError { implementation
Dmod.rs1431 fn from_str_radix<T: FromStrRadixHelper>(src: &str, radix: u32) -> Result<T, ParseIntError> { in from_str_radix() argument
/third_party/rust/rust/tests/ui/rfcs/rfc-1937-termination-trait/
Dtermination-trait-in-test.rs19 fn test_a_positive_bench(_: &mut Bencher) -> Result<(), ParseIntError> { in test_a_positive_bench() argument
25 fn test_a_neg_bench(_: &mut Bencher) -> Result<(), ParseIntError> { in test_a_neg_bench() argument
/third_party/rust/rust/src/tools/clippy/tests/ui/
Dfrom_str_radix_10.rs5 pub fn from_str_radix(_: &str, _: u32) -> Result<(), std::num::ParseIntError> { in from_str_radix()
11 fn from_str_radix(_: &str, _: u32) -> Result<(), std::num::ParseIntError> { in from_str_radix()
Dsignificant_drop_in_scrutinee.rs582 fn to_number(&self) -> Result<i64, ParseIntError> { in to_number() argument
/third_party/rust/crates/nom/examples/
Dstring.rs32 E: ParseError<&'a str> + FromExternalError<&'a str, std::num::ParseIntError>, in parse_unicode()
63 E: ParseError<&'a str> + FromExternalError<&'a str, std::num::ParseIntError>, in parse_escaped_char()
/third_party/rust/rust/src/tools/clippy/clippy_dev/src/
Dserve.rs63 pub fn validate_port(arg: &OsStr) -> Result<(), ParseIntError> { in validate_port() argument
/third_party/rust/crates/nom/tests/
Dcss.rs13 fn from_hex(input: &str) -> Result<u8, std::num::ParseIntError> { in from_hex()
/third_party/rust/crates/clap/tests/derive/
Dnon_literal_attributes.rs128 fn parse_hex(input: &str) -> Result<u64, ParseIntError> { in parse_hex() argument
Dcustom_string_parsers.rs60 fn parse_hex(input: &str) -> Result<u64, ParseIntError> { in parse_hex() argument
/third_party/rust/rust/src/tools/tidy/src/features/
Dversion.rs29 ParseIntError(ParseIntError), enumerator