Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h3696 struct RawStringFormat { struct
3709 bool operator==(const RawStringFormat &Other) const {
3753 std::vector<RawStringFormat> RawStringFormats;
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.cpp198 for (const auto &RawStringFormat : CodeStyle.RawStringFormats) { in RawStringFormatStyleManager() local
200 CodeStyle.GetLanguageStyle(RawStringFormat.Language); in RawStringFormatStyleManager()
203 if (!getPredefinedStyle(RawStringFormat.BasedOnStyle, in RawStringFormatStyleManager()
204 RawStringFormat.Language, &PredefinedStyle)) { in RawStringFormatStyleManager()
206 PredefinedStyle.Language = RawStringFormat.Language; in RawStringFormatStyleManager()
211 for (StringRef Delimiter : RawStringFormat.Delimiters) in RawStringFormatStyleManager()
213 for (StringRef EnclosingFunction : RawStringFormat.EnclosingFunctions) in RawStringFormatStyleManager()
H A DFormat.cpp31 LLVM_YAML_IS_SEQUENCE_VECTOR(FormatStyle::RawStringFormat)
498 template <> struct MappingTraits<FormatStyle::RawStringFormat> {
499 static void mapping(IO &IO, FormatStyle::RawStringFormat &Format) { in mapping()