Lines Matching refs:rfind
68 memmem::rfind(haystack.as_bytes(), needle.as_bytes()).is_some()
75 move |h| finder.rfind(h.as_bytes()).is_some()
172 finder(needle.as_bytes()).rfind(haystack.as_bytes()).is_some()
179 move |h| finder.rfind(h.as_bytes()).is_some()
189 |h, n| finder(n).rfind(h),
264 bstr::ByteSlice::rfind(haystack.as_bytes(), needle.as_bytes())
272 move |h| finder.rfind(h.as_bytes()).is_some()
297 move |h, _| self.0.rfind(h),
835 mut rfind: impl FnMut(&[u8], &[u8]) -> Option<usize> + 'a,
843 match rfind(&haystack[..end], needle) {