Home
last modified time | relevance | path

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

/external/rust/crates/csv-core/src/
Dwriter.rs22 requires_quotes: [false; 256], in new()
38 wtr.requires_quotes[self.wtr.delimiter as usize] = true; in build()
39 wtr.requires_quotes[self.wtr.quote as usize] = true; in build()
43 wtr.requires_quotes[self.wtr.escape as usize] = true; in build()
51 wtr.requires_quotes[b'\r' as usize] = true; in build()
52 wtr.requires_quotes[b'\n' as usize] = true; in build()
55 wtr.requires_quotes[b as usize] = true; in build()
162 requires_quotes: [bool; 256], field
173 let mut requires_quotes = [false; 256]; in clone() localVariable
175 requires_quotes[i] = self.requires_quotes[i]; in clone()
[all …]