Lines Matching refs:str
13 const INPUT: &str = "Hello World!"; in tagtr_succeed()
14 const TAG: &str = "Hello"; in tagtr_succeed()
15 fn test(input: &str) -> IResult<&str, &str> { in tagtr_succeed() argument
42 const INPUT: &str = "Hello"; in tagtr_incomplete()
43 const TAG: &str = "Hello World!"; in tagtr_incomplete()
60 const INPUT: &str = "Hello World!"; in tagtr_error()
61 const TAG: &str = "Random"; // TAG must be closer than INPUT. in tagtr_error()
77 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_s_succeed()
78 const CONSUMED: &str = "βèƒôřèÂßÇ"; in take_s_succeed()
79 const LEFTOVER: &str = "áƒƭèř"; in take_s_succeed()
106 const INPUT: &str = "βèƒôřèÂßÇ∂áƒƭèř"; in take_until_succeed()
107 const FIND: &str = "ÂßÇ∂"; in take_until_succeed()
108 const CONSUMED: &str = "βèƒôřè"; in take_until_succeed()
109 const LEFTOVER: &str = "ÂßÇ∂áƒƭèř"; in take_until_succeed()
140 const INPUT: &str = "βèƒôřèÂßÇá"; in take_s_incomplete()
163 fn f(i: &str) -> IResult<&str, &str> { in take_while() argument
181 fn f(i: &str) -> IResult<&str, &str> { in take_while1() argument
200 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_till_s_succeed()
201 const CONSUMED: &str = "βèƒôřèÂßÇ"; in take_till_s_succeed()
202 const LEFTOVER: &str = "áƒƭèř"; in take_till_s_succeed()
206 fn test(input: &str) -> IResult<&str, &str> { in take_till_s_succeed() argument
235 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_while_succeed_none()
236 const CONSUMED: &str = ""; in take_while_succeed_none()
237 const LEFTOVER: &str = "βèƒôřèÂßÇáƒƭèř"; in take_while_succeed_none()
241 fn test(input: &str) -> IResult<&str, &str> { in take_while_succeed_none() argument
268 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in is_not_succeed()
269 const AVOID: &str = "£úçƙ¥á"; in is_not_succeed()
270 const CONSUMED: &str = "βèƒôřèÂßÇ"; in is_not_succeed()
271 const LEFTOVER: &str = "áƒƭèř"; in is_not_succeed()
272 fn test(input: &str) -> IResult<&str, &str> { in is_not_succeed() argument
301 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_while_succeed_some()
302 const CONSUMED: &str = "βèƒôřèÂßÇ"; in take_while_succeed_some()
303 const LEFTOVER: &str = "áƒƭèř"; in take_while_succeed_some()
315 fn test(input: &str) -> IResult<&str, &str> { in take_while_succeed_some() argument
342 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in is_not_fail()
343 const AVOID: &str = "βúçƙ¥"; in is_not_fail()
344 fn test(input: &str) -> IResult<&str, &str> { in is_not_fail() argument
360 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_while1_succeed()
361 const CONSUMED: &str = "βèƒôřèÂßÇ"; in take_while1_succeed()
362 const LEFTOVER: &str = "áƒƭèř"; in take_while1_succeed()
374 fn test(input: &str) -> IResult<&str, &str> { in take_while1_succeed() argument
403 const INPUT: &str = "βèƒôřè"; in take_until_incomplete()
404 const FIND: &str = "βèƒôřèÂßÇ"; in take_until_incomplete()
419 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in is_a_succeed()
420 const MATCH: &str = "βèƒôřèÂßÇ"; in is_a_succeed()
421 const CONSUMED: &str = "βèƒôřèÂßÇ"; in is_a_succeed()
422 const LEFTOVER: &str = "áƒƭèř"; in is_a_succeed()
423 fn test(input: &str) -> IResult<&str, &str> { in is_a_succeed() argument
452 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_while1_fail()
456 fn test(input: &str) -> IResult<&str, &str> { in take_while1_fail() argument
471 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in is_a_fail()
472 const MATCH: &str = "Ûñℓúçƙ¥"; in is_a_fail()
473 fn test(input: &str) -> IResult<&str, &str> { in is_a_fail() argument
489 const INPUT: &str = "βèƒôřèÂßÇáƒƭèř"; in take_until_error()
490 const FIND: &str = "Ráñδô₥"; in take_until_error()
509 fn f(i: &str) -> IResult<&str, &str> { in recognize_is_a() argument
519 fn dot(i: &str) -> IResult<&str, &str> { in utf8_indexing() argument
529 fn test(i: &str) -> IResult<&str, &str> { in case_insensitive() argument