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

References

tools/clang/lib/Format/Format.cpp
   74     IO.enumCase(Value, "c++11", FormatStyle::LS_Cpp11);
   75     IO.enumCase(Value, "C++11", FormatStyle::LS_Cpp11); // Legacy alias
 2500   LangOpts.CPlusPlus11 = LexingStd >= FormatStyle::LS_Cpp11;
tools/clang/lib/Format/TokenAnnotator.cpp
 2933            (Style.Standard < FormatStyle::LS_Cpp11 || Style.SpacesInAngles);
 2952             Style.Standard < FormatStyle::LS_Cpp11) ||
tools/clang/unittests/Format/FormatTest.cpp
12522   CHECK_PARSE("Standard: c++11", Standard, FormatStyle::LS_Cpp11);
12532   CHECK_PARSE("Standard: C++11", Standard, FormatStyle::LS_Cpp11);
14051   Spaces.Standard = FormatStyle::LS_Cpp11;