Home
last modified time | relevance | path

Searched refs:RawStringFormat (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h2768 struct RawStringFormat { struct
2781 bool operator==(const RawStringFormat &Other) const {
2824 std::vector<RawStringFormat> RawStringFormats;
/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.cpp185 for (const auto &RawStringFormat : CodeStyle.RawStringFormats) { in RawStringFormatStyleManager() local
187 CodeStyle.GetLanguageStyle(RawStringFormat.Language); in RawStringFormatStyleManager()
190 if (!getPredefinedStyle(RawStringFormat.BasedOnStyle, in RawStringFormatStyleManager()
191 RawStringFormat.Language, &PredefinedStyle)) { in RawStringFormatStyleManager()
193 PredefinedStyle.Language = RawStringFormat.Language; in RawStringFormatStyleManager()
198 for (StringRef Delimiter : RawStringFormat.Delimiters) { in RawStringFormatStyleManager()
201 for (StringRef EnclosingFunction : RawStringFormat.EnclosingFunctions) { in RawStringFormatStyleManager()
H A DFormat.cpp52 LLVM_YAML_IS_SEQUENCE_VECTOR(clang::format::FormatStyle::RawStringFormat)
784 template <> struct MappingTraits<FormatStyle::RawStringFormat> {
785 static void mapping(IO &IO, FormatStyle::RawStringFormat &Format) { in mapping()