Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/
H A DFormat.cpp2894 FormatStyle::LanguageStandard LexingStd = Style.Standard; in getFormattingLangOpts() local
2895 if (LexingStd == FormatStyle::LS_Auto) in getFormattingLangOpts()
2896 LexingStd = FormatStyle::LS_Latest; in getFormattingLangOpts()
2897 if (LexingStd == FormatStyle::LS_Latest) in getFormattingLangOpts()
2898 LexingStd = FormatStyle::LS_Cpp20; in getFormattingLangOpts()
2900 LangOpts.CPlusPlus11 = LexingStd >= FormatStyle::LS_Cpp11; in getFormattingLangOpts()
2901 LangOpts.CPlusPlus14 = LexingStd >= FormatStyle::LS_Cpp14; in getFormattingLangOpts()
2902 LangOpts.CPlusPlus17 = LexingStd >= FormatStyle::LS_Cpp17; in getFormattingLangOpts()
2903 LangOpts.CPlusPlus20 = LexingStd >= FormatStyle::LS_Cpp20; in getFormattingLangOpts()
2904 LangOpts.Char8 = LexingStd >= FormatStyle::LS_Cpp20; in getFormattingLangOpts()