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.cpp41 StringRef FileName, StringRef Code, const IncludeStyle &Style, in getOffsetAfterTokenSequence()
84 const IncludeStyle &Style) { in getOffsetAfterHeaderGuardsAndComments()
160 const IncludeStyle &Style) { in getMaxHeaderInsertionOffset()
191 IncludeCategoryManager::IncludeCategoryManager(const IncludeStyle &Style, in IncludeCategoryManager()
238 case IncludeStyle::MICD_Quote: in isMainHeader()
242 case IncludeStyle::MICD_AngleBracket: in isMainHeader()
246 case IncludeStyle::MICD_Any: in isMainHeader()
282 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.h2641 tooling::IncludeStyle IncludeStyle; member
5060 IncludeStyle.IncludeBlocks == R.IncludeStyle.IncludeBlocks &&
5061 IncludeStyle.IncludeCategories == R.IncludeStyle.IncludeCategories &&
5062 IncludeStyle.IncludeIsMainRegex ==
5063 R.IncludeStyle.IncludeIsMainRegex &&
5064 IncludeStyle.IncludeIsMainSourceRegex ==
5065 R.IncludeStyle.IncludeIsMainSourceRegex &&
5066 IncludeStyle.MainIncludeChar == R.IncludeStyle.MainIncludeChar &&
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp997 IO.mapOptional("IncludeBlocks", Style.IncludeStyle.IncludeBlocks); in mapping()
998 IO.mapOptional("IncludeCategories", Style.IncludeStyle.IncludeCategories); in mapping()
999 IO.mapOptional("IncludeIsMainRegex", Style.IncludeStyle.IncludeIsMainRegex); in mapping()
1001 Style.IncludeStyle.IncludeIsMainSourceRegex); in mapping()
1025 IO.mapOptional("MainIncludeChar", Style.IncludeStyle.MainIncludeChar); in mapping()
1504 LLVMStyle.IncludeStyle.IncludeBlocks = tooling::IncludeStyle::IBS_Preserve; in getLLVMStyle()
1505 LLVMStyle.IncludeStyle.IncludeCategories = { in getLLVMStyle()
1509 LLVMStyle.IncludeStyle.IncludeIsMainRegex = "(Test)?$"; in getLLVMStyle()
1510 LLVMStyle.IncludeStyle.MainIncludeChar = tooling::IncludeStyle::MICD_Quote; in getLLVMStyle()
1650 GoogleStyle.IncludeStyle.IncludeBlocks = tooling::IncludeStyle::IBS_Regroup; in getGoogleStyle()
[all …]
/freebsd/lib/clang/libclang/
H A DMakefile829 SRCS_EXT+= Tooling/Inclusions/IncludeStyle.cpp