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.h43 bool UseCRLF) in WhitespaceManager() argument
44 : SourceMgr(SourceMgr), Style(Style), UseCRLF(UseCRLF) {} in WhitespaceManager()
46 bool useCRLF() const { return UseCRLF; } in useCRLF()
357 bool UseCRLF; variable
H A DBreakableToken.h406 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.cpp1671 if (UseCRLF) { in appendNewlineText()
1688 Text.append(UseCRLF ? "\\\r\n" : "\\\n"); in appendEscapedNewlineText()
H A DFormat.cpp866 bool UseCRLF = false; in mapping() local
897 IO.mapOptional("UseCRLF", UseCRLF); in mapping()
1169 Style.LineEnding = UseCRLF ? FormatStyle::LE_CRLF : FormatStyle::LE_LF; in mapping()
1170 else if (UseCRLF) in mapping()