Searched refs:LexingStd (Results 1 – 1 of 1) sorted by relevance
3413 FormatStyle::LanguageStandard LexingStd = Style.Standard; in getFormattingLangOpts() local3414 if (LexingStd == FormatStyle::LS_Auto) in getFormattingLangOpts()3415 LexingStd = FormatStyle::LS_Latest; in getFormattingLangOpts()3416 if (LexingStd == FormatStyle::LS_Latest) in getFormattingLangOpts()3417 LexingStd = FormatStyle::LS_Cpp20; in getFormattingLangOpts()3419 LangOpts.CPlusPlus11 = LexingStd >= FormatStyle::LS_Cpp11; in getFormattingLangOpts()3420 LangOpts.CPlusPlus14 = LexingStd >= FormatStyle::LS_Cpp14; in getFormattingLangOpts()3421 LangOpts.CPlusPlus17 = LexingStd >= FormatStyle::LS_Cpp17; in getFormattingLangOpts()3422 LangOpts.CPlusPlus20 = LexingStd >= FormatStyle::LS_Cpp20; in getFormattingLangOpts()3423 LangOpts.Char8 = LexingStd >= FormatStyle::LS_Cpp20; in getFormattingLangOpts()[all …]