Home
last modified time | relevance | path

Searched refs:cnt_2 (Results 1 - 1 of 1) sorted by relevance

/third_party/rust/crates/nom/src/multi/
H A Dtests.rs235 fn cnt_2(i: &[u8]) -> IResult<&[u8], Vec<&[u8]>> { in count_test() functions
240 cnt_2(&b"abcabcabcdef"[..]), in count_test()
243 assert_eq!(cnt_2(&b"ab"[..]), Err(Err::Incomplete(Needed::new(1)))); in count_test()
244 assert_eq!(cnt_2(&b"abcab"[..]), Err(Err::Incomplete(Needed::new(1)))); in count_test()
246 cnt_2(&b"xxx"[..]), in count_test()
250 cnt_2(&b"xxxabcabcdef"[..]), in count_test()
257 cnt_2(&b"abcxxxabcdef"[..]), in count_test()

Completed in 2 milliseconds