Home
last modified time | relevance | path

Searched refs:InvalidNumericEntity (Results 1 – 2 of 2) sorted by relevance

/external/rust/android-crates-io/crates/xml-rs/src/reader/parser/
Dinside_reference.rs65 … u32::from_str_radix(hex, 16).map_err(move |_| SyntaxError::InvalidNumericEntity(num_str.into()))? in numeric_reference_from_str()
67 …u32::from_str_radix(num_str, 10).map_err(move |_| SyntaxError::InvalidNumericEntity(num_str.into()… in numeric_reference_from_str()
/external/rust/android-crates-io/crates/xml-rs/src/reader/
Derror.rs55 InvalidNumericEntity(Box<str>), enumerator
98 Self::InvalidNumericEntity(ref v) => format!("Invalid numeric entity: {v}").into(), in to_cow()