Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp2962 FormatStyle::LanguageStandard LexingStd = Style.Standard; in getFormattingLangOpts() local
2963 if (LexingStd == FormatStyle::LS_Auto) in getFormattingLangOpts()
2964 LexingStd = FormatStyle::LS_Latest; in getFormattingLangOpts()
2965 if (LexingStd == FormatStyle::LS_Latest) in getFormattingLangOpts()
2966 LexingStd = FormatStyle::LS_Cpp20; in getFormattingLangOpts()
2968 LangOpts.CPlusPlus11 = LexingStd >= FormatStyle::LS_Cpp11; in getFormattingLangOpts()
2969 LangOpts.CPlusPlus14 = LexingStd >= FormatStyle::LS_Cpp14; in getFormattingLangOpts()
2970 LangOpts.CPlusPlus17 = LexingStd >= FormatStyle::LS_Cpp17; in getFormattingLangOpts()
2971 LangOpts.CPlusPlus20 = LexingStd >= FormatStyle::LS_Cpp20; in getFormattingLangOpts()
2972 LangOpts.Char8 = LexingStd >= FormatStyle::LS_Cpp20; in getFormattingLangOpts()