Searched defs:RegexBuilder (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/regex-automata/src/ |
D | regex.rs | 472 pub struct RegexBuilder { struct 477 impl RegexBuilder { implementation 558 pub fn anchored(&mut self, yes: bool) -> &mut RegexBuilder { in anchored() 567 pub fn case_insensitive(&mut self, yes: bool) -> &mut RegexBuilder { in case_insensitive() 580 pub fn ignore_whitespace(&mut self, yes: bool) -> &mut RegexBuilder { in ignore_whitespace() 589 pub fn dot_matches_new_line(&mut self, yes: bool) -> &mut RegexBuilder { in dot_matches_new_line() 598 pub fn swap_greed(&mut self, yes: bool) -> &mut RegexBuilder { in swap_greed() 611 pub fn unicode(&mut self, yes: bool) -> &mut RegexBuilder { in unicode() 622 pub fn allow_invalid_utf8(&mut self, yes: bool) -> &mut RegexBuilder { in allow_invalid_utf8() 652 pub fn nest_limit(&mut self, limit: u32) -> &mut RegexBuilder { in nest_limit() [all …]
|
/external/rust/crates/regex/src/ |
D | re_builder.rs | 53 impl RegexBuilder { impl
|
/external/rust/crates/regex-automata/tests/ |
D | collection.rs | 177 mut builder: RegexBuilder, in build_regex() 200 pub fn test_all<'a, I, T>(&mut self, builder: RegexBuilder, tests: I) in test_all() 301 fn apply_options(&self, test: &RegexTest, builder: &mut RegexBuilder) { in apply_options()
|