Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp3822 FormatStyle::LanguageStandard LexingStd = Style.Standard; in getFormattingLangOpts() local
3823 if (LexingStd == FormatStyle::LS_Auto) in getFormattingLangOpts()
3824 LexingStd = FormatStyle::LS_Latest; in getFormattingLangOpts()
3825 if (LexingStd == FormatStyle::LS_Latest) in getFormattingLangOpts()
3826 LexingStd = FormatStyle::LS_Cpp20; in getFormattingLangOpts()
3828 LangOpts.CPlusPlus11 = LexingStd >= FormatStyle::LS_Cpp11; in getFormattingLangOpts()
3829 LangOpts.CPlusPlus14 = LexingStd >= FormatStyle::LS_Cpp14; in getFormattingLangOpts()
3830 LangOpts.CPlusPlus17 = LexingStd >= FormatStyle::LS_Cpp17; in getFormattingLangOpts()
3831 LangOpts.CPlusPlus20 = LexingStd >= FormatStyle::LS_Cpp20; in getFormattingLangOpts()
3832 LangOpts.Char8 = LexingStd >= FormatStyle::LS_Cpp20; in getFormattingLangOpts()
[all …]