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.h405 const FormatStyle &Style, bool UseCRLF);
H A DBreakableToken.cpp470 encoding::Encoding Encoding, const FormatStyle &Style, bool UseCRLF) in BreakableBlockComment() argument
480 .split(Lines, UseCRLF ? "\r\n" : "\n"); in BreakableBlockComment()
H A DWhitespaceManager.cpp1711 StringRef Newline = UseCRLF ? "\r\n" : "\n"; in appendNewlineText()
1729 Text.append(UseCRLF ? "\\\r\n" : "\\\n"); in appendEscapedNewlineText()
H A DFormat.cpp928 bool UseCRLF = false; in mapping() local
965 IO.mapOptional("UseCRLF", UseCRLF); in mapping()
1270 Style.LineEnding = UseCRLF ? FormatStyle::LE_CRLF : FormatStyle::LE_LF; in mapping()
1271 else if (UseCRLF) in mapping()