Home | History | Annotate | Download | only in Format

Lines Matching refs:AllowShortFunctionsOnASingleLine

6217   DoNotMerge.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_None;
6274 DoNotMergeNoColumnLimit.AllowShortFunctionsOnASingleLine =
6307 MergeInlineOnly.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline;
9001 Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline;
9002 CHECK_PARSE("AllowShortFunctionsOnASingleLine: None",
9003 AllowShortFunctionsOnASingleLine, FormatStyle::SFS_None);
9004 CHECK_PARSE("AllowShortFunctionsOnASingleLine: Inline",
9005 AllowShortFunctionsOnASingleLine, FormatStyle::SFS_Inline);
9006 CHECK_PARSE("AllowShortFunctionsOnASingleLine: Empty",
9007 AllowShortFunctionsOnASingleLine, FormatStyle::SFS_Empty);
9008 CHECK_PARSE("AllowShortFunctionsOnASingleLine: All",
9009 AllowShortFunctionsOnASingleLine, FormatStyle::SFS_All);
9011 CHECK_PARSE("AllowShortFunctionsOnASingleLine: false",
9012 AllowShortFunctionsOnASingleLine, FormatStyle::SFS_None);
9013 CHECK_PARSE("AllowShortFunctionsOnASingleLine: true",
9014 AllowShortFunctionsOnASingleLine, FormatStyle::SFS_All);
9370 Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_None;
9381 Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_All;