Lines Matching refs:IResult
8 Err, IResult,
15 fn test(input: &str) -> IResult<&str, &str> {
45 let res: IResult<_, _, error::Error<_>> = tag(TAG)(INPUT);
63 let res: IResult<_, _, error::Error<_>> = tag(TAG)(INPUT);
81 let res: IResult<_, _, error::Error<_>> = take(9_usize)(INPUT);
111 let res: IResult<_, _, (_, ErrorKind)> = take_until(FIND)(INPUT);
142 let res: IResult<_, _, (_, ErrorKind)> = take(13_usize)(INPUT);
163 fn f(i: &str) -> IResult<&str, &str> {
181 fn f(i: &str) -> IResult<&str, &str> {
206 fn test(input: &str) -> IResult<&str, &str> {
241 fn test(input: &str) -> IResult<&str, &str> {
272 fn test(input: &str) -> IResult<&str, &str> {
315 fn test(input: &str) -> IResult<&str, &str> {
344 fn test(input: &str) -> IResult<&str, &str> {
374 fn test(input: &str) -> IResult<&str, &str> {
406 let res: IResult<_, _, (_, ErrorKind)> = take_until(FIND)(INPUT);
423 fn test(input: &str) -> IResult<&str, &str> {
456 fn test(input: &str) -> IResult<&str, &str> {
473 fn test(input: &str) -> IResult<&str, &str> {
492 let res: IResult<_, _, (_, ErrorKind)> = take_until(FIND)(INPUT);
509 fn f(i: &str) -> IResult<&str, &str> {
519 fn dot(i: &str) -> IResult<&str, &str> {
529 fn test(i: &str) -> IResult<&str, &str> {