Home
last modified time | relevance | path

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

/freebsd-13.1/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()
336 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.cpp1303 Text.append(UseCRLF ? "\r\n" : "\n"); in appendNewlineText()
1314 Text.append(UseCRLF ? "\\\r\n" : "\\\n"); in appendEscapedNewlineText()
H A DFormat.cpp754 IO.mapOptional("UseCRLF", Style.UseCRLF); in mapping()
1084 LLVMStyle.UseCRLF = false; in getLLVMStyle()
1691 Style.UseCRLF) in analyze()
1692 : Style.UseCRLF); in analyze()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h3378 bool UseCRLF; member
3521 UseTab == R.UseTab && UseCRLF == R.UseCRLF &&