/third_party/rust/crates/regex/tests/ |
D | test_default.rs | 27 use regex::RegexSet; 28 RegexSet::new($re) 85 use regex::{Regex, RegexBuilder, RegexSet, RegexSetBuilder}; in oibits() 111 assert_send::<RegexSet>(); in oibits() 112 assert_sync::<RegexSet>(); in oibits() 113 assert_unwind_safe::<RegexSet>(); in oibits() 114 assert_ref_unwind_safe::<RegexSet>(); in oibits() 120 assert_send::<bytes::RegexSet>(); in oibits() 121 assert_sync::<bytes::RegexSet>(); in oibits() 122 assert_unwind_safe::<bytes::RegexSet>(); in oibits() [all …]
|
D | test_default_bytes.rs | 10 use regex::bytes::RegexSet; 11 RegexSet::new($res)
|
/third_party/rust/crates/bindgen/bindgen/ |
D | regex_set.rs | 3 use regex::RegexSet as RxSet; 8 pub struct RegexSet { struct 18 impl RegexSet { impl 20 pub fn new() -> RegexSet { in new() 21 RegexSet { in new()
|
D | lib.rs | 95 pub use crate::regex_set::RegexSet; 1843 blocklisted_types: RegexSet, 1847 blocklisted_functions: RegexSet, 1851 blocklisted_items: RegexSet, 1855 blocklisted_files: RegexSet, 1859 opaque_types: RegexSet, 1873 allowlisted_types: RegexSet, 1876 allowlisted_functions: RegexSet, 1879 allowlisted_vars: RegexSet, 1882 allowlisted_files: RegexSet, [all …]
|
/third_party/rust/crates/regex/src/ |
D | re_set.rs | 108 pub struct RegexSet(Exec); 110 impl RegexSet { impl 126 pub fn new<I, S>(exprs: I) -> Result<RegexSet, Error> 140 pub fn empty() -> RegexSet { 433 impl From<Exec> for RegexSet { 435 RegexSet(exec) 439 impl fmt::Debug for RegexSet {
|
D | re_builder.rs | 241 use crate::re_set::$regex_mod::RegexSet; 269 pub fn build(&self) -> Result<RegexSet, Error> { 273 .map(RegexSet::from)
|
D | exec.rs | 1282 pub fn into_regex_set(self) -> re_set::unicode::RegexSet { in into_regex_set() argument 1283 re_set::unicode::RegexSet::from(self) in into_regex_set() 1292 pub fn into_byte_regex_set(self) -> re_set::bytes::RegexSet { in into_byte_regex_set() argument 1293 re_set::bytes::RegexSet::from(self) in into_byte_regex_set()
|
/third_party/rust/crates/regex/regex-capi/src/ |
D | rure.rs | 34 pub struct RegexSet { struct 35 re: bytes::RegexSet, argument 64 impl Deref for RegexSet { implementation 65 type Target = bytes::RegexSet; 66 fn deref(&self) -> &bytes::RegexSet { in deref() argument 476 ) -> *const RegexSet { 514 Box::into_raw(Box::new(RegexSet { re: re })) 529 fn rure_set_free(re: *const RegexSet) { 530 unsafe { drop(Box::from_raw(re as *mut RegexSet)); } 536 re: *const RegexSet, [all …]
|
/third_party/rust/crates/regex/bench/src/ |
D | bench.rs | 17 pub use regex::{Regex, RegexSet}; 19 pub use regex::bytes::{Regex, RegexSet}; 244 static ref RE: Mutex<RegexSet> = Mutex::new($re); 272 static ref RE: Mutex<RegexSet> = Mutex::new($re);
|
D | misc.rs | 8 use crate::RegexSet; 348 RegexSet::new(vec![ 368 RegexSet::new(vec![
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
D | enum_ty.rs | 10 use crate::regex_set::RegexSet; 153 enums: &RegexSet, in is_matching_enum() argument
|
/third_party/rust/crates/regex/ |
D | README.md | 147 This demonstrates how to use a `RegexSet` to match multiple (possibly 151 use regex::RegexSet; 153 let set = RegexSet::new(&[
|
D | CHANGELOG.md | 38 Improve `RegexSet` documentation examples. 216 Add `is_empty` predicate to `RegexSet`. 220 Add `empty` constructor to `RegexSet` for convenience. 605 Implement `size_hint` on `RegexSet` match iterators. 666 Clarify order of indices returned by RegexSet match iterator. 843 Fix RegexSet bug that caused match failure in some cases. 847 Fix literal optimization bug with RegexSet. 1036 A fully anchored RegexSet can now short-circuit.
|
/third_party/rust/crates/bindgen/bindgen-cli/ |
D | options.rs | 4 MacroTypeVariation, NonCopyUnionStyle, RegexSet, RustTarget, 936 regex_set: bindgen::RegexSet, in builder_from_flags() 987 let mut regex_set = RegexSet::new(); in builder_from_flags()
|