Searched refs:anychar (Results 1 - 5 of 5) sorted by relevance
/third_party/curl/tests/unit/ |
H A D | unit1302.c | 57 unsigned char anychar = 'x'; variable 147 decoded = &anychar; /* not NULL */ 156 decoded = &anychar; /* not NULL */ 165 decoded = &anychar; /* not NULL */ 174 decoded = &anychar; /* not NULL */ 183 decoded = &anychar; /* not NULL */
|
/third_party/rust/crates/nom/tests/ |
H A D | json.rs | 6 character::complete::{anychar, char, multispace0, none_of}, 64 map_res(anychar, |c| { in character()
|
/third_party/rust/crates/nom/benchmarks/benches/ |
H A D | json.rs | 11 character::complete::{anychar, char, multispace0, none_of}, 69 map_res(anychar, |c| { in character()
|
/third_party/rust/crates/nom/src/character/ |
H A D | streaming.rs | 285 /// # use nom::{character::streaming::anychar, Err, error::ErrorKind, IResult, Needed}; 286 /// assert_eq!(anychar::<_, (_, ErrorKind)>("abc"), Ok(("bc",'a'))); 287 /// assert_eq!(anychar::<_, (_, ErrorKind)>(""), Err(Err::Incomplete(Needed::new(1)))); 289 pub fn anychar<T, E: ParseError<T>>(input: T) -> IResult<T, char, E> in anychar() functions 755 use super::anychar; in anychar_str() 756 assert_eq!(anychar::<_, (&str, ErrorKind)>("Ә"), Ok(("", 'Ә'))); in anychar_str()
|
H A D | complete.rs | 301 /// # use nom::{character::complete::anychar, Err, error::{Error, ErrorKind}, IResult}; 303 /// anychar(input) 309 pub fn anychar<T, E: ParseError<T>>(input: T) -> IResult<T, char, E> in anychar() functions
|
Completed in 5 milliseconds