HomeSort by: relevance | last modified time | path
    Searched refs:SortIncludes (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/tools/clang-format/
ClangFormat.cpp 101 static cl::opt<bool> SortIncludes(
104 "SortIncludes style flag"),
405 if (SortIncludes.getNumOccurrences() != 0) {
406 if (SortIncludes)
407 FormatStyle->SortIncludes = FormatStyle::SI_CaseSensitive;
409 FormatStyle->SortIncludes = FormatStyle::SI_Never;
412 Replacements Replaces = sortIncludes(*FormatStyle, Code->getBuffer(), Ranges,
  /src/external/apache2/llvm/dist/clang/include/clang/Format/
Format.h 2793 SortIncludesOptions SortIncludes;
3351 SortIncludes == R.SortIncludes &&
3505 tooling::Replacements sortIncludes(const FormatStyle &Style, StringRef Code,
  /src/external/apache2/llvm/dist/clang/tools/clang-format-vs/ClangFormat/
ClangFormatPackage.cs 37 private bool sortIncludes = false;
172 public bool SortIncludes
174 get { return sortIncludes; }
175 set { sortIncludes = value; }
388 if (options.SortIncludes)
  /src/external/apache2/llvm/dist/clang/lib/Format/
Format.cpp 672 IO.mapOptional("SortIncludes", Style.SortIncludes);
1077 LLVMStyle.SortIncludes = FormatStyle::SI_CaseSensitive;
1280 ChromiumStyle.SortIncludes = FormatStyle::SI_CaseSensitive;
1394 NoStyle.SortIncludes = FormatStyle::SI_Never;
2278 if (Style.SortIncludes == FormatStyle::SI_CaseInsensitive) {
2604 tooling::Replacements sortIncludes(const FormatStyle &Style, StringRef Code,
2608 if (!Style.SortIncludes || Style.DisableFormat)
2647 // `sortIncludes`.
2648 auto SortIncludes = [](const FormatStyle &Style, StringRef Code
    [all...]

Completed in 99 milliseconds