Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/Format/
H A DFormat.h2885 struct RawStringFormat { struct
2898 bool operator==(const RawStringFormat &Other) const {
2942 std::vector<RawStringFormat> RawStringFormats;
/llvm-project-15.0.7/clang/lib/Format/
H A DContinuationIndenter.cpp188 for (const auto &RawStringFormat : CodeStyle.RawStringFormats) { in RawStringFormatStyleManager() local
190 CodeStyle.GetLanguageStyle(RawStringFormat.Language); in RawStringFormatStyleManager()
193 if (!getPredefinedStyle(RawStringFormat.BasedOnStyle, in RawStringFormatStyleManager()
194 RawStringFormat.Language, &PredefinedStyle)) { in RawStringFormatStyleManager()
196 PredefinedStyle.Language = RawStringFormat.Language; in RawStringFormatStyleManager()
201 for (StringRef Delimiter : RawStringFormat.Delimiters) in RawStringFormatStyleManager()
203 for (StringRef EnclosingFunction : RawStringFormat.EnclosingFunctions) in RawStringFormatStyleManager()
H A DFormat.cpp56 LLVM_YAML_IS_SEQUENCE_VECTOR(clang::format::FormatStyle::RawStringFormat)
951 template <> struct MappingTraits<FormatStyle::RawStringFormat> {
952 static void mapping(IO &IO, FormatStyle::RawStringFormat &Format) { in mapping()
/llvm-project-15.0.7/clang/unittests/Format/
H A DFormatTest.cpp20654 std::vector<FormatStyle::RawStringFormat> ExpectedRawStringFormats = { in TEST_F()