Home
last modified time | relevance | path

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

/third_party/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()
/third_party/rust/crates/regex/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()
/third_party/rust/crates/regex/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()
719 Ok(if self.flags().dot_matches_new_line() { in hir_dot()
1010 dot_matches_new_line: Option<bool>, field
1033 flags.dot_matches_new_line = Some(enable); in from_ast()
1054 if self.dot_matches_new_line.is_none() { in merge()
1055 self.dot_matches_new_line = previous.dot_matches_new_line; in merge()
1073 fn dot_matches_new_line(&self) -> bool { in dot_matches_new_line() method
1074 self.dot_matches_new_line.unwrap_or(false) in dot_matches_new_line()
/third_party/rust/crates/regex/regex-capi/src/
Drure.rs122 builder.dot_matches_new_line(flags & RURE_FLAG_DOTNL > 0);
508 builder.dot_matches_new_line(flags & RURE_FLAG_DOTNL > 0);
/third_party/rust/crates/regex/
DCHANGELOG.md588 Correct outdated documentation on `RegexBuilder::dot_matches_new_line`.