Lines Matching refs:CHECK_PARSE
5611 #define CHECK_PARSE(TEXT, FIELD, VALUE) \
5641 CHECK_PARSE("AccessModifierOffset: -1234", AccessModifierOffset, -1234);
5642 CHECK_PARSE("ColumnLimit: 1234", ColumnLimit, 1234u);
5643 CHECK_PARSE("MaxEmptyLinesToKeep: 1234", MaxEmptyLinesToKeep, 1234u);
5644 CHECK_PARSE("PenaltyExcessCharacter: 1234", PenaltyExcessCharacter, 1234u);
5645 CHECK_PARSE("PenaltyReturnTypeOnItsOwnLine: 1234",
5647 CHECK_PARSE("SpacesBeforeTrailingComments: 1234",
5649 CHECK_PARSE("IndentWidth: 32", IndentWidth, 32u);
5652 CHECK_PARSE("Standard: C++03", Standard, FormatStyle::LS_Cpp03);
5653 CHECK_PARSE("Standard: C++11", Standard, FormatStyle::LS_Cpp11);
5654 CHECK_PARSE("Standard: Auto", Standard, FormatStyle::LS_Auto);
5658 CHECK_PARSE("BasedOnStyle: LLVM", ColumnLimit, BaseStyle.ColumnLimit);
5659 CHECK_PARSE("BasedOnStyle: LLVM\nColumnLimit: 1234", ColumnLimit, 1234u);
5662 CHECK_PARSE("BreakBeforeBraces: Attach", BreakBeforeBraces,
5664 CHECK_PARSE("BreakBeforeBraces: Linux", BreakBeforeBraces,
5666 CHECK_PARSE("BreakBeforeBraces: Stroustrup", BreakBeforeBraces,
5670 CHECK_PARSE("NamespaceIndentation: None", NamespaceIndentation,
5672 CHECK_PARSE("NamespaceIndentation: Inner", NamespaceIndentation,
5674 CHECK_PARSE("NamespaceIndentation: All", NamespaceIndentation,
5677 #undef CHECK_PARSE