Home
last modified time | relevance | path

Searched defs:ClassBytesRange (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/regex-syntax/src/hir/
Dmod.rs1098 pub fn push(&mut self, range: ClassBytesRange) { in push()
1110 pub fn ranges(&self) -> &[ClassBytesRange] { in ranges()
1176 fn next(&mut self) -> Option<&'a ClassBytesRange> { in next()
1186 pub struct ClassBytesRange { struct
1191 impl Interval for ClassBytesRange { argument
1218 ranges: &mut Vec<ClassBytesRange>, in case_fold_simple()
1234 impl ClassBytesRange { implementation
1239 pub fn new(start: u8, end: u8) -> ClassBytesRange { in new()
1260 impl fmt::Debug for ClassBytesRange { implementation
/external/rust/crates/regex/src/
Dcompile.rs444 ranges: &[hir::ClassBytesRange], in c_class_bytes()