Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Format/
H A DFormat.h1422 struct RawStringFormat { struct
1435 bool operator==(const RawStringFormat &Other) const {
1478 std::vector<RawStringFormat> RawStringFormats;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DContinuationIndenter.cpp186 for (const auto &RawStringFormat : CodeStyle.RawStringFormats) { in RawStringFormatStyleManager() local
188 CodeStyle.GetLanguageStyle(RawStringFormat.Language); in RawStringFormatStyleManager()
191 if (!getPredefinedStyle(RawStringFormat.BasedOnStyle, in RawStringFormatStyleManager()
192 RawStringFormat.Language, &PredefinedStyle)) { in RawStringFormatStyleManager()
194 PredefinedStyle.Language = RawStringFormat.Language; in RawStringFormatStyleManager()
199 for (StringRef Delimiter : RawStringFormat.Delimiters) { in RawStringFormatStyleManager()
202 for (StringRef EnclosingFunction : RawStringFormat.EnclosingFunctions) { in RawStringFormatStyleManager()
H A DFormat.cpp52 LLVM_YAML_IS_SEQUENCE_VECTOR(clang::format::FormatStyle::RawStringFormat)
499 template <> struct MappingTraits<FormatStyle::RawStringFormat> {
500 static void mapping(IO &IO, FormatStyle::RawStringFormat &Format) { in mapping()