Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/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()
353 bool UseCRLF; variable
H A DBreakableToken.h362 const FormatStyle &Style, bool UseCRLF);
H A DBreakableToken.cpp369 encoding::Encoding Encoding, const FormatStyle &Style, bool UseCRLF) in BreakableBlockComment() argument
379 .split(Lines, UseCRLF ? "\r\n" : "\n"); in BreakableBlockComment()
H A DWhitespaceManager.cpp1466 if (UseCRLF) { in appendNewlineText()
1483 Text.append(UseCRLF ? "\\\r\n" : "\\\n"); in appendEscapedNewlineText()
H A DFormat.cpp815 bool UseCRLF = false; in mapping() local
835 IO.mapOptional("UseCRLF", UseCRLF); in mapping()
1089 Style.LineEnding = UseCRLF ? FormatStyle::LE_CRLF : FormatStyle::LE_LF; in mapping()
1090 else if (UseCRLF) in mapping()
/openbsd/gnu/llvm/clang/docs/
H A DClangFormatStyleOptions.rst5201 **UseCRLF** (``Boolean``) :versionbadge:`clang-format 10` :ref:`¶ <UseCRLF>`
H A DReleaseNotes.rst1138 - Add ``LineEnding`` option to deprecate ``DeriveLineEnding`` and ``UseCRLF``.