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.h3905 struct RawStringFormat { struct
3918 bool operator==(const RawStringFormat &Other) const {
3962 std::vector<RawStringFormat> RawStringFormats;
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.cpp206 for (const auto &RawStringFormat : CodeStyle.RawStringFormats) { in RawStringFormatStyleManager() local
208 CodeStyle.GetLanguageStyle(RawStringFormat.Language); in RawStringFormatStyleManager()
211 if (!getPredefinedStyle(RawStringFormat.BasedOnStyle, in RawStringFormatStyleManager()
212 RawStringFormat.Language, &PredefinedStyle)) { in RawStringFormatStyleManager()
214 PredefinedStyle.Language = RawStringFormat.Language; in RawStringFormatStyleManager()
219 for (StringRef Delimiter : RawStringFormat.Delimiters) in RawStringFormatStyleManager()
221 for (StringRef EnclosingFunction : RawStringFormat.EnclosingFunctions) in RawStringFormatStyleManager()
H A DFormat.cpp32 LLVM_YAML_IS_SEQUENCE_VECTOR(FormatStyle::RawStringFormat)
531 template <> struct MappingTraits<FormatStyle::RawStringFormat> {
532 static void mapping(IO &IO, FormatStyle::RawStringFormat &Format) { in mapping()