Searched refs:dot_matches_new_line (Results 1 – 7 of 7) sorted by relevance
11 pub dot_matches_new_line: bool, field27 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;
242 .dot_matches_new_line(self.options.dot_matches_new_line) in parse()
132 pub fn dot_matches_new_line(&mut self, yes: bool) -> &mut ParserBuilder { in dot_matches_new_line() method133 self.hir.dot_matches_new_line(yes); in dot_matches_new_line()
589 pub fn dot_matches_new_line(&mut self, yes: bool) -> &mut RegexBuilder { in dot_matches_new_line() method590 self.dfa.dot_matches_new_line(yes); in dot_matches_new_line()
2015 pub fn dot_matches_new_line(&mut self, yes: bool) -> &mut Builder { in dot_matches_new_line() method2016 self.parser.dot_matches_new_line(yes); in dot_matches_new_line()
75 pub fn dot_matches_new_line( in dot_matches_new_line() method79 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>, field1017 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() method1058 self.dot_matches_new_line.unwrap_or(false) in dot_matches_new_line()
450 Correct outdated documentation on `RegexBuilder::dot_matches_new_line`.