Searched refs:anychar (Results 1 – 4 of 4) sorted by relevance
/external/curl/tests/unit/ |
D | unit1302.c | 53 unsigned char anychar = 'x'; variable 131 decoded = &anychar; /* not NULL */ 140 decoded = &anychar; /* not NULL */ 149 decoded = &anychar; /* not NULL */ 158 decoded = &anychar; /* not NULL */
|
/external/rust/crates/nom/src/character/ |
D | streaming.rs | 280 pub fn anychar<T, E: ParseError<T>>(input: T) -> IResult<T, char, E> in anychar() function 663 use super::anychar; in anychar_str() 664 assert_eq!(anychar::<_, (&str, ErrorKind)>("Ә"), Ok(("", 'Ә'))); in anychar_str()
|
D | complete.rs | 296 pub fn anychar<T, E: ParseError<T>>(input: T) -> IResult<T, char, E> in anychar() function
|
/external/rust/crates/nom/ |
D | CHANGELOG.md | 324 - `anychar!` now works correctly with multibyte characters 370 - `anychar` can now work on any input type
|