Home
last modified time | relevance | path

Searched refs:SortIncludesOptions (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h4372 struct SortIncludesOptions { struct
4388 bool operator==(const SortIncludesOptions &R) const {
4391 bool operator!=(const SortIncludesOptions &R) const {
4398 SortIncludesOptions SortIncludes;
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp663 template <> struct MappingTraits<FormatStyle::SortIncludesOptions> {
664 static void enumInput(IO &IO, FormatStyle::SortIncludesOptions &Value) { in enumInput()
665 IO.enumCase(Value, "Never", FormatStyle::SortIncludesOptions({})); in enumInput()
667 FormatStyle::SortIncludesOptions({/*Enabled=*/true, in enumInput()
670 FormatStyle::SortIncludesOptions({/*Enabled=*/true, in enumInput()
674 IO.enumCase(Value, "false", FormatStyle::SortIncludesOptions({})); in enumInput()
676 FormatStyle::SortIncludesOptions({/*Enabled=*/true, in enumInput()
680 static void mapping(IO &IO, FormatStyle::SortIncludesOptions &Value) { in mapping()