Lines Matching refs:INPUT

13     const INPUT: &str = "Hello World!";
19 match test(INPUT) {
42 const INPUT: &str = "Hello";
45 let res: IResult<_, _, error::Error<_>> = tag(TAG)(INPUT);
60 const INPUT: &str = "Hello World!";
61 const TAG: &str = "Random"; // TAG must be closer than INPUT.
63 let res: IResult<_, _, error::Error<_>> = tag(TAG)(INPUT);
77 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř";
81 let res: IResult<_, _, error::Error<_>> = take(9_usize)(INPUT);
106 const INPUT: &str = "βèƒôřèÂßÇ∂áƒƭèř";
111 let res: IResult<_, _, (_, ErrorKind)> = take_until(FIND)(INPUT);
140 const INPUT: &str = "βèƒôřèÂßÇá";
142 let res: IResult<_, _, (_, ErrorKind)> = take(13_usize)(INPUT);
200 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř";
209 match test(INPUT) {
235 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř";
244 match test(INPUT) {
268 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř";
275 match test(INPUT) {
301 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř";
318 match test(INPUT) {
342 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř";
347 match test(INPUT) {
360 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř";
377 match test(INPUT) {
403 const INPUT: &str = "βèƒôřè";
406 let res: IResult<_, _, (_, ErrorKind)> = take_until(FIND)(INPUT);
419 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř";
426 match test(INPUT) {
452 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř";
459 match test(INPUT) {
471 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř";
476 match test(INPUT) {
489 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř";
492 let res: IResult<_, _, (_, ErrorKind)> = take_until(FIND)(INPUT);