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

References

tools/clang/include/clang/Format/Format.h
 2129            StatementMacros == R.StatementMacros && UseTab == R.UseTab &&
 2129            StatementMacros == R.StatementMacros && UseTab == R.UseTab &&
tools/clang/lib/Format/ContinuationIndenter.cpp
  577     if (Style.UseTab != FormatStyle::UT_Never)
tools/clang/lib/Format/Format.cpp
  547     IO.mapOptional("UseTab", Style.UseTab);
  793   LLVMStyle.UseTab = FormatStyle::UT_Never;
 1091   Style.UseTab = FormatStyle::UT_Never;
tools/clang/lib/Format/WhitespaceManager.cpp
  813   switch (Style.UseTab) {
tools/clang/unittests/Format/FormatTest.cpp
 3397     Tabbed.UseTab = FormatStyle::UT_Always;
 4149   Style.UseTab = FormatStyle::UT_Always;
 9743   Tab.UseTab = FormatStyle::UT_Always;
 9819   Tab.UseTab = FormatStyle::UT_ForIndentation;
 9923   Tab.UseTab = FormatStyle::UT_Never;
 9967   Tab.UseTab = FormatStyle::UT_ForContinuationAndIndentation;
10195   Tab.UseTab = FormatStyle::UT_Never;
10213   Tab.UseTab = FormatStyle::UT_ForIndentation;
10230   Tab.UseTab = FormatStyle::UT_ForContinuationAndIndentation;
10247   Tab.UseTab = FormatStyle::UT_Always;
12595   Style.UseTab = FormatStyle::UT_ForIndentation;
12596   CHECK_PARSE("UseTab: Never", UseTab, FormatStyle::UT_Never);
12597   CHECK_PARSE("UseTab: ForIndentation", UseTab, FormatStyle::UT_ForIndentation);
12598   CHECK_PARSE("UseTab: Always", UseTab, FormatStyle::UT_Always);
12599   CHECK_PARSE("UseTab: ForContinuationAndIndentation", UseTab,
12602   CHECK_PARSE("UseTab: false", UseTab, FormatStyle::UT_Never);
12603   CHECK_PARSE("UseTab: true", UseTab, FormatStyle::UT_Always);
tools/clang/unittests/Format/FormatTestSelective.cpp
  534   Style.UseTab = FormatStyle::UT_Always;