Home
last modified time | relevance | path

Searched defs:ParserBuilder (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/crates/regex/regex-syntax/src/
Dparser.rs15 pub struct ParserBuilder { struct
16 ast: ast::parse::ParserBuilder, argument
20 impl ParserBuilder { impl
56 pub fn nest_limit(&mut self, limit: u32) -> &mut ParserBuilder { in nest_limit()
76 pub fn octal(&mut self, yes: bool) -> &mut ParserBuilder { in octal()
92 pub fn allow_invalid_utf8(&mut self, yes: bool) -> &mut ParserBuilder { in allow_invalid_utf8()
105 pub fn ignore_whitespace(&mut self, yes: bool) -> &mut ParserBuilder { in ignore_whitespace()
114 pub fn case_insensitive(&mut self, yes: bool) -> &mut ParserBuilder { in case_insensitive()
123 pub fn multi_line(&mut self, yes: bool) -> &mut ParserBuilder { in multi_line()
132 pub fn dot_matches_new_line(&mut self, yes: bool) -> &mut ParserBuilder { in dot_matches_new_line()
[all …]
/third_party/rust/crates/regex/regex-syntax/src/ast/
Dparse.rs114 pub struct ParserBuilder { struct
120 impl Default for ParserBuilder { argument
126 impl ParserBuilder { impl
178 pub fn nest_limit(&mut self, limit: u32) -> &mut ParserBuilder { in nest_limit()
198 pub fn octal(&mut self, yes: bool) -> &mut ParserBuilder { in octal()
211 pub fn ignore_whitespace(&mut self, yes: bool) -> &mut ParserBuilder { in ignore_whitespace()
Dprint.rs407 F: FnMut(&mut ParserBuilder) -> &mut ParserBuilder, in roundtrip_with()