Lines Matching refs:ParseError
8 error::{context, convert_error, ContextError, ErrorKind, ParseError, VerboseError},
30 fn sp<'a, E: ParseError<&'a str>>(i: &'a str) -> IResult<&'a str, &'a str, E> { in sp()
53 fn parse_str<'a, E: ParseError<&'a str>>(i: &'a str) -> IResult<&'a str, &'a str, E> { in parse_str()
65 fn boolean<'a, E: ParseError<&'a str>>(input: &'a str) -> IResult<&'a str, bool, E> {
79 fn null<'a, E: ParseError<&'a str>>(input: &'a str) -> IResult<&'a str, (), E> {
94 fn string<'a, E: ParseError<&'a str> + ContextError<&'a str>>( in string()
107 fn array<'a, E: ParseError<&'a str> + ContextError<&'a str>>( in array()
122 fn key_value<'a, E: ParseError<&'a str> + ContextError<&'a str>>( in key_value()
132 fn hash<'a, E: ParseError<&'a str> + ContextError<&'a str>>( in hash()
156 fn json_value<'a, E: ParseError<&'a str> + ContextError<&'a str>>( in json_value()
173 fn root<'a, E: ParseError<&'a str> + ContextError<&'a str>>( in root()