Lines Matching refs:write
204 Exactly(x) => write!(self.wtr, "{{{}}}", x),
205 AtLeast(x) => write!(self.wtr, "{{{},}}", x),
206 Bounded(x, y) => write!(self.wtr, "{{{},{}}}", x, y),
215 Punctuation => write!(self.wtr, r"\{}", ast.c),
216 Octal => write!(self.wtr, r"\{:o}", ast.c as u32),
218 write!(self.wtr, r"\x{:02X}", ast.c as u32)
221 write!(self.wtr, r"\u{:04X}", ast.c as u32)
224 write!(self.wtr, r"\U{:08X}", ast.c as u32)
227 write!(self.wtr, r"\x{{{:X}}}", ast.c as u32)
230 write!(self.wtr, r"\u{{{:X}}}", ast.c as u32)
233 write!(self.wtr, r"\U{{{:X}}}", ast.c as u32)
382 Named(ref x) => write!(self.wtr, "{{{}}}", x),
384 write!(self.wtr, "{{{}={}}}", name, value)
387 write!(self.wtr, "{{{}:{}}}", name, value)
390 write!(self.wtr, "{{{}!={}}}", name, value)