Home
last modified time | relevance | path

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

/external/rust/crates/regex-syntax/src/hir/literal/
Dmod.rs985 struct Bytes(Vec<ULiteral>);
987 struct Unicode(Vec<ULiteral>);
989 fn escape_lits(blits: &[Literal]) -> Vec<ULiteral> { in escape_lits() argument
993 .push(ULiteral { v: escape_bytes(&blit), cut: blit.is_cut() }); in escape_lits()
1008 pub struct ULiteral { struct
1013 impl ULiteral { implementation
1019 impl fmt::Debug for ULiteral { implementation
1029 impl PartialEq<Literal> for ULiteral { implementation
1035 impl PartialEq<ULiteral> for Literal {
1036 fn eq(&self, other: &ULiteral) -> bool { in eq()
[all …]