Home
last modified time | relevance | path

Searched refs:find_byte (Results 1 – 5 of 5) sorted by relevance

/third_party/rust/crates/regex/src/
Dexpand.rs3 use crate::find_byte::find_byte;
14 match find_byte(b'$', replacement.as_bytes()) { in expand_str()
56 match find_byte(b'$', replacement) { in expand_bytes()
Dfind_byte.rs5 pub fn find_byte(needle: u8, haystack: &[u8]) -> Option<usize> { in find_byte() function
Dlib.rs742 mod find_byte; module
Dre_unicode.rs9 use crate::find_byte::find_byte;
1276 match find_byte(b'$', s.as_bytes()) { in no_expansion()
Dre_bytes.rs9 use crate::find_byte::find_byte;
1225 match find_byte(b'$', s) { in no_expansion()