reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/Format/Format.h
 2046            AllowShortLambdasOnASingleLine == R.AllowShortLambdasOnASingleLine &&
 2046            AllowShortLambdasOnASingleLine == R.AllowShortLambdasOnASingleLine &&
tools/clang/lib/Format/Format.cpp
  399                    Style.AllowShortLambdasOnASingleLine);
  735   LLVMStyle.AllowShortLambdasOnASingleLine = FormatStyle::SLS_All;
tools/clang/lib/Format/TokenAnnotator.cpp
 3122         Style.AllowShortLambdasOnASingleLine == FormatStyle::SLS_Inline)
 3125     if (Style.AllowShortLambdasOnASingleLine == FormatStyle::SLS_None ||
 3126         Style.AllowShortLambdasOnASingleLine == FormatStyle::SLS_Inline ||
 3128          Style.AllowShortLambdasOnASingleLine == FormatStyle::SLS_Empty))
tools/clang/unittests/Format/FormatTest.cpp
11741   WhitesmithsBraceStyle.AllowShortLambdasOnASingleLine = FormatStyle::SLS_None;
13720   DoNotMerge.AllowShortLambdasOnASingleLine = FormatStyle::SLS_None;
13730   MergeEmptyOnly.AllowShortLambdasOnASingleLine = FormatStyle::SLS_Empty;
13744   MergeInline.AllowShortLambdasOnASingleLine = FormatStyle::SLS_Inline;