Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/semver/src/
Dparse.rs34 let (major, text) = numeric_identifier(text, pos)?; in from_str()
38 let (minor, text) = numeric_identifier(text, pos)?; in from_str()
42 let (patch, text) = numeric_identifier(text, pos)?; in from_str()
161 fn numeric_identifier(input: &str, pos: Position) -> Result<(u64, &str), Error> { in numeric_identifier() function
298 let (major, text) = numeric_identifier(text, pos)?; in comparator()
310 let (minor, text) = numeric_identifier(text, pos)?; in comparator()
327 let (patch, text) = numeric_identifier(text, pos)?; in comparator()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/semver-1.0.22/src/
H A Dparse.rs34 let (major, text) = numeric_identifier(text, pos)?; in from_str()
38 let (minor, text) = numeric_identifier(text, pos)?; in from_str()
42 let (patch, text) = numeric_identifier(text, pos)?; in from_str()
161 fn numeric_identifier(input: &str, pos: Position) -> Result<(u64, &str), Error> { in numeric_identifier() function
298 let (major, text) = numeric_identifier(text, pos)?; in comparator()
310 let (minor, text) = numeric_identifier(text, pos)?; in comparator()
327 let (patch, text) = numeric_identifier(text, pos)?; in comparator()