Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp101 static cl::opt<bool> SortIncludes( variable
405 if (SortIncludes.getNumOccurrences() != 0) { in format()
406 if (SortIncludes) in format()
407 FormatStyle->SortIncludes = FormatStyle::SI_CaseSensitive; in format()
409 FormatStyle->SortIncludes = FormatStyle::SI_Never; in format()
/freebsd-13.1/contrib/wpa/wpa_supplicant/binder/
H A D.clang-format9 SortIncludes: false
/freebsd-13.1/contrib/libcbor/
H A D.clang-format127 SortIncludes: true
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h2925 SortIncludesOptions SortIncludes; member
3488 SortIncludes == R.SortIncludes &&
/freebsd-13.1/
H A D.clang-format165 SortIncludes: true
/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp709 IO.mapOptional("SortIncludes", Style.SortIncludes); in mapping()
1121 LLVMStyle.SortIncludes = FormatStyle::SI_CaseSensitive; in getLLVMStyle()
1327 ChromiumStyle.SortIncludes = FormatStyle::SI_CaseSensitive; in getChromiumStyle()
1441 NoStyle.SortIncludes = FormatStyle::SI_Never; in getNoStyle()
2327 if (Style.SortIncludes == FormatStyle::SI_CaseInsensitive) { in sortCppIncludes()
2657 if (!Style.SortIncludes || Style.DisableFormat) in sortIncludes()
2697 auto SortIncludes = [](const FormatStyle &Style, StringRef Code, in formatReplacements() local
2703 processReplacements(SortIncludes, Code, Replaces, Style); in formatReplacements()