Home
last modified time | relevance | path

Searched refs:re_set (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/crates/regex/src/
Dlib.rs632 pub use crate::re_set::unicode::*;
732 pub use crate::re_set::bytes::*;
752 mod re_set; module
Dexec.rs24 use crate::re_set;
1282 pub fn into_regex_set(self) -> re_set::unicode::RegexSet { in into_regex_set()
1283 re_set::unicode::RegexSet::from(self) in into_regex_set()
1292 pub fn into_byte_regex_set(self) -> re_set::bytes::RegexSet { in into_byte_regex_set()
1293 re_set::bytes::RegexSet::from(self) in into_byte_regex_set()
Dre_builder.rs241 use crate::re_set::$regex_mod::RegexSet;