Home
last modified time | relevance | path

Searched refs:dot_matches_new_line (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/regex/src/
Dre_builder.rs11 pub dot_matches_new_line: bool, field
27 dot_matches_new_line: false, in default()
106 pub fn dot_matches_new_line(
110 self.0.dot_matches_new_line = yes;
301 pub fn dot_matches_new_line(
305 self.0.dot_matches_new_line = yes;
Dexec.rs242 .dot_matches_new_line(self.options.dot_matches_new_line) in parse()
/external/rust/crates/regex-syntax/src/
Dparser.rs132 pub fn dot_matches_new_line(&mut self, yes: bool) -> &mut ParserBuilder { in dot_matches_new_line() method
133 self.hir.dot_matches_new_line(yes); in dot_matches_new_line()
/external/rust/crates/regex-automata/src/
Dregex.rs589 pub fn dot_matches_new_line(&mut self, yes: bool) -> &mut RegexBuilder { in dot_matches_new_line() method
590 self.dfa.dot_matches_new_line(yes); in dot_matches_new_line()
Ddense.rs2015 pub fn dot_matches_new_line(&mut self, yes: bool) -> &mut Builder { in dot_matches_new_line() method
2016 self.parser.dot_matches_new_line(yes); in dot_matches_new_line()
/external/rust/crates/regex-syntax/src/hir/
Dtranslate.rs75 pub fn dot_matches_new_line( in dot_matches_new_line() method
79 self.flags.dot_matches_new_line = if yes { Some(true) } else { None }; in dot_matches_new_line()
725 Ok(if self.flags().dot_matches_new_line() { in hir_dot()
994 dot_matches_new_line: Option<bool>, field
1017 flags.dot_matches_new_line = Some(enable); in from_ast()
1038 if self.dot_matches_new_line.is_none() { in merge()
1039 self.dot_matches_new_line = previous.dot_matches_new_line; in merge()
1057 fn dot_matches_new_line(&self) -> bool { in dot_matches_new_line() method
1058 self.dot_matches_new_line.unwrap_or(false) in dot_matches_new_line()
/external/rust/crates/regex/
DCHANGELOG.md450 Correct outdated documentation on `RegexBuilder::dot_matches_new_line`.