Lines Matching refs:CHECK_PARSE

9708 #define CHECK_PARSE(TEXT, FIELD, VALUE)                                        \  macro
9770 CHECK_PARSE("AccessModifierOffset: -1234", AccessModifierOffset, -1234); in TEST_F()
9771 CHECK_PARSE("ConstructorInitializerIndentWidth: 1234", in TEST_F()
9773 CHECK_PARSE("ObjCBlockIndentWidth: 1234", ObjCBlockIndentWidth, 1234u); in TEST_F()
9774 CHECK_PARSE("ColumnLimit: 1234", ColumnLimit, 1234u); in TEST_F()
9775 CHECK_PARSE("MaxEmptyLinesToKeep: 1234", MaxEmptyLinesToKeep, 1234u); in TEST_F()
9776 CHECK_PARSE("PenaltyBreakBeforeFirstCallParameter: 1234", in TEST_F()
9778 CHECK_PARSE("PenaltyExcessCharacter: 1234", PenaltyExcessCharacter, 1234u); in TEST_F()
9779 CHECK_PARSE("PenaltyReturnTypeOnItsOwnLine: 1234", in TEST_F()
9781 CHECK_PARSE("SpacesBeforeTrailingComments: 1234", in TEST_F()
9783 CHECK_PARSE("IndentWidth: 32", IndentWidth, 32u); in TEST_F()
9784 CHECK_PARSE("ContinuationIndentWidth: 11", ContinuationIndentWidth, 11u); in TEST_F()
9787 CHECK_PARSE("PointerAlignment: Left", PointerAlignment, in TEST_F()
9789 CHECK_PARSE("PointerAlignment: Right", PointerAlignment, in TEST_F()
9791 CHECK_PARSE("PointerAlignment: Middle", PointerAlignment, in TEST_F()
9794 CHECK_PARSE("PointerBindsToType: Left", PointerAlignment, in TEST_F()
9796 CHECK_PARSE("PointerBindsToType: Right", PointerAlignment, in TEST_F()
9798 CHECK_PARSE("PointerBindsToType: Middle", PointerAlignment, in TEST_F()
9802 CHECK_PARSE("Standard: Cpp03", Standard, FormatStyle::LS_Cpp03); in TEST_F()
9803 CHECK_PARSE("Standard: Cpp11", Standard, FormatStyle::LS_Cpp11); in TEST_F()
9804 CHECK_PARSE("Standard: C++03", Standard, FormatStyle::LS_Cpp03); in TEST_F()
9805 CHECK_PARSE("Standard: C++11", Standard, FormatStyle::LS_Cpp11); in TEST_F()
9806 CHECK_PARSE("Standard: Auto", Standard, FormatStyle::LS_Auto); in TEST_F()
9809 CHECK_PARSE("BreakBeforeBinaryOperators: NonAssignment", in TEST_F()
9811 CHECK_PARSE("BreakBeforeBinaryOperators: None", BreakBeforeBinaryOperators, in TEST_F()
9813 CHECK_PARSE("BreakBeforeBinaryOperators: All", BreakBeforeBinaryOperators, in TEST_F()
9816 CHECK_PARSE("BreakBeforeBinaryOperators: false", BreakBeforeBinaryOperators, in TEST_F()
9818 CHECK_PARSE("BreakBeforeBinaryOperators: true", BreakBeforeBinaryOperators, in TEST_F()
9822 CHECK_PARSE("AlignAfterOpenBracket: Align", AlignAfterOpenBracket, in TEST_F()
9824 CHECK_PARSE("AlignAfterOpenBracket: DontAlign", AlignAfterOpenBracket, in TEST_F()
9826 CHECK_PARSE("AlignAfterOpenBracket: AlwaysBreak", AlignAfterOpenBracket, in TEST_F()
9829 CHECK_PARSE("AlignAfterOpenBracket: false", AlignAfterOpenBracket, in TEST_F()
9831 CHECK_PARSE("AlignAfterOpenBracket: true", AlignAfterOpenBracket, in TEST_F()
9835 CHECK_PARSE("UseTab: Never", UseTab, FormatStyle::UT_Never); in TEST_F()
9836 CHECK_PARSE("UseTab: ForIndentation", UseTab, FormatStyle::UT_ForIndentation); in TEST_F()
9837 CHECK_PARSE("UseTab: Always", UseTab, FormatStyle::UT_Always); in TEST_F()
9839 CHECK_PARSE("UseTab: false", UseTab, FormatStyle::UT_Never); in TEST_F()
9840 CHECK_PARSE("UseTab: true", UseTab, FormatStyle::UT_Always); in TEST_F()
9843 CHECK_PARSE("AllowShortFunctionsOnASingleLine: None", in TEST_F()
9845 CHECK_PARSE("AllowShortFunctionsOnASingleLine: Inline", in TEST_F()
9847 CHECK_PARSE("AllowShortFunctionsOnASingleLine: Empty", in TEST_F()
9849 CHECK_PARSE("AllowShortFunctionsOnASingleLine: All", in TEST_F()
9852 CHECK_PARSE("AllowShortFunctionsOnASingleLine: false", in TEST_F()
9854 CHECK_PARSE("AllowShortFunctionsOnASingleLine: true", in TEST_F()
9858 CHECK_PARSE("SpaceBeforeParens: Never", SpaceBeforeParens, in TEST_F()
9860 CHECK_PARSE("SpaceBeforeParens: Always", SpaceBeforeParens, in TEST_F()
9862 CHECK_PARSE("SpaceBeforeParens: ControlStatements", SpaceBeforeParens, in TEST_F()
9865 CHECK_PARSE("SpaceAfterControlStatementKeyword: false", SpaceBeforeParens, in TEST_F()
9867 CHECK_PARSE("SpaceAfterControlStatementKeyword: true", SpaceBeforeParens, in TEST_F()
9872 CHECK_PARSE("BasedOnStyle: LLVM", ColumnLimit, BaseStyle.ColumnLimit); in TEST_F()
9873 CHECK_PARSE("BasedOnStyle: LLVM\nColumnLimit: 1234", ColumnLimit, 1234u); in TEST_F()
9876 CHECK_PARSE("BreakBeforeBraces: Attach", BreakBeforeBraces, in TEST_F()
9878 CHECK_PARSE("BreakBeforeBraces: Linux", BreakBeforeBraces, in TEST_F()
9880 CHECK_PARSE("BreakBeforeBraces: Mozilla", BreakBeforeBraces, in TEST_F()
9882 CHECK_PARSE("BreakBeforeBraces: Stroustrup", BreakBeforeBraces, in TEST_F()
9884 CHECK_PARSE("BreakBeforeBraces: Allman", BreakBeforeBraces, in TEST_F()
9886 CHECK_PARSE("BreakBeforeBraces: GNU", BreakBeforeBraces, FormatStyle::BS_GNU); in TEST_F()
9887 CHECK_PARSE("BreakBeforeBraces: WebKit", BreakBeforeBraces, in TEST_F()
9889 CHECK_PARSE("BreakBeforeBraces: Custom", BreakBeforeBraces, in TEST_F()
9893 CHECK_PARSE("AlwaysBreakAfterReturnType: None", AlwaysBreakAfterReturnType, in TEST_F()
9895 CHECK_PARSE("AlwaysBreakAfterReturnType: All", AlwaysBreakAfterReturnType, in TEST_F()
9897 CHECK_PARSE("AlwaysBreakAfterReturnType: TopLevel", in TEST_F()
9899 CHECK_PARSE("AlwaysBreakAfterReturnType: AllDefinitions", in TEST_F()
9901 CHECK_PARSE("AlwaysBreakAfterReturnType: TopLevelDefinitions", in TEST_F()
9906 CHECK_PARSE("AlwaysBreakAfterDefinitionReturnType: None", in TEST_F()
9908 CHECK_PARSE("AlwaysBreakAfterDefinitionReturnType: All", in TEST_F()
9910 CHECK_PARSE("AlwaysBreakAfterDefinitionReturnType: TopLevel", in TEST_F()
9915 CHECK_PARSE("NamespaceIndentation: None", NamespaceIndentation, in TEST_F()
9917 CHECK_PARSE("NamespaceIndentation: Inner", NamespaceIndentation, in TEST_F()
9919 CHECK_PARSE("NamespaceIndentation: All", NamespaceIndentation, in TEST_F()
9927 CHECK_PARSE("ForEachMacros: [BOOST_FOREACH]", ForEachMacros, BoostForeach); in TEST_F()
9931 CHECK_PARSE("ForEachMacros: [BOOST_FOREACH, Q_FOREACH]", ForEachMacros, in TEST_F()
9937 CHECK_PARSE("IncludeCategories:\n" in TEST_F()
9948 CHECK_PARSE("Language: Cpp\n" in TEST_F()
9956 CHECK_PARSE("IndentWidth: 56", IndentWidth, 56u); in TEST_F()
9960 CHECK_PARSE("Language: JavaScript\n" in TEST_F()
9963 CHECK_PARSE("IndentWidth: 23", IndentWidth, 23u); in TEST_F()
9969 CHECK_PARSE("IndentWidth: 56", IndentWidth, 56u); in TEST_F()
9972 CHECK_PARSE("BasedOnStyle: LLVM\n" in TEST_F()
9976 CHECK_PARSE("---\n" in TEST_F()
9986 CHECK_PARSE("---\n" in TEST_F()
9994 CHECK_PARSE("---\n" in TEST_F()
10045 #undef CHECK_PARSE