Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DWhitespaceManager.h38 bool UseCRLF) in WhitespaceManager() argument
39 : SourceMgr(SourceMgr), Style(Style), UseCRLF(UseCRLF) {} in WhitespaceManager()
41 bool useCRLF() const { return UseCRLF; } in useCRLF()
366 bool UseCRLF; variable
H A DBreakableToken.h403 const FormatStyle &Style, bool UseCRLF);
H A DBreakableToken.cpp483 encoding::Encoding Encoding, const FormatStyle &Style, bool UseCRLF) in BreakableBlockComment() argument
493 .split(Lines, UseCRLF ? "\r\n" : "\n"); in BreakableBlockComment()
H A DWhitespaceManager.cpp1711 if (UseCRLF) { in appendNewlineText()
1728 Text.append(UseCRLF ? "\\\r\n" : "\\\n"); in appendEscapedNewlineText()
H A DFormat.cpp859 bool UseCRLF = false; in mapping() local
896 IO.mapOptional("UseCRLF", UseCRLF); in mapping()
1179 Style.LineEnding = UseCRLF ? FormatStyle::LE_CRLF : FormatStyle::LE_LF; in mapping()
1180 else if (UseCRLF) in mapping()