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

References

tools/clang/include/clang/Format/Format.h
 2048            AlwaysBreakAfterReturnType == R.AlwaysBreakAfterReturnType &&
 2048            AlwaysBreakAfterReturnType == R.AlwaysBreakAfterReturnType &&
tools/clang/lib/Format/ContinuationIndenter.cpp
  313     if (Style.AlwaysBreakAfterReturnType == FormatStyle::RTBS_None)
  479          Style.AlwaysBreakAfterReturnType != FormatStyle::RTBS_None)) ||
tools/clang/lib/Format/Format.cpp
  407                    Style.AlwaysBreakAfterReturnType);
  413         Style.AlwaysBreakAfterReturnType == FormatStyle::RTBS_None) {
  415         Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_AllDefinitions;
  418         Style.AlwaysBreakAfterReturnType =
  737   LLVMStyle.AlwaysBreakAfterReturnType = FormatStyle::RTBS_None;
 1026   MozillaStyle.AlwaysBreakAfterReturnType = FormatStyle::RTBS_TopLevel;
 1074   Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_AllDefinitions;
 1109   Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_None;
tools/clang/lib/Format/TokenAnnotator.cpp
 2162   if ((Style.AlwaysBreakAfterReturnType == FormatStyle::RTBS_TopLevel ||
 2163        Style.AlwaysBreakAfterReturnType ==
 2168   switch (Style.AlwaysBreakAfterReturnType) {
tools/clang/unittests/Format/FormatTest.cpp
 6011   Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_None;
 6023   Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_All;
 6042   Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_TopLevelDefinitions;
 6056   Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_TopLevel;
 6071   Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_AllDefinitions;
 7398   AfterType.AlwaysBreakAfterReturnType = FormatStyle::RTBS_AllDefinitions;
12691   Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_All;
12692   CHECK_PARSE("AlwaysBreakAfterReturnType: None", AlwaysBreakAfterReturnType,
12694   CHECK_PARSE("AlwaysBreakAfterReturnType: All", AlwaysBreakAfterReturnType,
12697               AlwaysBreakAfterReturnType, FormatStyle::RTBS_TopLevel);
12699               AlwaysBreakAfterReturnType, FormatStyle::RTBS_AllDefinitions);
12701               AlwaysBreakAfterReturnType,
tools/clang/unittests/Format/FormatTestCSharp.cpp
  271   Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_None;