Searched refs:UseCRLF (Results 1 – 5 of 5) sorted by relevance
38 bool UseCRLF) in WhitespaceManager() argument39 : SourceMgr(SourceMgr), Style(Style), UseCRLF(UseCRLF) {} in WhitespaceManager()41 bool useCRLF() const { return UseCRLF; } in useCRLF()366 bool UseCRLF; variable
405 const FormatStyle &Style, bool UseCRLF);
470 encoding::Encoding Encoding, const FormatStyle &Style, bool UseCRLF) in BreakableBlockComment() argument480 .split(Lines, UseCRLF ? "\r\n" : "\n"); in BreakableBlockComment()
1711 StringRef Newline = UseCRLF ? "\r\n" : "\n"; in appendNewlineText()1729 Text.append(UseCRLF ? "\\\r\n" : "\\\n"); in appendEscapedNewlineText()
928 bool UseCRLF = false; in mapping() local965 IO.mapOptional("UseCRLF", UseCRLF); in mapping()1270 Style.LineEnding = UseCRLF ? FormatStyle::LE_CRLF : FormatStyle::LE_LF; in mapping()1271 else if (UseCRLF) in mapping()