Searched refs:LexingStd (Results 1 – 1 of 1) sorted by relevance
3864 FormatStyle::LanguageStandard LexingStd = Style.Standard; in getFormattingLangOpts() local3865 if (LexingStd == FormatStyle::LS_Auto) in getFormattingLangOpts()3866 LexingStd = FormatStyle::LS_Latest; in getFormattingLangOpts()3867 if (LexingStd == FormatStyle::LS_Latest) in getFormattingLangOpts()3868 LexingStd = FormatStyle::LS_Cpp20; in getFormattingLangOpts()3870 LangOpts.CPlusPlus11 = LexingStd >= FormatStyle::LS_Cpp11; in getFormattingLangOpts()3871 LangOpts.CPlusPlus14 = LexingStd >= FormatStyle::LS_Cpp14; in getFormattingLangOpts()3872 LangOpts.CPlusPlus17 = LexingStd >= FormatStyle::LS_Cpp17; in getFormattingLangOpts()3873 LangOpts.CPlusPlus20 = LexingStd >= FormatStyle::LS_Cpp20; in getFormattingLangOpts()3874 LangOpts.Char8 = LexingStd >= FormatStyle::LS_Cpp20; in getFormattingLangOpts()[all …]