Lines Matching defs:CHECK_PARSE
142 #define CHECK_PARSE(TEXT, FIELD, VALUE) \
147 #define CHECK_PARSE_INT(FIELD) CHECK_PARSE(#FIELD ": -1234", FIELD, -1234)
149 #define CHECK_PARSE_UNSIGNED(FIELD) CHECK_PARSE(#FIELD ": 1234", FIELD, 1234u)
152 CHECK_PARSE(#FIELD ": [foo]", FIELD, std::vector<std::string>{"foo"})
295 CHECK_PARSE("CommentPragmas: '// abc$'", CommentPragmas, "// abc$");
298 CHECK_PARSE("QualifierAlignment: Leave", QualifierAlignment,
300 CHECK_PARSE("QualifierAlignment: Right", QualifierAlignment,
302 CHECK_PARSE("QualifierAlignment: Left", QualifierAlignment,
304 CHECK_PARSE("QualifierAlignment: Custom", QualifierAlignment,
308 CHECK_PARSE("QualifierOrder: [ const, volatile, type ]", QualifierOrder,
311 CHECK_PARSE("QualifierOrder: [const, type]", QualifierOrder,
314 CHECK_PARSE("QualifierOrder: [volatile, type]", QualifierOrder,
320 CHECK_PARSE(#FIELD ": None", FIELD, \
322 CHECK_PARSE( \
329 CHECK_PARSE( \
336 CHECK_PARSE( \
343 CHECK_PARSE( \
351 CHECK_PARSE(#FIELD ": false", FIELD, \
353 CHECK_PARSE( \
378 CHECK_PARSE("PointerAlignment: Left", PointerAlignment,
380 CHECK_PARSE("PointerAlignment: Right", PointerAlignment,
382 CHECK_PARSE("PointerAlignment: Middle", PointerAlignment,
385 CHECK_PARSE("ReferenceAlignment: Pointer", ReferenceAlignment,
387 CHECK_PARSE("ReferenceAlignment: Left", ReferenceAlignment,
389 CHECK_PARSE("ReferenceAlignment: Right", ReferenceAlignment,
391 CHECK_PARSE("ReferenceAlignment: Middle", ReferenceAlignment,
394 CHECK_PARSE("PointerBindsToType: Left", PointerAlignment,
396 CHECK_PARSE("PointerBindsToType: Right", PointerAlignment,
398 CHECK_PARSE("PointerBindsToType: Middle", PointerAlignment,
402 CHECK_PARSE("ReflowComments: Never", ReflowComments, FormatStyle::RCS_Never);
403 CHECK_PARSE("ReflowComments: IndentOnly", ReflowComments,
405 CHECK_PARSE("ReflowComments: Always", ReflowComments,
408 CHECK_PARSE("ReflowComments: false", ReflowComments, FormatStyle::RCS_Never);
409 CHECK_PARSE("ReflowComments: true", ReflowComments, FormatStyle::RCS_Always);
412 CHECK_PARSE("Standard: c++03", Standard, FormatStyle::LS_Cpp03);
413 CHECK_PARSE("Standard: c++11", Standard, FormatStyle::LS_Cpp11);
414 CHECK_PARSE("Standard: c++14", Standard, FormatStyle::LS_Cpp14);
415 CHECK_PARSE("Standard: c++17", Standard, FormatStyle::LS_Cpp17);
416 CHECK_PARSE("Standard: c++20", Standard, FormatStyle::LS_Cpp20);
417 CHECK_PARSE("Standard: Auto", Standard, FormatStyle::LS_Auto);
418 CHECK_PARSE("Standard: Latest", Standard, FormatStyle::LS_Latest);
420 CHECK_PARSE("Standard: Cpp03", Standard, FormatStyle::LS_Cpp03);
421 CHECK_PARSE("Standard: Cpp11", Standard, FormatStyle::LS_Latest);
422 CHECK_PARSE("Standard: C++03", Standard, FormatStyle::LS_Cpp03);
423 CHECK_PARSE("Standard: C++11", Standard, FormatStyle::LS_Cpp11);
426 CHECK_PARSE("BreakBeforeBinaryOperators: NonAssignment",
428 CHECK_PARSE("BreakBeforeBinaryOperators: None", BreakBeforeBinaryOperators,
430 CHECK_PARSE("BreakBeforeBinaryOperators: All", BreakBeforeBinaryOperators,
433 CHECK_PARSE("BreakBeforeBinaryOperators: false", BreakBeforeBinaryOperators,
435 CHECK_PARSE("BreakBeforeBinaryOperators: true", BreakBeforeBinaryOperators,
439 CHECK_PARSE("BreakBinaryOperations: OnePerLine", BreakBinaryOperations,
441 CHECK_PARSE("BreakBinaryOperations: RespectPrecedence", BreakBinaryOperations,
443 CHECK_PARSE("BreakBinaryOperations: Never", BreakBinaryOperations,
447 CHECK_PARSE("BreakConstructorInitializers: BeforeComma",
449 CHECK_PARSE("BreakConstructorInitializers: AfterColon",
451 CHECK_PARSE("BreakConstructorInitializers: BeforeColon",
454 CHECK_PARSE("BreakConstructorInitializersBeforeComma: true",
458 CHECK_PARSE("BreakInheritanceList: AfterComma", BreakInheritanceList,
460 CHECK_PARSE("BreakInheritanceList: BeforeComma", BreakInheritanceList,
462 CHECK_PARSE("BreakInheritanceList: AfterColon", BreakInheritanceList,
464 CHECK_PARSE("BreakInheritanceList: BeforeColon", BreakInheritanceList,
467 CHECK_PARSE("BreakBeforeInheritanceComma: true", BreakInheritanceList,
471 CHECK_PARSE("BinPackParameters: BinPack", BinPackParameters,
473 CHECK_PARSE("BinPackParameters: OnePerLine", BinPackParameters,
475 CHECK_PARSE("BinPackParameters: AlwaysOnePerLine", BinPackParameters,
478 CHECK_PARSE("BinPackParameters: true", BinPackParameters,
480 CHECK_PARSE("BinPackParameters: false", BinPackParameters,
484 CHECK_PARSE("PackConstructorInitializers: Never", PackConstructorInitializers,
486 CHECK_PARSE("PackConstructorInitializers: BinPack",
488 CHECK_PARSE("PackConstructorInitializers: CurrentLine",
490 CHECK_PARSE("PackConstructorInitializers: NextLine",
492 CHECK_PARSE("PackConstructorInitializers: NextLineOnly",
495 CHECK_PARSE("BasedOnStyle: Google\n"
500 CHECK_PARSE("BasedOnStyle: Google\n"
503 CHECK_PARSE("ConstructorInitializerAllOnOneLineOrOnePerLine: true\n"
507 CHECK_PARSE("ConstructorInitializerAllOnOneLineOrOnePerLine: true\n"
512 CHECK_PARSE("EmptyLineBeforeAccessModifier: Never",
514 CHECK_PARSE("EmptyLineBeforeAccessModifier: Leave",
516 CHECK_PARSE("EmptyLineBeforeAccessModifier: LogicalBlock",
518 CHECK_PARSE("EmptyLineBeforeAccessModifier: Always",
522 CHECK_PARSE("AlignAfterOpenBracket: Align", AlignAfterOpenBracket,
524 CHECK_PARSE("AlignAfterOpenBracket: DontAlign", AlignAfterOpenBracket,
526 CHECK_PARSE("AlignAfterOpenBracket: AlwaysBreak", AlignAfterOpenBracket,
528 CHECK_PARSE("AlignAfterOpenBracket: BlockIndent", AlignAfterOpenBracket,
531 CHECK_PARSE("AlignAfterOpenBracket: false", AlignAfterOpenBracket,
533 CHECK_PARSE("AlignAfterOpenBracket: true", AlignAfterOpenBracket,
537 CHECK_PARSE("AlignEscapedNewlines: DontAlign", AlignEscapedNewlines,
539 CHECK_PARSE("AlignEscapedNewlines: Left", AlignEscapedNewlines,
541 CHECK_PARSE("AlignEscapedNewlines: LeftWithLastLine", AlignEscapedNewlines,
543 CHECK_PARSE("AlignEscapedNewlines: Right", AlignEscapedNewlines,
546 CHECK_PARSE("AlignEscapedNewlinesLeft: true", AlignEscapedNewlines,
548 CHECK_PARSE("AlignEscapedNewlinesLeft: false", AlignEscapedNewlines,
552 CHECK_PARSE("AlignOperands: DontAlign", AlignOperands,
554 CHECK_PARSE("AlignOperands: Align", AlignOperands, FormatStyle::OAS_Align);
555 CHECK_PARSE("AlignOperands: AlignAfterOperator", AlignOperands,
558 CHECK_PARSE("AlignOperands: false", AlignOperands,
560 CHECK_PARSE("AlignOperands: true", AlignOperands, FormatStyle::OAS_Align);
562 CHECK_PARSE("AlignTrailingComments: Leave", AlignTrailingComments,
565 CHECK_PARSE("AlignTrailingComments: Always", AlignTrailingComments,
568 CHECK_PARSE("AlignTrailingComments: Never", AlignTrailingComments,
572 CHECK_PARSE("AlignTrailingComments: true", AlignTrailingComments,
575 CHECK_PARSE("AlignTrailingComments: false", AlignTrailingComments,
588 CHECK_PARSE("UseTab: Never", UseTab, FormatStyle::UT_Never);
589 CHECK_PARSE("UseTab: ForIndentation", UseTab, FormatStyle::UT_ForIndentation);
590 CHECK_PARSE("UseTab: Always", UseTab, FormatStyle::UT_Always);
591 CHECK_PARSE("UseTab: ForContinuationAndIndentation", UseTab,
593 CHECK_PARSE("UseTab: AlignWithSpaces", UseTab,
596 CHECK_PARSE("UseTab: false", UseTab, FormatStyle::UT_Never);
597 CHECK_PARSE("UseTab: true", UseTab, FormatStyle::UT_Always);
600 CHECK_PARSE("AllowShortBlocksOnASingleLine: Never",
602 CHECK_PARSE("AllowShortBlocksOnASingleLine: Empty",
604 CHECK_PARSE("AllowShortBlocksOnASingleLine: Always",
607 CHECK_PARSE("AllowShortBlocksOnASingleLine: false",
609 CHECK_PARSE("AllowShortBlocksOnASingleLine: true",
613 CHECK_PARSE("AllowShortFunctionsOnASingleLine: None",
615 CHECK_PARSE("AllowShortFunctionsOnASingleLine: Inline",
617 CHECK_PARSE("AllowShortFunctionsOnASingleLine: Empty",
619 CHECK_PARSE("AllowShortFunctionsOnASingleLine: All",
622 CHECK_PARSE("AllowShortFunctionsOnASingleLine: false",
624 CHECK_PARSE("AllowShortFunctionsOnASingleLine: true",
628 CHECK_PARSE("AllowShortLambdasOnASingleLine: None",
630 CHECK_PARSE("AllowShortLambdasOnASingleLine: Empty",
632 CHECK_PARSE("AllowShortLambdasOnASingleLine: Inline",
634 CHECK_PARSE("AllowShortLambdasOnASingleLine: All",
637 CHECK_PARSE("AllowShortLambdasOnASingleLine: false",
639 CHECK_PARSE("AllowShortLambdasOnASingleLine: true",
643 CHECK_PARSE("SpaceAroundPointerQualifiers: Default",
645 CHECK_PARSE("SpaceAroundPointerQualifiers: Before",
647 CHECK_PARSE("SpaceAroundPointerQualifiers: After",
649 CHECK_PARSE("SpaceAroundPointerQualifiers: Both",
653 CHECK_PARSE("SpaceBeforeParens: Never", SpaceBeforeParens,
655 CHECK_PARSE("SpaceBeforeParens: Always", SpaceBeforeParens,
657 CHECK_PARSE("SpaceBeforeParens: ControlStatements", SpaceBeforeParens,
659 CHECK_PARSE("SpaceBeforeParens: ControlStatementsExceptControlMacros",
662 CHECK_PARSE("SpaceBeforeParens: NonEmptyParentheses", SpaceBeforeParens,
664 CHECK_PARSE("SpaceBeforeParens: Custom", SpaceBeforeParens,
667 CHECK_PARSE("SpaceAfterControlStatementKeyword: false", SpaceBeforeParens,
669 CHECK_PARSE("SpaceAfterControlStatementKeyword: true", SpaceBeforeParens,
671 CHECK_PARSE("SpaceBeforeParens: ControlStatementsExceptForEachMacros",
678 CHECK_PARSE("SpacesInParentheses: true", SpacesInParens,
682 CHECK_PARSE(
687 CHECK_PARSE(
692 CHECK_PARSE(
697 CHECK_PARSE(
705 CHECK_PARSE("BasedOnStyle: LLVM", ColumnLimit, BaseStyle.ColumnLimit);
706 CHECK_PARSE("BasedOnStyle: LLVM\nColumnLimit: 1234", ColumnLimit, 1234u);
709 CHECK_PARSE("BreakBeforeBraces: Attach", BreakBeforeBraces,
711 CHECK_PARSE("BreakBeforeBraces: Linux", BreakBeforeBraces,
713 CHECK_PARSE("BreakBeforeBraces: Mozilla", BreakBeforeBraces,
715 CHECK_PARSE("BreakBeforeBraces: Stroustrup", BreakBeforeBraces,
717 CHECK_PARSE("BreakBeforeBraces: Allman", BreakBeforeBraces,
719 CHECK_PARSE("BreakBeforeBraces: Whitesmiths", BreakBeforeBraces,
721 CHECK_PARSE("BreakBeforeBraces: GNU", BreakBeforeBraces, FormatStyle::BS_GNU);
722 CHECK_PARSE("BreakBeforeBraces: WebKit", BreakBeforeBraces,
724 CHECK_PARSE("BreakBeforeBraces: Custom", BreakBeforeBraces,
728 CHECK_PARSE("BraceWrapping:\n"
732 CHECK_PARSE("BraceWrapping:\n"
735 CHECK_PARSE("BraceWrapping:\n"
739 CHECK_PARSE("BraceWrapping:\n"
742 CHECK_PARSE("BraceWrapping:\n"
747 CHECK_PARSE("BreakAfterReturnType: None", BreakAfterReturnType,
749 CHECK_PARSE("BreakAfterReturnType: Automatic", BreakAfterReturnType,
751 CHECK_PARSE("BreakAfterReturnType: ExceptShortType", BreakAfterReturnType,
753 CHECK_PARSE("BreakAfterReturnType: All", BreakAfterReturnType,
755 CHECK_PARSE("BreakAfterReturnType: TopLevel", BreakAfterReturnType,
757 CHECK_PARSE("BreakAfterReturnType: AllDefinitions", BreakAfterReturnType,
759 CHECK_PARSE("BreakAfterReturnType: TopLevelDefinitions", BreakAfterReturnType,
762 CHECK_PARSE("AlwaysBreakAfterReturnType: None", BreakAfterReturnType,
764 CHECK_PARSE("AlwaysBreakAfterReturnType: Automatic", BreakAfterReturnType,
766 CHECK_PARSE("AlwaysBreakAfterReturnType: ExceptShortType",
768 CHECK_PARSE("AlwaysBreakAfterReturnType: All", BreakAfterReturnType,
770 CHECK_PARSE("AlwaysBreakAfterReturnType: TopLevel", BreakAfterReturnType,
772 CHECK_PARSE("AlwaysBreakAfterReturnType: AllDefinitions",
774 CHECK_PARSE("AlwaysBreakAfterReturnType: TopLevelDefinitions",
778 CHECK_PARSE("BreakTemplateDeclarations: Leave", BreakTemplateDeclarations,
780 CHECK_PARSE("BreakTemplateDeclarations: No", BreakTemplateDeclarations,
782 CHECK_PARSE("BreakTemplateDeclarations: MultiLine", BreakTemplateDeclarations,
784 CHECK_PARSE("BreakTemplateDeclarations: Yes", BreakTemplateDeclarations,
786 CHECK_PARSE("BreakTemplateDeclarations: false", BreakTemplateDeclarations,
788 CHECK_PARSE("BreakTemplateDeclarations: true", BreakTemplateDeclarations,
791 CHECK_PARSE("AlwaysBreakTemplateDeclarations: Leave",
793 CHECK_PARSE("AlwaysBreakTemplateDeclarations: No", BreakTemplateDeclarations,
795 CHECK_PARSE("AlwaysBreakTemplateDeclarations: MultiLine",
797 CHECK_PARSE("AlwaysBreakTemplateDeclarations: Yes", BreakTemplateDeclarations,
799 CHECK_PARSE("AlwaysBreakTemplateDeclarations: false",
801 CHECK_PARSE("AlwaysBreakTemplateDeclarations: true",
805 CHECK_PARSE("AlwaysBreakAfterDefinitionReturnType: None",
807 CHECK_PARSE("AlwaysBreakAfterDefinitionReturnType: All",
809 CHECK_PARSE("AlwaysBreakAfterDefinitionReturnType: TopLevel",
814 CHECK_PARSE("NamespaceIndentation: None", NamespaceIndentation,
816 CHECK_PARSE("NamespaceIndentation: Inner", NamespaceIndentation,
818 CHECK_PARSE("NamespaceIndentation: All", NamespaceIndentation,
822 CHECK_PARSE("AllowShortIfStatementsOnASingleLine: Never",
824 CHECK_PARSE("AllowShortIfStatementsOnASingleLine: WithoutElse",
827 CHECK_PARSE("AllowShortIfStatementsOnASingleLine: OnlyFirstIf",
830 CHECK_PARSE("AllowShortIfStatementsOnASingleLine: AllIfsAndElse",
833 CHECK_PARSE("AllowShortIfStatementsOnASingleLine: Always",
836 CHECK_PARSE("AllowShortIfStatementsOnASingleLine: false",
838 CHECK_PARSE("AllowShortIfStatementsOnASingleLine: true",
843 CHECK_PARSE("IndentExternBlock: AfterExternBlock", IndentExternBlock,
845 CHECK_PARSE("IndentExternBlock: Indent", IndentExternBlock,
847 CHECK_PARSE("IndentExternBlock: NoIndent", IndentExternBlock,
849 CHECK_PARSE("IndentExternBlock: true", IndentExternBlock,
851 CHECK_PARSE("IndentExternBlock: false", IndentExternBlock,
855 CHECK_PARSE("BitFieldColonSpacing: Both", BitFieldColonSpacing,
857 CHECK_PARSE("BitFieldColonSpacing: None", BitFieldColonSpacing,
859 CHECK_PARSE("BitFieldColonSpacing: Before", BitFieldColonSpacing,
861 CHECK_PARSE("BitFieldColonSpacing: After", BitFieldColonSpacing,
865 CHECK_PARSE("SortJavaStaticImport: After", SortJavaStaticImport,
867 CHECK_PARSE("SortJavaStaticImport: Before", SortJavaStaticImport,
871 CHECK_PARSE("SortUsingDeclarations: Never", SortUsingDeclarations,
873 CHECK_PARSE("SortUsingDeclarations: Lexicographic", SortUsingDeclarations,
875 CHECK_PARSE("SortUsingDeclarations: LexicographicNumeric",
878 CHECK_PARSE("SortUsingDeclarations: false", SortUsingDeclarations,
880 CHECK_PARSE("SortUsingDeclarations: true", SortUsingDeclarations,
883 CHECK_PARSE("WrapNamespaceBodyWithEmptyLines: Never",
885 CHECK_PARSE("WrapNamespaceBodyWithEmptyLines: Always",
887 CHECK_PARSE("WrapNamespaceBodyWithEmptyLines: Leave",
895 CHECK_PARSE("ForEachMacros: [BOOST_FOREACH]", ForEachMacros, BoostForeach);
899 CHECK_PARSE("ForEachMacros: [BOOST_FOREACH, Q_FOREACH]", ForEachMacros,
905 CHECK_PARSE("IfMacros: [MYIF]", IfMacros, CustomIfs);
908 CHECK_PARSE("BasedOnStyle: LLVM", AttributeMacros,
910 CHECK_PARSE("AttributeMacros: [attr1, attr2]", AttributeMacros,
914 CHECK_PARSE("StatementAttributeLikeMacros: [emit,Q_EMIT]",
919 CHECK_PARSE("StatementMacros: [QUNUSED]", StatementMacros,
921 CHECK_PARSE("StatementMacros: [QUNUSED, QT_REQUIRE_VERSION]", StatementMacros,
935 CHECK_PARSE("WhitespaceSensitiveMacros: [STRINGIZE]",
937 CHECK_PARSE("WhitespaceSensitiveMacros: [STRINGIZE, ASSERT]",
941 CHECK_PARSE("WhitespaceSensitiveMacros: ['STRINGIZE']",
943 CHECK_PARSE("WhitespaceSensitiveMacros: ['STRINGIZE', 'ASSERT']",
950 CHECK_PARSE("IncludeCategories:\n"
957 CHECK_PARSE("IncludeIsMainRegex: 'abc$'", IncludeStyle.IncludeIsMainRegex,
959 CHECK_PARSE("IncludeIsMainSourceRegex: 'abc$'",
963 CHECK_PARSE("SortIncludes: true", SortIncludes,
965 CHECK_PARSE("SortIncludes: false", SortIncludes, FormatStyle::SI_Never);
966 CHECK_PARSE("SortIncludes: CaseInsensitive", SortIncludes,
968 CHECK_PARSE("SortIncludes: CaseSensitive", SortIncludes,
970 CHECK_PARSE("SortIncludes: Never", SortIncludes, FormatStyle::SI_Never);
990 CHECK_PARSE("RawStringFormats:\n"
1008 CHECK_PARSE("SpacesInLineCommentPrefix:\n"
1014 CHECK_PARSE("SpacesInLineCommentPrefix:\n"
1017 CHECK_PARSE("SpacesInLineCommentPrefix:\n"
1020 CHECK_PARSE("SpacesInLineCommentPrefix:\n"
1023 CHECK_PARSE("SpacesInLineCommentPrefix:\n"
1029 CHECK_PARSE("SpacesInAngles: Never", SpacesInAngles, FormatStyle::SIAS_Never);
1030 CHECK_PARSE("SpacesInAngles: Always", SpacesInAngles,
1032 CHECK_PARSE("SpacesInAngles: Leave", SpacesInAngles, FormatStyle::SIAS_Leave);
1034 CHECK_PARSE("SpacesInAngles: false", SpacesInAngles, FormatStyle::SIAS_Never);
1035 CHECK_PARSE("SpacesInAngles: true", SpacesInAngles, FormatStyle::SIAS_Always);
1037 CHECK_PARSE("RequiresClausePosition: WithPreceding", RequiresClausePosition,
1039 CHECK_PARSE("RequiresClausePosition: WithFollowing", RequiresClausePosition,
1041 CHECK_PARSE("RequiresClausePosition: SingleLine", RequiresClausePosition,
1043 CHECK_PARSE("RequiresClausePosition: OwnLine", RequiresClausePosition,
1046 CHECK_PARSE("BreakBeforeConceptDeclarations: Never",
1048 CHECK_PARSE("BreakBeforeConceptDeclarations: Always",
1050 CHECK_PARSE("BreakBeforeConceptDeclarations: Allowed",
1053 CHECK_PARSE("BreakBeforeConceptDeclarations: true",
1055 CHECK_PARSE("BreakBeforeConceptDeclarations: false",
1058 CHECK_PARSE("BreakAfterAttributes: Always", BreakAfterAttributes,
1060 CHECK_PARSE("BreakAfterAttributes: Leave", BreakAfterAttributes,
1062 CHECK_PARSE("BreakAfterAttributes: Never", BreakAfterAttributes,
1066 CHECK_PARSE("LineEnding: LF", LineEnding, FormatStyle::LE_LF);
1067 CHECK_PARSE("LineEnding: CRLF", LineEnding, FormatStyle::LE_CRLF);
1068 CHECK_PARSE("LineEnding: DeriveCRLF", LineEnding, FormatStyle::LE_DeriveCRLF);
1069 CHECK_PARSE("LineEnding: DeriveLF", LineEnding, DefaultLineEnding);
1071 CHECK_PARSE("DeriveLineEnding: false", LineEnding, FormatStyle::LE_LF);
1073 CHECK_PARSE("DeriveLineEnding: false\n"
1077 CHECK_PARSE("UseCRLF: true", LineEnding, FormatStyle::LE_DeriveCRLF);
1079 CHECK_PARSE("RemoveParentheses: MultipleParentheses", RemoveParentheses,
1081 CHECK_PARSE("RemoveParentheses: ReturnStatement", RemoveParentheses,
1083 CHECK_PARSE("RemoveParentheses: Leave", RemoveParentheses,
1086 CHECK_PARSE("AllowBreakBeforeNoexceptSpecifier: Always",
1088 CHECK_PARSE("AllowBreakBeforeNoexceptSpecifier: OnlyWithParen",
1091 CHECK_PARSE("AllowBreakBeforeNoexceptSpecifier: Never",
1095 CHECK_PARSE("SeparateDefinitionBlocks: Always", SeparateDefinitionBlocks,
1097 CHECK_PARSE("SeparateDefinitionBlocks: Leave", SeparateDefinitionBlocks,
1099 CHECK_PARSE("SeparateDefinitionBlocks: Never", SeparateDefinitionBlocks,
1106 CHECK_PARSE("Language: Cpp\n"
1120 CHECK_PARSE("IndentWidth: 56", IndentWidth, 56u);
1124 CHECK_PARSE("Language: JavaScript\n"
1127 CHECK_PARSE("IndentWidth: 23", IndentWidth, 23u);
1133 CHECK_PARSE("IndentWidth: 56", IndentWidth, 56u);
1136 CHECK_PARSE("BasedOnStyle: LLVM\n"
1140 CHECK_PARSE("---\n"
1150 CHECK_PARSE("---\n"
1158 CHECK_PARSE("---\n"
1209 CHECK_PARSE("---\n"
1217 CHECK_PARSE("---\n"