Lines Matching refs:INPUT
13 const INPUT: &str = "Hello World!"; in tagtr_succeed() constant
19 match test(INPUT) { in tagtr_succeed()
42 const INPUT: &str = "Hello"; in tagtr_incomplete() constant
45 let res: IResult<_, _, error::Error<_>> = tag(TAG)(INPUT); in tagtr_incomplete()
60 const INPUT: &str = "Hello World!"; in tagtr_error() constant
63 let res: IResult<_, _, error::Error<_>> = tag(TAG)(INPUT); in tagtr_error()
77 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_s_succeed() constant
81 let res: IResult<_, _, error::Error<_>> = take(9_usize)(INPUT); in take_s_succeed()
106 const INPUT: &str = "βèƒôřèÂßÇ∂áƒƭèř"; in take_until_succeed() constant
111 let res: IResult<_, _, (_, ErrorKind)> = take_until(FIND)(INPUT); in take_until_succeed()
140 const INPUT: &str = "βèƒôřèÂßÇá"; in take_s_incomplete() constant
142 let res: IResult<_, _, (_, ErrorKind)> = take(13_usize)(INPUT); in take_s_incomplete()
200 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_till_s_succeed() constant
209 match test(INPUT) { in take_till_s_succeed()
235 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_while_succeed_none() constant
244 match test(INPUT) { in take_while_succeed_none()
268 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in is_not_succeed() constant
275 match test(INPUT) { in is_not_succeed()
301 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_while_succeed_some() constant
318 match test(INPUT) { in take_while_succeed_some()
342 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in is_not_fail() constant
347 match test(INPUT) { in is_not_fail()
360 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_while1_succeed() constant
377 match test(INPUT) { in take_while1_succeed()
403 const INPUT: &str = "βèƒôřè"; in take_until_incomplete() constant
406 let res: IResult<_, _, (_, ErrorKind)> = take_until(FIND)(INPUT); in take_until_incomplete()
419 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in is_a_succeed() constant
426 match test(INPUT) { in is_a_succeed()
452 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_while1_fail() constant
459 match test(INPUT) { in take_while1_fail()
471 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in is_a_fail() constant
476 match test(INPUT) { in is_a_fail()
489 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_until_error() constant
492 let res: IResult<_, _, (_, ErrorKind)> = take_until(FIND)(INPUT); in take_until_error()