Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DIncludeStyle.cpp11 using clang::tooling::IncludeStyle;
16 void MappingTraits<IncludeStyle::IncludeCategory>::mapping( in mapping()
17 IO &IO, IncludeStyle::IncludeCategory &Category) { in mapping()
24 void ScalarEnumerationTraits<IncludeStyle::IncludeBlocksStyle>::enumeration( in enumeration()
25 IO &IO, IncludeStyle::IncludeBlocksStyle &Value) { in enumeration()
26 IO.enumCase(Value, "Preserve", IncludeStyle::IBS_Preserve); in enumeration()
27 IO.enumCase(Value, "Merge", IncludeStyle::IBS_Merge); in enumeration()
28 IO.enumCase(Value, "Regroup", IncludeStyle::IBS_Regroup); in enumeration()
31 void ScalarEnumerationTraits<IncludeStyle::MainIncludeCharDiscriminator>::
32 enumeration(IO &IO, IncludeStyle::MainIncludeCharDiscriminator &Value) { in enumeration()
[all …]
H A DHeaderIncludes.cpp40 StringRef FileName, StringRef Code, const IncludeStyle &Style, in getOffsetAfterTokenSequence()
83 const IncludeStyle &Style) { in getOffsetAfterHeaderGuardsAndComments()
159 const IncludeStyle &Style) { in getMaxHeaderInsertionOffset()
190 IncludeCategoryManager::IncludeCategoryManager(const IncludeStyle &Style, in IncludeCategoryManager()
237 case IncludeStyle::MICD_Quote: in isMainHeader()
241 case IncludeStyle::MICD_AngleBracket: in isMainHeader()
245 case IncludeStyle::MICD_Any: in isMainHeader()
281 const IncludeStyle &Style) in HeaderIncludes()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/
H A DIncludeStyle.h20 struct IncludeStyle { struct
174 LLVM_YAML_IS_SEQUENCE_VECTOR(clang::tooling::IncludeStyle::IncludeCategory) in LLVM_YAML_IS_SEQUENCE_VECTOR() argument
180 struct MappingTraits<clang::tooling::IncludeStyle::IncludeCategory> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
182 clang::tooling::IncludeStyle::IncludeCategory &Category); in LLVM_YAML_IS_SEQUENCE_VECTOR()
187 clang::tooling::IncludeStyle::IncludeBlocksStyle> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
189 enumeration(IO &IO, clang::tooling::IncludeStyle::IncludeBlocksStyle &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
194 clang::tooling::IncludeStyle::MainIncludeCharDiscriminator> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
197 clang::tooling::IncludeStyle::MainIncludeCharDiscriminator &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
H A DHeaderIncludes.h30 IncludeCategoryManager(const IncludeStyle &Style, StringRef FileName);
42 const IncludeStyle Style;
55 const IncludeStyle &Style);
/freebsd/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h2789 tooling::IncludeStyle IncludeStyle; member
5398 IncludeStyle.IncludeBlocks == R.IncludeStyle.IncludeBlocks &&
5399 IncludeStyle.IncludeCategories == R.IncludeStyle.IncludeCategories &&
5400 IncludeStyle.IncludeIsMainRegex ==
5401 R.IncludeStyle.IncludeIsMainRegex &&
5402 IncludeStyle.IncludeIsMainSourceRegex ==
5403 R.IncludeStyle.IncludeIsMainSourceRegex &&
5404 IncludeStyle.MainIncludeChar == R.IncludeStyle.MainIncludeChar &&
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp1073 IO.mapOptional("IncludeBlocks", Style.IncludeStyle.IncludeBlocks); in mapping()
1074 IO.mapOptional("IncludeCategories", Style.IncludeStyle.IncludeCategories); in mapping()
1075 IO.mapOptional("IncludeIsMainRegex", Style.IncludeStyle.IncludeIsMainRegex); in mapping()
1077 Style.IncludeStyle.IncludeIsMainSourceRegex); in mapping()
1105 IO.mapOptional("MainIncludeChar", Style.IncludeStyle.MainIncludeChar); in mapping()
1596 LLVMStyle.IncludeStyle.IncludeBlocks = tooling::IncludeStyle::IBS_Preserve; in getLLVMStyle()
1597 LLVMStyle.IncludeStyle.IncludeCategories = { in getLLVMStyle()
1601 LLVMStyle.IncludeStyle.IncludeIsMainRegex = "(Test)?$"; in getLLVMStyle()
1602 LLVMStyle.IncludeStyle.MainIncludeChar = tooling::IncludeStyle::MICD_Quote; in getLLVMStyle()
1752 GoogleStyle.IncludeStyle.IncludeBlocks = tooling::IncludeStyle::IBS_Regroup; in getGoogleStyle()
[all …]
/freebsd/lib/clang/libclang/
H A DMakefile880 SRCS_MIN+= Tooling/Inclusions/IncludeStyle.cpp