Home
last modified time | relevance | path

Searched refs:is_alphabetic (Results 1 - 4 of 4) sorted by relevance

/third_party/rust/crates/nom/src/character/
H A Dmod.rs16 /// # use nom::character::is_alphabetic;
17 /// assert_eq!(is_alphabetic(b'9'), false);
18 /// assert_eq!(is_alphabetic(b'a'), true);
21 pub fn is_alphabetic(chr: u8) -> bool { in is_alphabetic() functions
83 is_alphabetic(chr) || is_digit(chr) in is_alphanumeric()
/third_party/rust/crates/nom/src/bytes/
H A Dtests.rs1 use crate::character::is_alphabetic;
358 take_while(is_alphabetic)(i) in take_while()
376 take_while1(is_alphabetic)(i) in take_while1()
397 take_while_m_n(2, 4, is_alphabetic)(i) in take_while_m_n()
422 take_till(is_alphabetic)(i) in take_till()
440 take_till1(is_alphabetic)(i) in take_till1()
540 take_while_m_n(1, 1, |c: char| c.is_alphabetic())(i) in take_while_m_n_utf8_full_match()
H A Dcomplete.rs172 /// use nom::character::is_alphabetic;
175 /// take_while(is_alphabetic)(s)
203 /// use nom::character::is_alphabetic;
206 /// take_while1(is_alphabetic)(s)
237 /// use nom::character::is_alphabetic;
240 /// take_while_m_n(3, 6, is_alphabetic)(s)
714 super::take_while_m_n(1, 4, |c: char| c.is_alphabetic())("øn"); in complete_take_while_m_n_utf8_all_matching()
721 super::take_while_m_n(1, 1, |c: char| c.is_alphabetic())("øn"); in complete_take_while_m_n_utf8_all_matching_substring()
/third_party/rust/crates/nom/src/
H A Dstr.rs155 fn is_alphabetic(c: char) -> bool { in is_alphabetic() functions
164 take_while(is_alphabetic)(i) in take_while()
182 take_while1(is_alphabetic)(i) in take_while1()

Completed in 5 milliseconds