Searched refs:ParserBuilder (Results 1 - 7 of 7) sorted by relevance
/third_party/rust/crates/regex/regex-syntax/src/ |
H A D | parser.rs | 11 /// [AST `ParserBuilder`](ast/parse/struct.ParserBuilder.html) 15 pub struct ParserBuilder { structure names 16 ast: ast::parse::ParserBuilder, 20 impl ParserBuilder { impls 22 pub fn new() -> ParserBuilder { in new() 23 ParserBuilder::default() in new() 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() [all...] |
H A D | lib.rs | 162 pub use crate::parser::{Parser, ParserBuilder};
|
/third_party/rust/crates/regex/regex-syntax/src/hir/ |
H A D | print.rs | 241 use crate::ParserBuilder; 253 F: FnMut(&mut ParserBuilder) -> &mut ParserBuilder, in roundtrip_with() 255 let mut builder = ParserBuilder::new(); in roundtrip_with()
|
/third_party/rust/crates/regex/regex-syntax/src/ast/ |
H A D | print.rs | 399 use crate::ast::parse::ParserBuilder; 407 F: FnMut(&mut ParserBuilder) -> &mut ParserBuilder, in roundtrip_with() 409 let mut builder = ParserBuilder::new(); in roundtrip_with()
|
H A D | parse.rs | 114 pub struct ParserBuilder { structure names 120 impl Default for ParserBuilder { 121 fn default() -> ParserBuilder { in default() 122 ParserBuilder::new() in default() 126 impl ParserBuilder { impls 128 pub fn new() -> ParserBuilder { in new() 129 ParserBuilder { in new() 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() [all...] |
/third_party/rust/crates/regex/src/ |
H A D | exec.rs | 10 use regex_syntax::ParserBuilder; 238 let mut parser = ParserBuilder::new() in parse()
|
/third_party/rust/crates/regex/regex-syntax/src/hir/literal/ |
H A D | mod.rs | 32 /// [`nest_limit` on your `Parser`](../../struct.ParserBuilder.html#method.nest_limit). 977 use crate::ParserBuilder; 1077 let expr = ParserBuilder::new() 1084 let expr = ParserBuilder::new() 1270 let expr = ParserBuilder::new() 1279 let expr = ParserBuilder::new()
|
Completed in 7 milliseconds