├── .editorconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE ├── .gitignore ├── .travis.yml ├── AUTHORS ├── Adding_Option.md ├── BUGS ├── CMakeLists.txt ├── CODEOWNERS ├── CONTRIBUTING.md ├── COPYING ├── ChangeLog ├── Comments.txt ├── HELP ├── LIMITATIONS.txt ├── NEWS ├── README.md ├── TESTING ├── appveyor.yml ├── cmake ├── CodeCoverage.cmake ├── GenerateTokenNames.cmake ├── Toolchain-mingw32.cmake └── Toolchain-mingw64.cmake ├── commit.log ├── coverity.sh ├── coverity.travis.yml ├── documentation ├── align-thresholds.txt ├── example.c ├── goals.txt ├── htdocs │ ├── align_typedef.html │ ├── ben.cfg.txt │ ├── config.txt │ ├── configuration.txt │ ├── default.cfg │ ├── examples │ │ ├── c-1.in.c │ │ ├── c-1.out.c │ │ └── example.c │ ├── images │ │ └── linuxlinks.gif │ ├── index.html │ ├── linux.cfg.txt │ ├── options.html │ ├── options_Align.html │ ├── options_Indenting.html │ ├── options_ModifyCode.html │ ├── options_NewLines.html │ ├── options_Positioning.html │ ├── options_Space_Assign.html │ ├── options_Space_Byref.html │ ├── options_Space_Case.html │ ├── options_Space_Cast.html │ ├── options_Space_Class.html │ ├── options_Space_Comma.html │ ├── options_Space_Enum.html │ ├── options_Space_For.html │ ├── options_Space_New.html │ ├── options_Space_Operator.html │ ├── options_Space_Paren.html │ ├── options_Space_Template.html │ ├── options_Spaces.html │ ├── project-support.jpg │ ├── uncrustify.css │ └── uncrustify.html ├── overview.odt ├── paren_stack.txt ├── theory.txt └── threads.txt ├── emscripten ├── CMakeLists.txt ├── CMake_catFiles.cmake ├── CMake_emscripten_test.cmake ├── README.md ├── build.sh ├── libUncrustify.d.ts ├── postfix_file ├── postfix_module.js ├── prefix_file ├── prefix_module.js └── test │ ├── run_tests.py │ └── test_run.js ├── etc ├── MS-calling_conventions.cfg ├── amxmodx.cfg ├── ben.cfg ├── ben2.cfg ├── d.cfg ├── defaults.cfg ├── dofiles.sh ├── freebsd.cfg ├── gnu-indent.cfg ├── klaus.cfg ├── kr-indent.cfg ├── linux-indent.cfg ├── linux.cfg ├── mono.cfg ├── msvc.cfg ├── objc.cfg ├── sun.cfg ├── types.txt ├── uigui_uncrustify.ini ├── uncrust-files.sh └── xsupplicant.cfg ├── extras.vpj ├── forUncrustifySources.cfg ├── forUncrustifySources.txt ├── lnt ├── ChunkStack.lnt ├── align.lnt ├── chunk_list.lnt ├── logger.lnt ├── readme.txt ├── unc_text.lnt └── uncrustify_types.lnt ├── man └── uncrustify.1.in ├── osx └── Xcode Organizer Actions.xccommands ├── package.json ├── release-steps.txt ├── run_tests.bat ├── run_tests.sh ├── scripts ├── Gcov_test.sh ├── Run_clang-tidy.sh ├── Run_uncrustify_for_sources.bat ├── Run_uncrustify_for_sources.sh ├── Test_more_Options.sh ├── add_test_list.awk ├── auto_reduce.py ├── check_options.py ├── cmpcfg.pl ├── compare_the_gcov.awk ├── count.awk ├── count_the_options.sh ├── gen_config_combinations_uniq_output.py ├── gen_config_combinations_uniq_output_example.json ├── make_version.py ├── new_test.py ├── option_reducer.py ├── pclint │ ├── au-sm123.lnt │ ├── co-gcc.h │ ├── co-gcc.lnt │ ├── lint_cfg.lnt │ ├── pclint_cfg_eclipse.lnt │ ├── policy.lnt │ ├── run-pclint-eclipse.bat │ └── usage.txt ├── prepare_list_of_authors.sh ├── punc.py ├── tokenizer.py ├── update-defaults.sh └── update_emscripten_bindings.py ├── src ├── ChunkStack.cpp ├── ChunkStack.h ├── ListManager.h ├── ParseFrame.cpp ├── ParseFrame.h ├── align.cpp ├── align.h ├── align_stack.cpp ├── align_stack.h ├── args.cpp ├── args.h ├── backup.cpp ├── backup.h ├── base_types.h ├── brace_cleanup.cpp ├── brace_cleanup.h ├── braces.cpp ├── braces.h ├── char_table.h ├── chunk_list.cpp ├── chunk_list.h ├── combine.cpp ├── combine.h ├── compat.h ├── compat_posix.cpp ├── compat_win32.cpp ├── config.h.in ├── defines.cpp ├── defines.h ├── detect.cpp ├── detect.h ├── error_types.h ├── frame_list.cpp ├── frame_list.h ├── helper_for_print.cpp ├── helper_for_print.h ├── indent.cpp ├── indent.h ├── keywords.cpp ├── keywords.h ├── lang_pawn.cpp ├── lang_pawn.h ├── language_tools.cpp ├── language_tools.h ├── log_levels.h ├── logger.cpp ├── logger.h ├── logmask.cpp ├── logmask.h ├── md5.cpp ├── md5.h ├── newlines.cpp ├── newlines.h ├── options.cpp ├── options.h ├── options_for_QT.cpp ├── options_for_QT.h ├── output.cpp ├── output.h ├── parens.cpp ├── parens.h ├── parse_frame.cpp ├── prototypes.h ├── punctuators.cpp ├── punctuators.h ├── semicolons.cpp ├── semicolons.h ├── sorting.cpp ├── sorting.h ├── space.cpp ├── space.h ├── symbols_table.h ├── token_enum.h ├── tokenize.cpp ├── tokenize.h ├── tokenize_cleanup.cpp ├── tokenize_cleanup.h ├── unc_ctype.h ├── unc_text.cpp ├── unc_text.h ├── unc_tools.cpp ├── unc_tools.h ├── uncrustify.cpp ├── uncrustify.h ├── uncrustify_emscripten.cpp ├── uncrustify_types.h ├── uncrustify_version.h.in ├── unicode.cpp ├── unicode.h ├── universalindentgui.cpp ├── universalindentgui.h ├── width.cpp ├── width.h └── windows_compat.h ├── tests ├── .editorconfig ├── CMakeLists.txt ├── c-sharp.test ├── c.test ├── cli │ ├── config │ │ ├── I-842.cfg │ │ ├── mini_d.cfg │ │ ├── mini_nd.cfg │ │ └── unmatched_close_pp.cfg │ ├── input │ │ ├── I-842.cpp │ │ ├── logger.cs │ │ ├── testSrc.cpp │ │ └── unmatched_close_pp.cpp │ ├── output │ │ ├── 21.txt │ │ ├── 25.txt │ │ ├── 28.txt │ │ ├── 31.txt │ │ ├── 36.txt │ │ ├── 66.txt │ │ ├── 9.txt │ │ ├── 92.txt │ │ ├── I-842.txt │ │ ├── help.txt │ │ ├── logger_cs_L_99.txt │ │ ├── mini_d_error.txt │ │ ├── mini_d_uc.txt │ │ ├── mini_d_ucwd.txt │ │ ├── mini_nd_uc.txt │ │ ├── mini_nd_ucwd.txt │ │ ├── p.txt │ │ ├── show_config.txt │ │ └── unmatched_close_pp.txt │ ├── test_cli_options.py │ └── test_cli_options.sh ├── config │ ├── 1liner-no-split.cfg │ ├── 1liner-split.cfg │ ├── 615_nested_usings.cfg │ ├── 620_getset-brace.cfg │ ├── 623_caret-spacing.cfg │ ├── 625_where-constraints.cfg │ ├── 633_decl-in-func-typedef.cfg │ ├── I1112-2.cfg │ ├── NewLine-f.cfg │ ├── NewLine-r.cfg │ ├── STUCK_macro-difficulties.cfg │ ├── U-J.cfg │ ├── U01-Cpp.cfg │ ├── U01-Cs.cfg │ ├── U02-Cpp.cfg │ ├── U02-Cs.cfg │ ├── U03-Cpp.cfg │ ├── U03-Cs.cfg │ ├── U04-Cpp.cfg │ ├── U04-Cs.cfg │ ├── U05-Cpp.cfg │ ├── U05-Cs.cfg │ ├── U06-Cpp.cfg │ ├── U06-Cs.cfg │ ├── U07-Cpp.cfg │ ├── U07-Cs.cfg │ ├── U08-Cpp.cfg │ ├── U08-Cs.cfg │ ├── U09-Cpp.cfg │ ├── U09-Cs.cfg │ ├── U10-Cpp.cfg │ ├── U10-Cpp.rerun.cfg │ ├── U10-Cs.cfg │ ├── U11-Cpp.cfg │ ├── U11-Cpp.rerun.cfg │ ├── U11-Cs.cfg │ ├── U12-Cpp.cfg │ ├── U13-Cpp.cfg │ ├── U13-Cs.cfg │ ├── U14-Cpp.cfg │ ├── U15-Cpp.cfg │ ├── U15-Cs.cfg │ ├── U16-Cpp.cfg │ ├── U18-Cpp.cfg │ ├── U21-Cpp.cfg │ ├── U23-Cpp.cfg │ ├── U24-Cpp.cfg │ ├── U25-Cpp.cfg │ ├── U26-Cpp.cfg │ ├── U27-Cpp.cfg │ ├── U28-Cpp.cfg │ ├── U29-Cpp.cfg │ ├── U30-Cpp.cfg │ ├── U31-Cpp.cfg │ ├── U33-Cpp.cfg │ ├── U36-Cpp.cfg │ ├── UNI-10496.cfg │ ├── UNI-11095.cfg │ ├── UNI-11662.cfg │ ├── UNI-11993.cfg │ ├── UNI-12046.cfg │ ├── UNI-1288.cfg │ ├── UNI-1338.cfg │ ├── UNI-1340.cfg │ ├── UNI-1343.cfg │ ├── UNI-1344.cfg │ ├── UNI-1346.cfg │ ├── UNI-1347.cfg │ ├── UNI-1350.cfg │ ├── UNI-1356.cfg │ ├── UNI-1358.cfg │ ├── UNI-13955.cfg │ ├── UNI-14131.cfg │ ├── UNI-18437.cfg │ ├── UNI-18777.cfg │ ├── UNI-18829.cfg │ ├── UNI-1975.cfg │ ├── UNI-1977.cfg │ ├── UNI-1978.cfg │ ├── UNI-19895.cfg │ ├── UNI-2020.cfg │ ├── UNI-2021.cfg │ ├── UNI-2049.cfg │ ├── UNI-21730.cfg │ ├── UNI-2650.cfg │ ├── UNI-2680.cfg │ ├── UNI-2684.cfg │ ├── UNI-2685.cfg │ ├── UNI-29933.cfg │ ├── UNI-29935.cfg │ ├── UNI-30088.cfg │ ├── UNI-30498_2.cfg │ ├── UNI-3083.cfg │ ├── UNI-32657.cfg │ ├── UNI-32658.cfg │ ├── UNI-36862.cfg │ ├── UNI-37241.cfg │ ├── UNI-9917.cfg │ ├── UNI-9917.rerun.cfg │ ├── Uncrustify.Cpp.cfg │ ├── add_long_closebrace_comment_1.cfg │ ├── aet-func_call_user.cfg │ ├── aet-func_def.cfg │ ├── aet-sp_after_oc_msg_receiver.cfg │ ├── aet-sp_inside_braces_oc_dict.cfg │ ├── aet.cfg │ ├── al.cfg │ ├── align-1.cfg │ ├── align-2.cfg │ ├── align-3.cfg │ ├── align_assign_span-1.cfg │ ├── align_attr.cfg │ ├── align_fcall-2.cfg │ ├── align_fcall.cfg │ ├── align_func_params-t.cfg │ ├── align_func_params_gap.cfg │ ├── align_func_params_span-1.cfg │ ├── align_func_params_thresh_1.cfg │ ├── align_func_params_thresh_2.cfg │ ├── align_func_params_thresh_3.cfg │ ├── align_func_params_thresh_4.cfg │ ├── align_keep_extra.cfg │ ├── align_oc_msg_colon_span-1.cfg │ ├── align_right_cmt_gap-1.cfg │ ├── align_right_comment.cfg │ ├── align_same_func_call_params-t.cfg │ ├── align_typedef_func-1.cfg │ ├── align_typedef_func-2.cfg │ ├── align_typedef_gap-3_span-5.cfg │ ├── align_var_class_span-1.cfg │ ├── align_var_def_thresh_1.cfg │ ├── align_var_def_thresh_2.cfg │ ├── align_var_def_thresh_3.cfg │ ├── amxmodx.cfg │ ├── annotation.cfg │ ├── arith-vs-ptr.cfg │ ├── avalon.cfg │ ├── avalon2.cfg │ ├── avalon3.cfg │ ├── avalon4.cfg │ ├── ben2.cfg │ ├── ben_001.cfg │ ├── ben_002.cfg │ ├── ben_003.cfg │ ├── ben_004.cfg │ ├── ben_005.cfg │ ├── ben_006.cfg │ ├── ben_008.cfg │ ├── ben_009.cfg │ ├── ben_010.cfg │ ├── ben_011.cfg │ ├── ben_012.cfg │ ├── ben_013.cfg │ ├── ben_014.cfg │ ├── ben_015.cfg │ ├── ben_016.cfg │ ├── ben_017.cfg │ ├── ben_018.cfg │ ├── ben_020.cfg │ ├── ben_021.cfg │ ├── ben_022.cfg │ ├── ben_023.cfg │ ├── ben_024.cfg │ ├── ben_026.cfg │ ├── ben_027.cfg │ ├── ben_028.cfg │ ├── ben_029.cfg │ ├── ben_030.cfg │ ├── ben_031.cfg │ ├── ben_032.cfg │ ├── ben_033.cfg │ ├── ben_034.cfg │ ├── ben_036.cfg │ ├── ben_037.cfg │ ├── ben_038.cfg │ ├── ben_042.cfg │ ├── ben_043.cfg │ ├── ben_044.cfg │ ├── ben_045.cfg │ ├── ben_047.cfg │ ├── ben_048.cfg │ ├── ben_049.cfg │ ├── ben_050.cfg │ ├── ben_051.cfg │ ├── ben_052.cfg │ ├── ben_053.cfg │ ├── ben_054.cfg │ ├── ben_055.cfg │ ├── ben_056.cfg │ ├── ben_057.cfg │ ├── ben_058.cfg │ ├── ben_061.cfg │ ├── ben_063.cfg │ ├── ben_064.cfg │ ├── ben_065.cfg │ ├── ben_069.cfg │ ├── ben_070.cfg │ ├── ben_071.cfg │ ├── ben_072.cfg │ ├── ben_073.cfg │ ├── ben_074.cfg │ ├── ben_075.cfg │ ├── ben_076.cfg │ ├── ben_077.cfg │ ├── ben_078.cfg │ ├── ben_079.cfg │ ├── ben_080.cfg │ ├── ben_081.cfg │ ├── ben_083.cfg │ ├── ben_084.cfg │ ├── ben_085.cfg │ ├── ben_086.cfg │ ├── ben_087.cfg │ ├── ben_088.cfg │ ├── ben_089.cfg │ ├── ben_090.cfg │ ├── ben_091.cfg │ ├── ben_092.cfg │ ├── ben_093.cfg │ ├── ben_094.cfg │ ├── ben_095.cfg │ ├── ben_098.cfg │ ├── ben_099.cfg │ ├── ben_100.cfg │ ├── ben_101.cfg │ ├── ben_102.cfg │ ├── ben_103.cfg │ ├── ben_104.cfg │ ├── ben_105.cfg │ ├── block_pointer.cfg │ ├── blocks.cfg │ ├── bool-pos-eol-break.cfg │ ├── bool-pos-eol-force.cfg │ ├── bool-pos-eol.cfg │ ├── bool-pos-sol-break.cfg │ ├── bool-pos-sol-force.cfg │ ├── bool-pos-sol.cfg │ ├── brace-allman.cfg │ ├── brace-banner.cfg │ ├── brace-banner.rerun.cfg │ ├── brace-gnu.cfg │ ├── brace-kr-br.cfg │ ├── brace-kr-nobr.cfg │ ├── brace-kr.cfg │ ├── brace-remove-2.cfg │ ├── brace-remove-all.cfg │ ├── brace-ws.cfg │ ├── brace-ws2.cfg │ ├── bug_1003.cfg │ ├── bug_1004.cfg │ ├── bug_1020.cfg │ ├── bug_1108.cfg │ ├── bug_1160.cfg │ ├── bug_1161.cfg │ ├── bug_1169.cfg │ ├── bug_1170.cfg │ ├── bug_1236.cfg │ ├── bug_1296.cfg │ ├── bug_1324.cfg │ ├── bug_1340.cfg │ ├── bug_1349.cfg │ ├── bug_1395.cfg │ ├── bug_1402.cfg │ ├── bug_1403.cfg │ ├── bug_1432.cfg │ ├── bug_1439.cfg │ ├── bug_1452.cfg │ ├── bug_1620.cfg │ ├── bug_1637.cfg │ ├── bug_1649.cfg │ ├── bug_1650.cfg │ ├── bug_1689.cfg │ ├── bug_1691.cfg │ ├── bug_1702.cfg │ ├── bug_1717.cfg │ ├── bug_1718.cfg │ ├── bug_340.cfg │ ├── bug_472.cfg │ ├── bug_488.cfg │ ├── bug_489.cfg │ ├── bug_620.cfg │ ├── bug_633.cfg │ ├── bug_643.cfg │ ├── bug_657.cfg │ ├── bug_664.cfg │ ├── bug_670.cfg │ ├── bug_671.cfg │ ├── bug_841.cfg │ ├── bug_i_125-412.cfg │ ├── bug_i_322.cfg │ ├── bug_i_359.cfg │ ├── bug_i_405.cfg │ ├── bug_i_409-create.cfg │ ├── bug_i_409-split.cfg │ ├── bug_i_478.cfg │ ├── bug_i_663.cfg │ ├── bug_i_666.cfg │ ├── bug_i_752.cfg │ ├── bug_i_771.cfg │ ├── byref-2.cfg │ ├── byref-center.cfg │ ├── byref-left.cfg │ ├── byref-right.cfg │ ├── case-1.cfg │ ├── case-2.cfg │ ├── case-3.cfg │ ├── cast-sp-a.cfg │ ├── cast-sp-r.cfg │ ├── cast-type.cfg │ ├── cast-types.txt │ ├── cast.cfg │ ├── cgal.cfg │ ├── clang-has_include.cfg │ ├── clark.cfg │ ├── clark.rerun.cfg │ ├── class-colon-pos-eol-add.cfg │ ├── class-colon-pos-eol.cfg │ ├── class-colon-pos-sol-add.cfg │ ├── class-colon-pos-sol.cfg │ ├── class-header.h │ ├── class-nl_func-add.cfg │ ├── class-nl_func-add2.cfg │ ├── class-nl_func-del.cfg │ ├── class-on-colon-indent.cfg │ ├── cmt_convert_tab_to_spaces-t.cfg │ ├── cmt_cpp_to_c-t.cfg │ ├── cmt_indent-1.cfg │ ├── cmt_indent-2.cfg │ ├── cmt_indent-3.cfg │ ├── cmt_indent_multi-f.cfg │ ├── cmt_insert-0.cfg │ ├── cmt_insert-1.cfg │ ├── cmt_multi_check_last-f.cfg │ ├── cmt_multi_first_len_minimum-1.cfg │ ├── cmt_nl_end.cfg │ ├── code_width-70.cfg │ ├── code_width-80.cfg │ ├── cond-1.cfg │ ├── const_throw.cfg │ ├── cpp17.cfg │ ├── cpp_to_c-1.cfg │ ├── cpp_to_c-2.cfg │ ├── cpp_to_c-3.cfg │ ├── cs_generics.cfg │ ├── cu.cfg │ ├── custom-open.cfg │ ├── custom-open2.cfg │ ├── custom_types_ssl.cfg │ ├── d-tst2.cfg │ ├── d.cfg │ ├── d2.cfg │ ├── d3.cfg │ ├── d3a.cfg │ ├── d_sp_paren.cfg │ ├── del_semicolon.cfg │ ├── dont-detab-strings.cfg │ ├── dont-process-defines.cfg │ ├── doxy-comment-no.cfg │ ├── doxy-comment-yes.cfg │ ├── else-if-1.cfg │ ├── else-if-2.cfg │ ├── empty.cfg │ ├── empty_body.cfg │ ├── endif.cfg │ ├── enum.cfg │ ├── enum_comma-3.cfg │ ├── enum_comma-4.cfg │ ├── enum_comma-6.cfg │ ├── file-header.h │ ├── file_footer.txt │ ├── file_header.txt │ ├── force_tab_after_define-t.cfg │ ├── freebsd.cfg │ ├── func-def-1.cfg │ ├── func-def-2.cfg │ ├── func-def-3.cfg │ ├── func-header.h │ ├── func-header2.h │ ├── func_call_user.cfg │ ├── func_class.cfg │ ├── func_param.cfg │ ├── function_header.txt │ ├── ger.cfg │ ├── getset.cfg │ ├── gh137.cfg │ ├── gh293.a.cfg │ ├── gh293.b.cfg │ ├── i1516.cfg │ ├── i1536.cfg │ ├── i1536.txt │ ├── i1564.cfg │ ├── i1768.cfg │ ├── i683.cfg │ ├── if_chain.cfg │ ├── if_chain_braces_2.cfg │ ├── indent-1.cfg │ ├── indent-vbrace.cfg │ ├── indent_boxed.cfg │ ├── indent_braces_no.cfg │ ├── indent_class-t.cfg │ ├── indent_class-t_columns-4.cfg │ ├── indent_columns-11.cfg │ ├── indent_columns-2.cfg │ ├── indent_columns-3.cfg │ ├── indent_columns-4.cfg │ ├── indent_comment_align_thresh_2.cfg │ ├── indent_continue-8.cfg │ ├── indent_cs_delegate_brace-t.cfg │ ├── indent_ctor_init.cfg │ ├── indent_ctor_init_leading.cfg │ ├── indent_ctor_members_twice.cfg │ ├── indent_else_if-t.cfg │ ├── indent_first_for_expr-t.cfg │ ├── indent_func_call_param.cfg │ ├── indent_func_def_param.cfg │ ├── indent_func_param.cfg │ ├── indent_func_proto_param.cfg │ ├── indent_namespace-t.cfg │ ├── indent_namespace_single_indent.cfg │ ├── indent_once.cfg │ ├── indent_param.cfg │ ├── indent_paren_after_func_call-t.cfg │ ├── indent_paren_after_func_decl-t.cfg │ ├── indent_paren_after_func_def-t.cfg │ ├── indent_paren_close-1.cfg │ ├── indent_paren_close-2.cfg │ ├── indent_semicolon_for_paren-t.cfg │ ├── indent_shift.cfg │ ├── indent_single_newline.cfg │ ├── indent_ternary_operator-1.cfg │ ├── indent_ternary_operator-2.cfg │ ├── indent_using_block-f.cfg │ ├── indent_var_def.cfg │ ├── indent_var_def_cont-t.cfg │ ├── indent_with_tabs-0.cfg │ ├── initlist_leading_commas.cfg │ ├── issue_527.cfg │ ├── issue_564.cfg │ ├── issue_574.cfg │ ├── issue_672.cfg │ ├── java_foreach.cfg │ ├── java_synchronized_1.cfg │ ├── java_synchronized_2.cfg │ ├── jdbi-f.cfg │ ├── jdbi-r.cfg │ ├── kdepim2.cfg │ ├── kdepim3.cfg │ ├── kdepim5.cfg │ ├── kw_subst.cfg │ ├── kw_subst2.cfg │ ├── kw_subst3.cfg │ ├── kw_subst4.cfg │ ├── label_colon_nl_1.cfg │ ├── label_colon_nl_2.cfg │ ├── lambda1.cfg │ ├── lambda2.cfg │ ├── lambda3.cfg │ ├── libd.cfg │ ├── long_br_cmt.cfg │ ├── long_br_cmt.rerun.cfg │ ├── long_namespace.cfg │ ├── mda_space_a.cfg │ ├── mda_space_c.cfg │ ├── misc-failures.cfg │ ├── mod-paren.cfg │ ├── mod-paren2.cfg │ ├── mod_add_long_class_closebrace_comment-1.cfg │ ├── mod_add_long_namespace_closebrace_comment-1.cfg │ ├── mod_case_brace_add.cfg │ ├── mod_case_brace_rm.cfg │ ├── mod_full_brace_function-f.cfg │ ├── mod_full_brace_if_chain-t.cfg │ ├── mod_full_brace_if_chain_only-t.cfg │ ├── mod_full_brace_nl_block_rem_mlcond-0.cfg │ ├── mod_full_brace_nl_block_rem_mlcond-1.cfg │ ├── mod_move_case_brace.cfg │ ├── mod_remove_empty_return-t.cfg │ ├── mod_remove_extra_semicolon-t.cfg │ ├── mod_sort_using-t.cfg │ ├── mono.cfg │ ├── msg-header.h │ ├── multi_line_1.cfg │ ├── multi_line_10.cfg │ ├── multi_line_2.cfg │ ├── multi_line_3.cfg │ ├── multi_line_4.cfg │ ├── multi_line_5.cfg │ ├── multi_line_6.cfg │ ├── multi_line_7.cfg │ ├── multi_line_8.cfg │ ├── multi_line_9.cfg │ ├── nSolve.cfg │ ├── negative_indent.cfg │ ├── nepenthes.cfg │ ├── new-constraint-paren-space.cfg │ ├── new_op_a.cfg │ ├── new_op_f.cfg │ ├── new_op_paren_open_close.cfg │ ├── new_op_r.cfg │ ├── newline_after_endif.cfg │ ├── nl-comment.cfg │ ├── nl_access_spec.cfg │ ├── nl_after_annotation-f.cfg │ ├── nl_after_func_body-2.cfg │ ├── nl_after_func_body-3.cfg │ ├── nl_after_func_body.cfg │ ├── nl_after_func_class_proto-3.cfg │ ├── nl_after_func_proto-3.cfg │ ├── nl_after_func_proto_group-3.cfg │ ├── nl_assign1.cfg │ ├── nl_assign2.cfg │ ├── nl_before_after.cfg │ ├── nl_before_func_body_def-1.cfg │ ├── nl_before_func_body_def-1.rerun.cfg │ ├── nl_before_func_body_def-2.cfg │ ├── nl_before_if_closing_paren-f.cfg │ ├── nl_before_if_closing_paren-r.cfg │ ├── nl_between_annotation-f.cfg │ ├── nl_brace_brace-a.cfg │ ├── nl_brace_fparen-f.cfg │ ├── nl_brace_fparen-r.cfg │ ├── nl_brace_square.cfg │ ├── nl_brace_test.cfg │ ├── nl_class-a.cfg │ ├── nl_class-r.cfg │ ├── nl_create_one_liner.cfg │ ├── nl_ds_struct_enum-2.cfg │ ├── nl_ds_struct_enum_cmt-t.cfg │ ├── nl_endif.cfg │ ├── nl_enum_own_lines-3.cfg │ ├── nl_enum_own_lines-3.rerun.cfg │ ├── nl_enum_own_lines-4.cfg │ ├── nl_enum_own_lines-a.cfg │ ├── nl_func_call_empty-r.cfg │ ├── nl_func_call_paren-f.cfg │ ├── nl_func_call_paren_empty-r.cfg │ ├── nl_func_class_scope-a.cfg │ ├── nl_func_decl_1.cfg │ ├── nl_func_decl_2.cfg │ ├── nl_func_def_paren_empty-r.cfg │ ├── nl_func_paren_empty.cfg │ ├── nl_func_scope_name-a.cfg │ ├── nl_func_type_name_class.cfg │ ├── nl_func_type_name_force.cfg │ ├── nl_func_type_name_remove.cfg │ ├── nl_max_blank_in_func-1.cfg │ ├── nl_max_blank_in_func-4.cfg │ ├── nl_namespace-a.cfg │ ├── nl_namespace-r.cfg │ ├── nl_oc_block_brace-f.cfg │ ├── nl_semicolon.cfg │ ├── nl_template_class-force.cfg │ ├── nl_template_class-remove.cfg │ ├── nl_try-a.cfg │ ├── nl_type_brace_init_lst-f.cfg │ ├── nl_type_brace_init_lst-r.cfg │ ├── nl_type_brace_init_lst_close-f.cfg │ ├── nl_type_brace_init_lst_close-r.cfg │ ├── nl_type_brace_init_lst_open-f.cfg │ ├── nl_type_brace_init_lst_open-r.cfg │ ├── no_squeeze_ifdef.cfg │ ├── obj-c-available.cfg │ ├── obj-c-properties.cfg │ ├── objc_bug_497.cfg │ ├── objc_complex_method.cfg │ ├── oc1.cfg │ ├── oc10.cfg │ ├── oc11.cfg │ ├── oc12.cfg │ ├── oc13.cfg │ ├── oc14.cfg │ ├── oc16.cfg │ ├── oc17.cfg │ ├── oc18.cfg │ ├── oc19.cfg │ ├── oc2.cfg │ ├── oc4.cfg │ ├── oc5.cfg │ ├── oc6.cfg │ ├── oc7.cfg │ ├── oc8.cfg │ ├── oc9.cfg │ ├── oc_bug_1674.cfg │ ├── oc_bug_1683.cfg │ ├── oc_cond_colon.cfg │ ├── op-space-force.cfg │ ├── op-space-remove-align-1.cfg │ ├── op-space-remove-align-2.cfg │ ├── op-space-remove.cfg │ ├── op_sym_empty.cfg │ ├── pascal_ptr.cfg │ ├── pawn-escape.cfg │ ├── pawn.cfg │ ├── pos_comma-lf.cfg │ ├── pos_comma-tb.cfg │ ├── pos_compare-eol.cfg │ ├── pos_compare-sol.cfg │ ├── pos_conditional-l.cfg │ ├── pos_conditional-t.cfg │ ├── pos_enum_comma-tf.cfg │ ├── pp-indent-2.cfg │ ├── pp-pragma.cfg │ ├── pp-space.cfg │ ├── pp_define_at_level-1.cfg │ ├── pp_if_indent-0.cfg │ ├── pp_if_indent-1.cfg │ ├── pp_if_indent-2.cfg │ ├── pp_if_indent-3.cfg │ ├── pp_if_indent-4.cfg │ ├── pp_indent-a.cfg │ ├── pp_ret.cfg │ ├── preproc-cleanup.cfg │ ├── ptr-arith.cfg │ ├── ptr_star-1.cfg │ ├── ptr_star-2.cfg │ ├── ptr_star-3.cfg │ ├── qt-1.cfg │ ├── rdan.cfg │ ├── region-0.cfg │ ├── region-1.cfg │ ├── region-2.cfg │ ├── region-3.cfg │ ├── return-1.cfg │ ├── return-2.cfg │ ├── return-3.cfg │ ├── return-4.cfg │ ├── sef.cfg │ ├── sf.2886991-f.cfg │ ├── sf.2886991-r.cfg │ ├── sf.3315874.cfg │ ├── sf537.cfg │ ├── sf538.cfg │ ├── sf574.cfg │ ├── sf607.cfg │ ├── sim.cfg │ ├── sort_imports.cfg │ ├── sort_using_categ.cfg │ ├── sp_after_cast-f.cfg │ ├── sp_after_cast-r.cfg │ ├── sp_after_cast.cfg │ ├── sp_after_comma-a.cfg │ ├── sp_after_oc_at_sel_add.cfg │ ├── sp_after_oc_at_sel_force.cfg │ ├── sp_after_oc_at_sel_remove.cfg │ ├── sp_after_oc_block_caret_add.cfg │ ├── sp_after_oc_block_caret_force.cfg │ ├── sp_after_oc_return_type_add.cfg │ ├── sp_after_oc_return_type_force.cfg │ ├── sp_after_oc_return_type_remove.cfg │ ├── sp_after_ptr_star_qualifier-f.cfg │ ├── sp_after_send_oc_colon-f.cfg │ ├── sp_after_sparen.cfg │ ├── sp_after_throw_remove.cfg │ ├── sp_after_type-f.cfg │ ├── sp_after_type-i.cfg │ ├── sp_after_type_brace_init_lst_open-f.cfg │ ├── sp_after_type_brace_init_lst_open-r.cfg │ ├── sp_angle_paren-f.cfg │ ├── sp_angle_paren_empty.cfg │ ├── sp_arith-a.cfg │ ├── sp_arith-f.cfg │ ├── sp_arith_additive-f.cfg │ ├── sp_arith_additive-r.cfg │ ├── sp_assign-a.cfg │ ├── sp_balance_nested_parens.cfg │ ├── sp_before_byref-r.cfg │ ├── sp_before_comma-f.cfg │ ├── sp_before_ellipsis-f.cfg │ ├── sp_before_ellipsis-r.cfg │ ├── sp_before_oc_block_caret_force.cfg │ ├── sp_before_oc_block_caret_remove.cfg │ ├── sp_before_ptr_star-f.cfg │ ├── sp_before_ptr_star-r.cfg │ ├── sp_before_tr_emb_cmt-a.cfg │ ├── sp_before_tr_emb_cmt-f.cfg │ ├── sp_before_type_brace_init_lst_close-f.cfg │ ├── sp_before_type_brace_init_lst_close-r.cfg │ ├── sp_between_new_paren.cfg │ ├── sp_block_as_argument.cfg │ ├── sp_block_as_argument2.cfg │ ├── sp_block_as_argument3.cfg │ ├── sp_block_as_argument4.cfg │ ├── sp_block_as_argument5.cfg │ ├── sp_bool-f.cfg │ ├── sp_bool-r.cfg │ ├── sp_cmt.cfg │ ├── sp_cmt_cpp_start-a.cfg │ ├── sp_cmt_cpp_start-r.cfg │ ├── sp_cmt_cpp_start_force.cfg │ ├── sp_cond_colon.cfg │ ├── sp_cparen_oparen-f.cfg │ ├── sp_cparen_oparen-r.cfg │ ├── sp_dc.cfg │ ├── sp_enum_paren-r.cfg │ ├── sp_func_call_empty.cfg │ ├── sp_func_class_empty.cfg │ ├── sp_func_def_empty.cfg │ ├── sp_func_proto_empty.cfg │ ├── sp_inside_braces_empty-r.cfg │ ├── sp_inside_fparen-f.cfg │ ├── sp_inside_type_brace_init_lst-f.cfg │ ├── sp_inside_type_brace_init_lst-r.cfg │ ├── sp_oc_boxed.cfg │ ├── sp_oc_catch.cfg │ ├── sp_oc_synchronized.cfg │ ├── sp_paren_ellipsis-f.cfg │ ├── sp_paren_ellipsis-r.cfg │ ├── sp_sizeof_ellipsis-f.cfg │ ├── sp_sizeof_ellipsis-r.cfg │ ├── sp_sizeof_ellipsis_paren-f.cfg │ ├── sp_sizeof_ellipsis_paren-r.cfg │ ├── sp_skip_vbrace_tokens.cfg │ ├── sp_this_paren.cfg │ ├── sp_throw_paren-f.cfg │ ├── sp_throw_paren-r.cfg │ ├── sp_type_brace_init_lst-f.cfg │ ├── sp_type_brace_init_lst-r.cfg │ ├── sp_type_ellipsis-f.cfg │ ├── sp_type_ellipsis-r.cfg │ ├── sp_word_brace_force.cfg │ ├── sp_word_brace_remove.cfg │ ├── space_indent_class-t_columns-4.cfg │ ├── space_indent_columns-3.cfg │ ├── space_indent_columns-4.cfg │ ├── squeeze-paren-close-Option.cfg │ ├── squeeze_ifdef_top.cfg │ ├── staging │ │ ├── STUCK_macro-difficulties.cfg │ │ ├── UNI-11095.cfg │ │ ├── UNI-1288.cfg │ │ ├── UNI-1338.cfg │ │ ├── UNI-1343.cfg │ │ ├── UNI-1350.cfg │ │ ├── UNI-1356.cfg │ │ ├── UNI-2021.cfg │ │ ├── UNI-2049.cfg │ │ ├── UNI-24076.cfg │ │ ├── UNI-32405.cfg │ │ ├── Uncrustify.CSharp.cfg │ │ ├── Uncrustify.Common-CStyle.cfg │ │ ├── Uncrustify.Common-Cpp.cfg │ │ ├── Uncrustify.Cpp.cfg │ │ ├── Uncrustify.CppCli.cfg │ │ ├── Uncrustify.CppCs.cfg │ │ ├── Uncrustify.JamCS.cfg │ │ ├── Uncrustify.WIP.cfg │ │ ├── default.cfg │ │ ├── dont-process-defines.cfg │ │ ├── issue_564.cfg │ │ └── sync-config.ps1 │ ├── star_pos-0.cfg │ ├── star_pos-1.cfg │ ├── star_pos-2.cfg │ ├── string_replace_tab_chars-t.cfg │ ├── tab-0-11.cfg │ ├── tcf.cfg │ ├── template_angles.cfg │ ├── template_sp-force.cfg │ ├── template_sp-remove.cfg │ ├── ternary_short.cfg │ ├── toggle_processing_cmt.cfg │ ├── toggle_processing_cmt2.cfg │ ├── type_wrap.cfg │ ├── var_def_gap.cfg │ ├── verbatim_strings.cfg │ ├── verbatim_strings.rerun.cfg │ ├── wessex.cfg │ ├── width-2.cfg │ ├── width-2.rerun.cfg │ ├── width-3.cfg │ ├── width.cfg │ └── xml-str.cfg ├── cpp.test ├── d.test ├── default_strings.txt ├── default_strings_remover.py ├── difftest.sh ├── ecma.test ├── fixtest.sh ├── imported.test ├── input │ ├── c │ │ ├── add_long_comment.c │ │ ├── align-equ.c │ │ ├── align-proto-vars.c │ │ ├── align-proto.c │ │ ├── align-string.c │ │ ├── align-struct-init.c │ │ ├── align-typedef.c │ │ ├── align-var.c │ │ ├── align_attr.c │ │ ├── align_keep_extra.c │ │ ├── asm.c │ │ ├── attribute.c │ │ ├── backslash-newline-lex.c │ │ ├── beautifier-off.c │ │ ├── bits.c │ │ ├── bool-pos.c │ │ ├── br_cmt.c │ │ ├── brace-remove.c │ │ ├── brace-remove2.c │ │ ├── brace-remove3.c │ │ ├── brace.c │ │ ├── braces-2.c │ │ ├── braces-3.c │ │ ├── braces-4.c │ │ ├── braces-5.c │ │ ├── braces.c │ │ ├── bsnl.c │ │ ├── bug_1041.c │ │ ├── bug_1196.c │ │ ├── bug_1702.c │ │ ├── bug_1718.c │ │ ├── bug_489.c │ │ ├── bug_671.c │ │ ├── bug_i_222.c │ │ ├── bug_i_771.c │ │ ├── bug_i_876.c │ │ ├── bugs-1.c │ │ ├── bugs-2.c │ │ ├── bugs-3.c │ │ ├── bugs-4.c │ │ ├── bugs-5.c │ │ ├── bugs-6.c │ │ ├── bugs-7.c │ │ ├── bugs-8.c │ │ ├── bugs.c │ │ ├── case.c │ │ ├── cast_brace.c │ │ ├── casts.c │ │ ├── clang-has_include.h │ │ ├── cmt-align.c │ │ ├── cmt_multi.c │ │ ├── cmt_multi_utf8.c │ │ ├── cmt_nl_end.c │ │ ├── cmt_right_align.c │ │ ├── code_width.c │ │ ├── colon-asm.c │ │ ├── comment-convert.c │ │ ├── comment-indent.c │ │ ├── cond.c │ │ ├── custom_types_ssl.c │ │ ├── define-if-indent.c │ │ ├── deref.c │ │ ├── directfb.h │ │ ├── dos.c │ │ ├── doxy-comment.c │ │ ├── else-if.c │ │ ├── empty-for.c │ │ ├── endif.c │ │ ├── enum-struct-init.c │ │ ├── enum_gallery.c │ │ ├── extern-c-attribute.c │ │ ├── extern.c │ │ ├── fcn_indent.c │ │ ├── fcn_indent_func_def_col1.c │ │ ├── fcn_type.c │ │ ├── for-space.c │ │ ├── freebsd.c │ │ ├── func_call_user.c │ │ ├── func_call_user2.c │ │ ├── func_wrap.c │ │ ├── funcfunc.c │ │ ├── function-def.c │ │ ├── gh399.c │ │ ├── global-vars.c │ │ ├── hello.c │ │ ├── i1270.c │ │ ├── i1413.c │ │ ├── i1564.c │ │ ├── i2c-core.c │ │ ├── if_chain.c │ │ ├── ifdef-indent.c │ │ ├── ifdef-nest.c │ │ ├── include_define.h │ │ ├── indent-assign.c │ │ ├── indent-vbrace.c │ │ ├── indent.cpp │ │ ├── indent_first_bool_expr.c │ │ ├── indent_ternary-1.c │ │ ├── indent_ternary-2.c │ │ ├── kw_subst.c │ │ ├── lvalue.c │ │ ├── mac.c │ │ ├── minus-minus.c │ │ ├── misc.c │ │ ├── mod-paren.c │ │ ├── mod_case_brace.c │ │ ├── multi.h │ │ ├── negative_value.c │ │ ├── newline_after_endif.c │ │ ├── nl-comment.c │ │ ├── nl-cont.c │ │ ├── nl-cont2.c │ │ ├── nl-semicolon.c │ │ ├── nl-ver-def.c │ │ ├── nl_assign.c │ │ ├── nl_create_one_liner.c │ │ ├── nl_ds_struct_enum.c │ │ ├── nl_endif.c │ │ ├── nl_proto_endif.c │ │ ├── nl_return_expr.c │ │ ├── one-liner-define.c │ │ ├── one-liner-init.c │ │ ├── output.cpp │ │ ├── paren-indent.c │ │ ├── paren_indent.c │ │ ├── pascal_ptr.c │ │ ├── pos_compare.c │ │ ├── pos_conditional.c │ │ ├── pp-if-indent.c │ │ ├── pp-nest.c │ │ ├── pp-space.c │ │ ├── pp_concat_asn1.h │ │ ├── pp_ret.c │ │ ├── pragma.c │ │ ├── pragma_asm.c │ │ ├── preproc-if.c │ │ ├── return-multi.c │ │ ├── semicolons.c │ │ ├── sf588.c │ │ ├── sf594.c │ │ ├── sort_include.c │ │ ├── sp_after_sparen.c │ │ ├── sp_cmt_cpp_start.c │ │ ├── sp_embed_comment.c │ │ ├── string_prefixes.c │ │ ├── string_utf8.c │ │ ├── struct-brace.c │ │ ├── switch-case.c │ │ ├── switch.c │ │ ├── t3.in.c │ │ ├── type-cast.c │ │ ├── type_wrap.c │ │ ├── utf8-identifiers.c │ │ ├── vardefcol.c │ │ ├── various_colons.c │ │ ├── vb-do.c │ │ ├── vb-pp.c │ │ ├── vb-while.c │ │ └── xml.c │ ├── cpp │ │ ├── 621_this-spacing.cpp │ │ ├── 622_ifdef-indentation.cpp │ │ ├── 623_caret-spacing.cpp │ │ ├── 633_decl-in-func-typedef.cpp │ │ ├── 634_extern-c-no-block.cpp │ │ ├── DB.cpp │ │ ├── DoxygenComments.cpp │ │ ├── Example.h │ │ ├── I1112-1.cpp │ │ ├── I1112-2.cpp │ │ ├── I1112-3.cpp │ │ ├── NewLine.cpp │ │ ├── NewLine0.cpp │ │ ├── PR326_invalid-backslash-eol-csharp.cpp │ │ ├── Q_2.cpp │ │ ├── Q_EMIT.cpp │ │ ├── Q_FOREACH.cpp │ │ ├── Q_FOREVER.cpp │ │ ├── Q_SIGNAL_SLOT.cpp │ │ ├── STUCK_macro-difficulties.cpp │ │ ├── Timestamp.h │ │ ├── UNI-10496.cpp │ │ ├── UNI-12046.cpp │ │ ├── UNI-1288.cpp │ │ ├── UNI-1334.cpp │ │ ├── UNI-1335.cpp │ │ ├── UNI-1337.cpp │ │ ├── UNI-1339.cpp │ │ ├── UNI-1340.cpp │ │ ├── UNI-1344.cpp │ │ ├── UNI-1346.cpp │ │ ├── UNI-1347.cpp │ │ ├── UNI-1350.cpp │ │ ├── UNI-1356.cpp │ │ ├── UNI-1358.cpp │ │ ├── UNI-16283.cpp │ │ ├── UNI-18439.cpp │ │ ├── UNI-18777.cpp │ │ ├── UNI-1980.cpp │ │ ├── UNI-1981.cpp │ │ ├── UNI-1983.cpp │ │ ├── UNI-19894.cpp │ │ ├── UNI-2049.cpp │ │ ├── UNI-21506.cpp │ │ ├── UNI-21509.cpp │ │ ├── UNI-21510.cpp │ │ ├── UNI-21727.cpp │ │ ├── UNI-21728.cpp │ │ ├── UNI-21729.cpp │ │ ├── UNI-2650.cpp │ │ ├── UNI-2680.cpp │ │ ├── UNI-2683.cpp │ │ ├── UNI-29935.cpp │ │ ├── UNI-30088.cpp │ │ ├── UNI-30628.cpp │ │ ├── UNI-32657.cpp │ │ ├── UNI-38381.cpp │ │ ├── UNI-9650.cpp │ │ ├── al.cpp │ │ ├── align-star-amp-pos.cpp │ │ ├── align_class.cpp │ │ ├── align_constr.cpp │ │ ├── align_fcall.cpp │ │ ├── align_func_params.cpp │ │ ├── align_left_shift.cpp │ │ ├── align_left_shift2.cpp │ │ ├── align_right_comment.cpp │ │ ├── align_var_def_thresh.cpp │ │ ├── alt_tokens.cpp │ │ ├── av.h │ │ ├── bit-colon.cpp │ │ ├── block_pointer.cpp │ │ ├── bool.cpp │ │ ├── brace_brace_init_lst.cpp │ │ ├── braced_init_list.cpp │ │ ├── braces_align.cpp │ │ ├── braces_empty.cpp │ │ ├── bug_1001.cpp │ │ ├── bug_1002.cpp │ │ ├── bug_1003.cpp │ │ ├── bug_1004.cpp │ │ ├── bug_1005.cpp │ │ ├── bug_1020.cpp │ │ ├── bug_1027.cpp │ │ ├── bug_1032.cpp │ │ ├── bug_1068.cpp │ │ ├── bug_1108.cpp │ │ ├── bug_1112.cpp │ │ ├── bug_1127.cpp │ │ ├── bug_1134.cpp │ │ ├── bug_1139.cpp │ │ ├── bug_1158.cpp │ │ ├── bug_1160.cpp │ │ ├── bug_1161.cpp │ │ ├── bug_1169.cpp │ │ ├── bug_1170.cpp │ │ ├── bug_1235.cpp │ │ ├── bug_1236.cpp │ │ ├── bug_1249.cpp │ │ ├── bug_1288.cpp │ │ ├── bug_1289.cpp │ │ ├── bug_1296.cpp │ │ ├── bug_1315.cpp │ │ ├── bug_1321.cpp │ │ ├── bug_1324.cpp │ │ ├── bug_1338.cpp │ │ ├── bug_1340.cpp │ │ ├── bug_1346.h │ │ ├── bug_1349.cpp │ │ ├── bug_1395.cpp │ │ ├── bug_1402.cpp │ │ ├── bug_1403.cpp │ │ ├── bug_1432.cpp │ │ ├── bug_1439.cpp │ │ ├── bug_1452.cpp │ │ ├── bug_1462.cpp │ │ ├── bug_1607.cpp │ │ ├── bug_1649.cpp │ │ ├── bug_1689.cpp │ │ ├── bug_1691.cpp │ │ ├── bug_1717.cpp │ │ ├── bug_33056.cpp │ │ ├── bug_472.cpp │ │ ├── bug_481.cpp │ │ ├── bug_484.cpp │ │ ├── bug_485.cpp │ │ ├── bug_488.cpp │ │ ├── bug_495.cpp │ │ ├── bug_612.cpp │ │ ├── bug_631.cpp │ │ ├── bug_633.cpp │ │ ├── bug_634.cpp │ │ ├── bug_643.cpp │ │ ├── bug_651.cpp │ │ ├── bug_653.cpp │ │ ├── bug_654.cpp │ │ ├── bug_657.cpp │ │ ├── bug_662.cpp │ │ ├── bug_663.cpp │ │ ├── bug_664.cpp │ │ ├── bug_666.cpp │ │ ├── bug_670.cpp │ │ ├── bug_670.h │ │ ├── bug_671.h │ │ ├── bug_902.cpp │ │ ├── bug_i_1000.cpp │ │ ├── bug_i_197.cpp │ │ ├── bug_i_322.cpp │ │ ├── bug_i_323.cpp │ │ ├── bug_i_359.cpp │ │ ├── bug_i_405.cpp │ │ ├── bug_i_409.cpp │ │ ├── bug_i_411.cpp │ │ ├── bug_i_478.cpp │ │ ├── bug_i_481.cpp │ │ ├── bug_i_503.cpp │ │ ├── bug_i_512.cpp │ │ ├── bug_i_525.cpp │ │ ├── bug_i_552.cpp │ │ ├── bug_i_568.cpp │ │ ├── bug_i_575.cpp │ │ ├── bug_i_596.cpp │ │ ├── bug_i_646.cpp │ │ ├── bug_i_663.cpp │ │ ├── bug_i_666.cpp │ │ ├── bug_i_682.h │ │ ├── bug_i_687.cpp │ │ ├── bug_i_752.cpp │ │ ├── bug_i_753.cpp │ │ ├── bug_i_793.cpp │ │ ├── bug_i_825.cpp │ │ ├── bug_i_889.cpp │ │ ├── bug_i_928.cpp │ │ ├── bug_i_938.h │ │ ├── bug_i_999.cpp │ │ ├── bug_i_width.cpp │ │ ├── byref-2.cpp │ │ ├── byref.cpp │ │ ├── case-brace-remove.cpp │ │ ├── cast.cpp │ │ ├── casts.cpp │ │ ├── class-addr.h │ │ ├── class-implementation.cpp │ │ ├── class-init.cpp │ │ ├── class.h │ │ ├── cmt-cpp-cont.cpp │ │ ├── cmt-reflow.cpp │ │ ├── cmt_backslash_eol.cpp │ │ ├── cmt_convert_tab_to_spaces.cpp │ │ ├── cmt_indent.cpp │ │ ├── cmt_indent_pp.h │ │ ├── cmt_insert.cpp │ │ ├── cmt_right.cpp │ │ ├── comment-align-multiline.cpp │ │ ├── comment-align.cpp │ │ ├── const_throw.cpp │ │ ├── constructor.cpp │ │ ├── cout.cpp │ │ ├── cpp17.cpp │ │ ├── cpp_move.cpp │ │ ├── ctor-var.cpp │ │ ├── custom-open-2.cpp │ │ ├── custom-open.cpp │ │ ├── define-indentation.cpp │ │ ├── delete.cpp │ │ ├── deref.cpp │ │ ├── digraph.cpp │ │ ├── dont-detab-strings.cpp │ │ ├── dont-process-defines.cpp │ │ ├── enum.cpp │ │ ├── enum_class.h │ │ ├── enum_comma.h │ │ ├── enum_shr.cpp │ │ ├── exception.cpp │ │ ├── extern_c.h │ │ ├── first_len_minimum.cpp │ │ ├── fix_for_relational_operators.cpp │ │ ├── for_auto.cpp │ │ ├── for_long.cpp │ │ ├── for_loop_head.cpp │ │ ├── foreach.cpp │ │ ├── func-param-wrap-oc.mm │ │ ├── func_call.cpp │ │ ├── func_call_chain.cpp │ │ ├── func_class.cpp │ │ ├── func_class.h │ │ ├── func_param.cpp │ │ ├── func_param_indent_leading_comma.cpp │ │ ├── function-def.cpp │ │ ├── gh555.cpp │ │ ├── goto.cpp │ │ ├── i1082.cpp │ │ ├── i1165.cpp │ │ ├── i1181.cpp │ │ ├── i1207.cpp │ │ ├── i1218.cpp │ │ ├── i1464.cpp │ │ ├── i1466.cpp │ │ ├── i1509.cpp │ │ ├── i1509_bug_1112_correction.cpp │ │ ├── i1516.cpp │ │ ├── i1536.cpp │ │ ├── i1565.cpp │ │ ├── i1617.cpp │ │ ├── i1768.cpp │ │ ├── i683.cpp │ │ ├── if_chain_braces.cpp │ │ ├── if_constexpr.cpp │ │ ├── ifcomment.cpp │ │ ├── indent-misc.cpp │ │ ├── indent-off.cpp │ │ ├── indent.cpp │ │ ├── indent_braces_no.h │ │ ├── indent_comment_align_thresh.cpp │ │ ├── indent_ctor_init.cpp │ │ ├── indent_ctor_members_twice.cpp │ │ ├── indent_namespace.h │ │ ├── indent_namespace2.h │ │ ├── indent_namespace_single_indent.h │ │ ├── indent_param.cpp │ │ ├── indent_paren_after_func_call.cpp │ │ ├── indent_paren_after_func_decl.cpp │ │ ├── indent_paren_after_func_def.cpp │ │ ├── indent_shift.cpp │ │ ├── indent_switch_pp.cpp │ │ ├── indent_var_def.cpp │ │ ├── indent_var_def_cont.cpp │ │ ├── init_align.h │ │ ├── initlist_leading_commas.cpp │ │ ├── issue_1752.cpp │ │ ├── issue_523.cpp │ │ ├── issue_547_for_each.cpp │ │ ├── issue_564.cpp │ │ ├── issue_574.cpp │ │ ├── issue_624_angle.cpp │ │ ├── issue_633_typename.cpp │ │ ├── issue_672.cpp │ │ ├── kw_subst.cpp │ │ ├── kw_subst2.cpp │ │ ├── lambda.cpp │ │ ├── lambda2.cpp │ │ ├── long_br_cmt.cpp │ │ ├── long_namespace.cpp │ │ ├── macro_spaces.cpp │ │ ├── misc.cpp │ │ ├── misc2.cpp │ │ ├── misc3.cpp │ │ ├── misc4.cpp │ │ ├── misc5.cpp │ │ ├── misc6.cpp │ │ ├── mod_remove_empty_return.cpp │ │ ├── ms-style-ref.cpp │ │ ├── multi_line.cpp │ │ ├── namespace_namespace.cpp │ │ ├── new_op.cpp │ │ ├── nl-class.h │ │ ├── nl-namespace.h │ │ ├── nl_before_after.h │ │ ├── nl_before_func_body_def.cpp │ │ ├── nl_brace_brace.cpp │ │ ├── nl_func.cpp │ │ ├── nl_func_call_empty.cpp │ │ ├── nl_func_call_paren.cpp │ │ ├── nl_func_call_paren_empty.cpp │ │ ├── nl_func_decl.cpp │ │ ├── nl_func_def_paren_empty.cpp │ │ ├── nl_func_paren_empty.cpp │ │ ├── nl_func_scope_name.cpp │ │ ├── nl_func_type_name.cpp │ │ ├── nl_max_blank_in_func.cpp │ │ ├── not_lambda.cpp │ │ ├── op_sym_empty.cpp │ │ ├── operator.cpp │ │ ├── operator_proto.cpp │ │ ├── override_virtual.cpp │ │ ├── parameter-packs.cpp │ │ ├── patch_32.cpp │ │ ├── pp-define-indent.cpp │ │ ├── pp-pragma.cpp │ │ ├── pp_indent_brace.cpp │ │ ├── pp_indent_case.cpp │ │ ├── pp_indent_extern.cpp │ │ ├── pp_indent_func_def.cpp │ │ ├── proto-wrap.cpp │ │ ├── ptr-star.cpp │ │ ├── qt-1.cpp │ │ ├── qtargs.cpp │ │ ├── region.cpp │ │ ├── sef.cpp │ │ ├── semicolons.cpp │ │ ├── sf.2886991.cpp │ │ ├── sf.3266678.cpp │ │ ├── sf.3315874.h │ │ ├── sf557.cpp │ │ ├── sf562.cpp │ │ ├── sf567.cpp │ │ ├── sf574.cpp │ │ ├── sf583.cpp │ │ ├── sf593.cpp │ │ ├── sim.h │ │ ├── sp_after_type.cpp │ │ ├── sp_angle_paren.cpp │ │ ├── sp_arith_additive.cpp │ │ ├── sp_balance_nested_parens.cpp │ │ ├── sp_before_tr_emb_cmt_input.cpp │ │ ├── sp_cmt_cpp_start.cc │ │ ├── sp_cparen_oparen.cpp │ │ ├── sp_skip_vbrace_tokens.cpp │ │ ├── sp_throw_paren.cpp │ │ ├── squeeze_ifdef.cpp │ │ ├── static.h │ │ ├── stdcall.cpp │ │ ├── string_replace_tab_chars.cpp │ │ ├── strings.cpp │ │ ├── tab-0.cpp │ │ ├── tab-1.cpp │ │ ├── templ_class.h │ │ ├── templates.cpp │ │ ├── templates2.cpp │ │ ├── templates3.cpp │ │ ├── templates4.cpp │ │ ├── toggle_processing_cmt.cpp │ │ ├── toggle_processing_cmt2.cpp │ │ ├── try-catch-nl.cpp │ │ ├── type_brace_init_lst.cpp │ │ ├── uniform_initialization.cpp │ │ ├── var_def_gap.cpp │ │ ├── variadic-template.h │ │ └── wacky-template.cpp │ ├── cs │ │ ├── 615_nested-usings.cs │ │ ├── 620_getset-brace.cs │ │ ├── 621_this-spacing.cs │ │ ├── 625_where-constraints.cs │ │ ├── 630_bad-new-init-semicolon-removal.cs │ │ ├── UNI-11095.mm │ │ ├── UNI-11662.cs │ │ ├── UNI-11993.cs │ │ ├── UNI-12303.cs │ │ ├── UNI-1288.cs │ │ ├── UNI-1333.mm │ │ ├── UNI-1338.cs │ │ ├── UNI-1343.cs │ │ ├── UNI-1345.cs │ │ ├── UNI-13955.cs │ │ ├── UNI-14131.cs │ │ ├── UNI-17253.cs │ │ ├── UNI-18437.cs │ │ ├── UNI-18777.cs │ │ ├── UNI-18780.cs │ │ ├── UNI-18829.cs │ │ ├── UNI-1919.cs │ │ ├── UNI-19644.cs │ │ ├── UNI-1975.cs │ │ ├── UNI-1977.cs │ │ ├── UNI-1978.cs │ │ ├── UNI-19895.cs │ │ ├── UNI-2007.cs │ │ ├── UNI-2008.cs │ │ ├── UNI-2020.cs │ │ ├── UNI-2021.cs │ │ ├── UNI-21730.cs │ │ ├── UNI-2505.cs │ │ ├── UNI-2506.cs │ │ ├── UNI-2684.cs │ │ ├── UNI-2685.cs │ │ ├── UNI-29933.cs │ │ ├── UNI-30498_2.cs │ │ ├── UNI-3083.cs │ │ ├── UNI-32658.cs │ │ ├── UNI-3484.cs │ │ ├── UNI-36862.cs │ │ ├── UNI-37241.cs │ │ ├── UNI-40685.cs │ │ ├── UNI-9917.cs │ │ ├── argtypes.mm │ │ ├── bug_1591.cs │ │ ├── bug_1620.cs │ │ ├── bug_1637.cs │ │ ├── bug_1650.cs │ │ ├── bug_600.cs │ │ ├── bug_620.cs │ │ ├── bug_i_679.cs │ │ ├── bug_i_935.cs │ │ ├── casting.mm │ │ ├── cmt_backslash_eol.cs │ │ ├── definesalign.h.mm │ │ ├── delegate.cs │ │ ├── delete-space-oc.mm │ │ ├── exception-filters.cs │ │ ├── fncall_as_ctor_in_attr.cs │ │ ├── func-param-wrap-oc.mm │ │ ├── generics.cs │ │ ├── getset.cs │ │ ├── gs.cs │ │ ├── ifcolalign.cs │ │ ├── ifcomment.cs │ │ ├── inttypes.h.mm │ │ ├── logger.cs │ │ ├── mdarray_space.cs │ │ ├── misc-failures.cs │ │ ├── mod_full_brace_nl_block_rem_mlcond.cs │ │ ├── new-constraint-paren-space.cs │ │ ├── newlines.mm │ │ ├── nullable_prop.cs │ │ ├── oneline_property.cs │ │ ├── operator-null-conditional.cs │ │ ├── operator_null-coalescing-assignment.cs │ │ ├── pp-ignore.mm │ │ ├── property.cs │ │ ├── region.cs │ │ ├── remove_semi.cs │ │ ├── sf607.cs │ │ ├── sf628.cs │ │ ├── simple.cs │ │ ├── sort_using.cs │ │ ├── sort_using_categ.cs │ │ ├── sp_between_new_paren.cs │ │ ├── squeeze-paren-close-Option.cs │ │ ├── string_multi.cs │ │ ├── strings.cs │ │ ├── tcf.cs │ │ ├── unsafe.cs │ │ ├── utf16be.cs │ │ ├── utf16be_no_bom.cs │ │ ├── utf16le.cs │ │ ├── utf16le_no_bom.cs │ │ ├── var-member.cs │ │ ├── verbatim_strings.cs │ │ └── when.cs │ ├── d │ │ ├── HashMap.d │ │ ├── Lexer.d │ │ ├── bug-indent.d │ │ ├── casts.d │ │ ├── const.d │ │ ├── d_sp_paren.d │ │ ├── delegate.d │ │ ├── enum.d │ │ ├── funcfunc.d │ │ ├── imports.d │ │ ├── numbers.d │ │ ├── sort_import.d │ │ ├── square_indent_tab.d │ │ ├── static_if.d │ │ ├── strings.d │ │ ├── template.d │ │ ├── tst01.d │ │ ├── tst02.d │ │ ├── tst03.d │ │ ├── volatile-1.d │ │ ├── volatile-2.d │ │ ├── volatile-3.d │ │ └── volatile.d │ ├── ecma │ │ └── example-1.es │ ├── java │ │ ├── Java8DoubleColon.java │ │ ├── annotation1.java │ │ ├── annotation2.java │ │ ├── annotation3.java │ │ ├── assert.java │ │ ├── cast.java │ │ ├── double_brace.java │ │ ├── foreach.java │ │ ├── generics.java │ │ ├── generics_return_type.java │ │ ├── generics_wildcard.java │ │ ├── i1121.java │ │ ├── issue_672.java │ │ ├── long_cl_cmt.java │ │ ├── sf567.java │ │ ├── sp_after_angle.java │ │ ├── sp_before_byref.java │ │ ├── sp_this_paren.java │ │ ├── synchronized.java │ │ ├── try.java │ │ └── variable_aligns.java │ ├── oc │ │ ├── Declarations.h │ │ ├── Fraction.h │ │ ├── Fraction.m │ │ ├── asm.h.mm │ │ ├── available.m │ │ ├── block_in_method.m │ │ ├── block_literal_protocol.m │ │ ├── blocks.m │ │ ├── blocks_align.m │ │ ├── blocks_align2.m │ │ ├── box.m │ │ ├── boxed_receiver.m │ │ ├── bug_1366.m │ │ ├── bug_1674.m │ │ ├── bug_1683.m │ │ ├── bug_340.m │ │ ├── bug_404.m │ │ ├── bug_497.m │ │ ├── bug_841.m │ │ ├── bug_i_125-412.m │ │ ├── bug_i_408.m │ │ ├── bug_i_477.m │ │ ├── c-cpp-oc-wrapper.c │ │ ├── cast.m │ │ ├── chunk_ends_type1.m │ │ ├── chunk_ends_type2.m │ │ ├── chunk_ends_type3.m │ │ ├── chunk_ends_type4.m │ │ ├── cmt_insert.m │ │ ├── cmt_insert2.m │ │ ├── code_placeholder.m │ │ ├── complex_method.m │ │ ├── delete-space-oc.mm │ │ ├── exceptions.m │ │ ├── extern-c-attribute.m │ │ ├── for.m │ │ ├── for2.m │ │ ├── func-param-wrap-oc.mm │ │ ├── func_def.mm │ │ ├── gh137.m │ │ ├── gh293.m │ │ ├── gh511.m │ │ ├── i1213.m │ │ ├── indent_boxed.m │ │ ├── indent_single_newline.m │ │ ├── kw.m │ │ ├── literals.m │ │ ├── macro-close-brace.m │ │ ├── main.m │ │ ├── method_ends_semicolon.m │ │ ├── misc.m │ │ ├── more_blocks.m │ │ ├── more_blocks_2.m │ │ ├── msg.m │ │ ├── msg_align.m │ │ ├── negative_value.m │ │ ├── nelem.m │ │ ├── ns_enum.m │ │ ├── objc.mm │ │ ├── oc-split.m │ │ ├── oc_cond_colon.m │ │ ├── oc_msg_in_pp.m │ │ ├── pp_bool.m │ │ ├── properties.m │ │ ├── protocol.m │ │ ├── react_native.m │ │ ├── real_world_file.m │ │ ├── receiver.m │ │ ├── return_type.m │ │ ├── selector.m │ │ ├── sort_import.m │ │ ├── sp_after_angle.m │ │ ├── sp_after_oc_msg_receiver.m │ │ ├── sp_inside_braces_oc_dict.m │ │ ├── sp_oc_boxed.m │ │ ├── sp_oc_catch.m │ │ ├── sp_oc_synchronized.m │ │ ├── string.m │ │ ├── ternary.m │ │ └── typeof.m │ ├── pawn │ │ ├── comment.p │ │ ├── crusty_ex-1.sma │ │ ├── enum.pawn │ │ ├── functions.pawn │ │ ├── gh419.pawn │ │ ├── preproc.pawn │ │ ├── rpn_calc.pawn │ │ ├── str-escape.p │ │ ├── switch-vsemi.sma │ │ ├── tags.pawn │ │ ├── test1.pawn │ │ ├── traffic.p │ │ └── unbraced.p │ ├── sql │ │ ├── issue_527.sqc │ │ ├── mysql.sqc │ │ └── sta-select.sqc │ ├── staging │ │ ├── 614_multiple-passes.cs │ │ ├── 615_nested-usings.cs │ │ ├── 620_getset-brace.cs │ │ ├── 621_this-spacing.cpp │ │ ├── 621_this-spacing.cs │ │ ├── 622_ifdef-indentation.cpp │ │ ├── 623_caret-spacing.cpp │ │ ├── 625_where-constraints.cs │ │ ├── 630_bad-new-init-semicolon-removal.cs │ │ ├── 633_decl-in-func-typedef.cpp │ │ ├── 634_extern-c-no-block.cpp │ │ ├── PR326_invalid-backslash-eol-csharp.cpp │ │ ├── PR326_invalid-backslash-eol-csharp.cs │ │ ├── STUCK_macro-difficulties.cpp │ │ ├── UNI-10496.cpp │ │ ├── UNI-10566.cpp │ │ ├── UNI-11095.mm │ │ ├── UNI-11643.cpp │ │ ├── UNI-11662.cs │ │ ├── UNI-11993.cs │ │ ├── UNI-12046.cpp │ │ ├── UNI-12303.cs │ │ ├── UNI-1288.cpp │ │ ├── UNI-1288.cs │ │ ├── UNI-1333.mm │ │ ├── UNI-1334.cpp │ │ ├── UNI-1335.cpp │ │ ├── UNI-1336.cpp │ │ ├── UNI-1337.cpp │ │ ├── UNI-1338.cs │ │ ├── UNI-1339.cpp │ │ ├── UNI-1340.cpp │ │ ├── UNI-1343.cs │ │ ├── UNI-1344.cpp │ │ ├── UNI-1345.cs │ │ ├── UNI-1346.cpp │ │ ├── UNI-1347.cpp │ │ ├── UNI-1348.cpp │ │ ├── UNI-1349.cpp │ │ ├── UNI-1350.cpp │ │ ├── UNI-1355.cs │ │ ├── UNI-1356.cpp │ │ ├── UNI-1358.cpp │ │ ├── UNI-13955.cs │ │ ├── UNI-14107.cpp │ │ ├── UNI-14131.cs │ │ ├── UNI-1443.cs │ │ ├── UNI-16283.cpp │ │ ├── UNI-17253.cs │ │ ├── UNI-18437.cs │ │ ├── UNI-18439.cpp │ │ ├── UNI-18777.cpp │ │ ├── UNI-18777.cs │ │ ├── UNI-18780.cs │ │ ├── UNI-18829.cs │ │ ├── UNI-1919.cs │ │ ├── UNI-19644.cs │ │ ├── UNI-1975.cs │ │ ├── UNI-1977.cs │ │ ├── UNI-1978.cs │ │ ├── UNI-1979.cs │ │ ├── UNI-1980.cpp │ │ ├── UNI-1981.cpp │ │ ├── UNI-1983.cpp │ │ ├── UNI-19894.cpp │ │ ├── UNI-19895.cs │ │ ├── UNI-2007.cs │ │ ├── UNI-2008.cs │ │ ├── UNI-2020.cs │ │ ├── UNI-2021.cs │ │ ├── UNI-2048.cpp │ │ ├── UNI-2049.cpp │ │ ├── UNI-21506.cpp │ │ ├── UNI-21509.cpp │ │ ├── UNI-21510.cpp │ │ ├── UNI-21727.cpp │ │ ├── UNI-21728.cpp │ │ ├── UNI-21729.cpp │ │ ├── UNI-21730.cs │ │ ├── UNI-21731.cpp │ │ ├── UNI-22858.cs │ │ ├── UNI-24076.cs │ │ ├── UNI-24090.cs │ │ ├── UNI-2505.cs │ │ ├── UNI-2506.cs │ │ ├── UNI-25811.cpp │ │ ├── UNI-2650.cpp │ │ ├── UNI-2680.cpp │ │ ├── UNI-2683.cpp │ │ ├── UNI-2684.cs │ │ ├── UNI-2685.cs │ │ ├── UNI-29933.cs │ │ ├── UNI-29935.cpp │ │ ├── UNI-30088.cpp │ │ ├── UNI-30498.cpp │ │ ├── UNI-30498_2.cs │ │ ├── UNI-30628.cpp │ │ ├── UNI-3083.cs │ │ ├── UNI-32009.cpp │ │ ├── UNI-32012.cpp │ │ ├── UNI-32014.cs │ │ ├── UNI-32405.cs │ │ ├── UNI-32657.cpp │ │ ├── UNI-32658.cs │ │ ├── UNI-34087.cpp │ │ ├── UNI-34114.cpp │ │ ├── UNI-3484.cs │ │ ├── UNI-36862.cs │ │ ├── UNI-37241.cs │ │ ├── UNI-38381.cpp │ │ ├── UNI-40605.cs │ │ ├── UNI-40685.cs │ │ ├── UNI-4603.cs │ │ ├── UNI-46333.cpp │ │ ├── UNI-47842.cpp │ │ ├── UNI-47842.cs │ │ ├── UNI-9650.cpp │ │ ├── UNI-9917.cs │ │ ├── UNI-crash.cpp │ │ ├── _experiments.cpp │ │ ├── _experiments.cs │ │ ├── argtypes.mm │ │ ├── asm.h.mm │ │ ├── braces_align.cpp │ │ ├── casting.mm │ │ ├── define-indentation.cpp │ │ ├── definesalign.h.mm │ │ ├── delete-space-oc.mm │ │ ├── dont-detab-strings.cpp │ │ ├── dont-process-defines.cpp │ │ ├── everything.cpp │ │ ├── everything.cs │ │ ├── for_auto.cpp │ │ ├── foreach.cpp │ │ ├── func-param-wrap-oc.mm │ │ ├── ifcolalign.cs │ │ ├── ifcomment.cpp │ │ ├── ifcomment.cs │ │ ├── ifoneliner.cpp │ │ ├── indent-bad.mm │ │ ├── indent-multistring-coulmn1.cs │ │ ├── inttypes.h.mm │ │ ├── issue_564.cpp │ │ ├── macro_spaces.cpp │ │ ├── misc-failures.cs │ │ ├── new-constraint-paren-space.cs │ │ ├── newlines.mm │ │ ├── nl-brace.cs │ │ ├── objc.mm │ │ ├── oneline_property.cs │ │ ├── pp-ignore.mm │ │ ├── qtargs.cpp │ │ ├── squeeze-paren-close-Option.cs │ │ └── when.cs │ └── vala │ │ ├── advanced.vala │ │ ├── gh287.vala │ │ ├── list.vala │ │ ├── preproc.vala │ │ ├── verbatim_str.vala │ │ └── verbatim_str2.vala ├── java - Copy.test ├── java.test ├── objective-c.test ├── output │ ├── c │ │ ├── 00000-comment-indent.c │ │ ├── 00001-comment-indent.c │ │ ├── 00002-comment-indent.c │ │ ├── 00003-comment-indent.c │ │ ├── 00004-switch.c │ │ ├── 00005-cmt-align.c │ │ ├── 00006-comment-convert.c │ │ ├── 00007-comment-convert.c │ │ ├── 00008-comment-convert.c │ │ ├── 00009-comment-convert.c │ │ ├── 00010-braces.c │ │ ├── 00011-braces.c │ │ ├── 00012-braces.c │ │ ├── 00012-braces.rerun.lang │ │ ├── 00013-braces.c │ │ ├── 00014-braces.c │ │ ├── 00015-braces.c │ │ ├── 00016-braces.c │ │ ├── 00020-define-if-indent.c │ │ ├── 00050-brace-remove.c │ │ ├── 00051-brace-remove.c │ │ ├── 00052-brace-remove2.c │ │ ├── 00053-brace.c │ │ ├── 00054-if_chain.c │ │ ├── 00055-braces-2.c │ │ ├── 00056-brace-remove3.c │ │ ├── 00057-brace-remove3.c │ │ ├── 00058-if_chain.c │ │ ├── 00060-braces-2.c │ │ ├── 00061-braces-3.c │ │ ├── 00062-braces-4.c │ │ ├── 00065-braces-5.c │ │ ├── 00066-vb-while.c │ │ ├── 00067-vb-do.c │ │ ├── 00068-bsnl.c │ │ ├── 00069-vb-pp.c │ │ ├── 00070-return-multi.c │ │ ├── 00071-include_define.h │ │ ├── 00072-align-proto.c │ │ ├── 00073-nl_proto_endif.c │ │ ├── 00074-clang-has_include.h │ │ ├── 00081-else-if.c │ │ ├── 00082-else-if.c │ │ ├── 00091-cond.c │ │ ├── 00092-cond.c │ │ ├── 00093-cond.c │ │ ├── 00101-bugs-1.c │ │ ├── 00102-bugs-2.c │ │ ├── 00103-bugs-3.c │ │ ├── 00104-bugs-4.c │ │ ├── 00105-bugs-5.c │ │ ├── 00106-bugs-6.c │ │ ├── 00107-bugs-7.c │ │ ├── 00108-bugs-8.c │ │ ├── 00110-misc.c │ │ ├── 00111-misc.c │ │ ├── 00120-sp_cmt_cpp_start.c │ │ ├── 00121-sp_cmt_cpp_start.c │ │ ├── 00122-sp_cmt_cpp_start.c │ │ ├── 00130-minus-minus.c │ │ ├── 00135-br_cmt.c │ │ ├── 00140-global-vars.c │ │ ├── 00141-deref.c │ │ ├── 00142-type-cast.c │ │ ├── 00143-t3.in.c │ │ ├── 00144-align-proto-vars.c │ │ ├── 00145-vardefcol.c │ │ ├── 00150-casts.c │ │ ├── 00151-casts.c │ │ ├── 00152-casts.c │ │ ├── 00153-casts.c │ │ ├── 00154-casts.c │ │ ├── 00155-cast_brace.c │ │ ├── 00160-fcn_indent.c │ │ ├── 00161-fcn_indent.c │ │ ├── 00162-fcn_indent.c │ │ ├── 00163-fcn_indent.c │ │ ├── 00164-fcn_indent_func_def_col1.c │ │ ├── 00170-beautifier-off.c │ │ ├── 00180-lvalue.c │ │ ├── 00201-case.c │ │ ├── 00202-case.c │ │ ├── 00203-case.c │ │ ├── 00204-bug_1718.c │ │ ├── 00301-align-struct-init.c │ │ ├── 00302-one-liner-init.c │ │ ├── 00303-one-liner-init.c │ │ ├── 00304-one-liner-init.c │ │ ├── 00305-one-liner-define.c │ │ ├── 00310-sp_embed_comment.c │ │ ├── 00320-indent_first_bool_expr.c │ │ ├── 00401-align-equ.c │ │ ├── 00402-align-var.c │ │ ├── 00403-align-var.c │ │ ├── 00404-align-var.c │ │ ├── 00405-bits.c │ │ ├── 00406-bug_i_771.c │ │ ├── 00411-align-typedef.c │ │ ├── 00412-align-typedef.c │ │ ├── 00413-align-typedef.c │ │ ├── 00414-align-typedef.c │ │ ├── 00421-nl_ds_struct_enum.c │ │ ├── 00422-nl_ds_struct_enum.c │ │ ├── 00423-bug_1702.c │ │ ├── 00430-paren-indent.c │ │ ├── 00431-paren-indent.c │ │ ├── 00432-paren-indent.c │ │ ├── 00440-bug_489.c │ │ ├── 00451-enum_gallery.c │ │ ├── 00452-enum_gallery.c │ │ ├── 00453-enum_gallery.c │ │ ├── 00453-enum_gallery.rerun.lang │ │ ├── 00454-enum_gallery.c │ │ ├── 00501-bool-pos.c │ │ ├── 00502-bool-pos.c │ │ ├── 00503-pos_compare.c │ │ ├── 00504-pos_compare.c │ │ ├── 00505-pos_conditional.c │ │ ├── 00506-pos_conditional.c │ │ ├── 00510-bool-pos.c │ │ ├── 00511-bool-pos.c │ │ ├── 00512-bool-pos.c │ │ ├── 00513-bool-pos.c │ │ ├── 00600-dos.c │ │ ├── 00601-mac.c │ │ ├── 00611-pp-space.c │ │ ├── 00612-pp-space.c │ │ ├── 00613-pp-space.c │ │ ├── 00614-pp-space.c │ │ ├── 00615-pp-nest.c │ │ ├── 00616-pp-if-indent.c │ │ ├── 00617-pp-if-indent.c │ │ ├── 00618-pp-if-indent.c │ │ ├── 00620-indent-assign.c │ │ ├── 00621-nl_endif.c │ │ ├── 00631-nl_assign.c │ │ ├── 00632-nl_assign.c │ │ ├── 00701-function-def.c │ │ ├── 00702-function-def.c │ │ ├── 00703-function-def.c │ │ ├── 00710-add_long_comment.c │ │ ├── 00721-nl-semicolon.c │ │ ├── 00801-fcn_type.c │ │ ├── 00802-funcfunc.c │ │ ├── 00803-fcn_type.c │ │ ├── 00901-code_width.c │ │ ├── 00902-code_width.c │ │ ├── 00903-code_width.c │ │ ├── 00910-pascal_ptr.c │ │ ├── 00911-pascal_ptr.c │ │ ├── 01000-mod-paren.c │ │ ├── 01001-nl-comment.c │ │ ├── 01002-mod-paren.c │ │ ├── 01005-mod_case_brace.c │ │ ├── 01006-mod_case_brace.c │ │ ├── 01007-mod_case_brace.c │ │ ├── 01011-semicolons.c │ │ ├── 01012-semicolons.c │ │ ├── 01015-paren_indent.c │ │ ├── 01016-align_attr.c │ │ ├── 01020-kw_subst.c │ │ ├── 01021-hello.c │ │ ├── 01022-kw_subst.c │ │ ├── 01030-multi.h │ │ ├── 01035-func_wrap.c │ │ ├── 01036-func_wrap.c │ │ ├── 01037-type_wrap.c │ │ ├── 01040-newline_after_endif.c │ │ ├── 01050-func_call_user.c │ │ ├── 01060-backslash-newline-lex.c │ │ ├── 01070-various_colons.c │ │ ├── 01071-various_colons.c │ │ ├── 01080-bug_1196.c │ │ ├── 02000-i2c-core.c │ │ ├── 02001-directfb.h │ │ ├── 02002-i2c-core.c │ │ ├── 02100-i2c-core.c │ │ ├── 02101-comment-indent.c │ │ ├── 02102-indent.cpp │ │ ├── 02102-indent.rerun.lang │ │ ├── 02103-output.cpp │ │ ├── 02200-xml.c │ │ ├── 02201-align-string.c │ │ ├── 02300-preproc-if.c │ │ ├── 02301-preproc-if.c │ │ ├── 02302-nl-cont.c │ │ ├── 02303-nl-cont2.c │ │ ├── 02310-empty-for.c │ │ ├── 02311-pragma.c │ │ ├── 02315-pp_ret.c │ │ ├── 02320-nl_create_one_liner.c │ │ ├── 02325-sort_include.c │ │ ├── 02410-ifdef-indent.c │ │ ├── 02411-ifdef-indent.c │ │ ├── 02412-ifdef-indent.c │ │ ├── 02413-ifdef-indent.c │ │ ├── 02415-endif.c │ │ ├── 02416-cmt_nl_end.c │ │ ├── 02421-cmt_multi.c │ │ ├── 02422-cmt_multi.c │ │ ├── 02423-cmt_multi_utf8.c │ │ ├── 02431-cmt_right_align.c │ │ ├── 02432-cmt_right_align.c │ │ ├── 02440-string_utf8.c │ │ ├── 02441-utf8-identifiers.c │ │ ├── 02451-nl_return_expr.c │ │ ├── 02452-nl_return_expr.c │ │ ├── 02453-nl_return_expr.c │ │ ├── 02454-nl_return_expr.c │ │ ├── 02460-freebsd.c │ │ ├── 02486-doxy-comment.c │ │ ├── 02487-doxy-comment.c │ │ ├── 02501-custom_types_ssl.c │ │ ├── 02502-custom_types_ssl.c │ │ ├── 02503-pp_concat_asn1.h │ │ ├── 02504-align_keep_extra.c │ │ ├── 02510-asm.c │ │ ├── 07630-indent-vbrace.c │ │ ├── 08399-gh399.c │ │ ├── 09588-sf588.c │ │ ├── 09594-sf594.c │ │ ├── 09601-sp_after_sparen.c │ │ ├── 09602-bug_671.c │ │ ├── 09603-indent_ternary-1.c │ │ ├── 09604-indent_ternary-2.c │ │ ├── 09605-negative_value.c │ │ ├── 09606-extern.c │ │ ├── 09607-attribute.c │ │ ├── 09608-func_call_user2.c │ │ ├── 09610-bug_i_876.c │ │ ├── 09611-bug_i_222.c │ │ ├── 09612-bug_1041.c │ │ ├── 09613-i1413.c │ │ ├── 09614-string_prefixes.c │ │ ├── 09615-i1564.c │ │ ├── 09905-negative_value.c │ │ ├── 09906-extern-c-attribute.c │ │ ├── 09907-func_call_user2.c │ │ ├── 10003-bug_i_222.c │ │ ├── 10004-pragma_asm.c │ │ └── 10005-i1270.c │ ├── cpp │ │ ├── 10000-621_this-spacing.cpp │ │ ├── 10001-622_ifdef-indentation.cpp │ │ ├── 10002-623_caret-spacing.cpp │ │ ├── 10003-633_decl-in-func-typedef.cpp │ │ ├── 10004-634_extern-c-no-block.cpp │ │ ├── 10005-define-indentation.cpp │ │ ├── 10006-dont-detab-strings.cpp │ │ ├── 10007-dont-process-defines.cpp │ │ ├── 10008-PR326_invalid-backslash-eol-csharp.cpp │ │ ├── 10009-STUCK_macro-difficulties.cpp │ │ ├── 10020-macro_spaces.cpp │ │ ├── 10021-braces_align.cpp │ │ ├── 10022-foreach.cpp │ │ ├── 10023-for_auto.cpp │ │ ├── 10024-ifcomment.cpp │ │ ├── 10025-qtargs.cpp │ │ ├── 10047-UNI-1334.cpp │ │ ├── 10048-UNI-1335.cpp │ │ ├── 10050-UNI-1337.cpp │ │ ├── 10052-UNI-1339.cpp │ │ ├── 10053-UNI-1340.cpp │ │ ├── 10054-UNI-1344.cpp │ │ ├── 10056-UNI-1346.cpp │ │ ├── 10057-UNI-1347.cpp │ │ ├── 10060-UNI-1350.cpp │ │ ├── 10062-UNI-1356.cpp │ │ ├── 10063-UNI-1358.cpp │ │ ├── 10069-UNI-1980.cpp │ │ ├── 10070-UNI-1981.cpp │ │ ├── 10071-UNI-1983.cpp │ │ ├── 10079-UNI-9650.cpp │ │ ├── 10080-UNI-10496.cpp │ │ ├── 10100-issue_564.cpp │ │ ├── 10101-issue_574.cpp │ │ ├── 10101-issue_574.cpp-a │ │ ├── 10566-issue_1752.cpp │ │ ├── 11000-UNI-12046.cpp │ │ ├── 20002-UNI-32657.cpp │ │ ├── 20011-UNI-38381.cpp │ │ ├── 30000-cout.cpp │ │ ├── 30001-alt_tokens.cpp │ │ ├── 30002-constructor.cpp │ │ ├── 30003-strings.cpp │ │ ├── 30010-class.h │ │ ├── 30011-misc.cpp │ │ ├── 30012-misc2.cpp │ │ ├── 30013-sim.h │ │ ├── 30014-ctor-var.cpp │ │ ├── 30015-exception.cpp │ │ ├── 30016-custom-open.cpp │ │ ├── 30017-custom-open.cpp │ │ ├── 30018-class-addr.h │ │ ├── 30019-wacky-template.cpp │ │ ├── 30020-bool.cpp │ │ ├── 30021-byref.cpp │ │ ├── 30022-extern_c.h │ │ ├── 30023-templates.cpp │ │ ├── 30024-class-init.cpp │ │ ├── 30025-class-init.cpp │ │ ├── 30026-byref.cpp │ │ ├── 30027-byref.cpp │ │ ├── 30028-byref.cpp │ │ ├── 30029-init_align.h │ │ ├── 30030-Timestamp.h │ │ ├── 30031-operator.cpp │ │ ├── 30032-operator.cpp │ │ ├── 30033-operator.cpp │ │ ├── 30034-operator_proto.cpp │ │ ├── 30035-operator_proto.cpp │ │ ├── 30036-operator.cpp │ │ ├── 30037-operator_proto.cpp │ │ ├── 30038-operator.cpp │ │ ├── 30039-operator_proto.cpp │ │ ├── 30040-nl-class.h │ │ ├── 30041-nl-class.h │ │ ├── 30043-nl_func_call_empty.cpp │ │ ├── 30044-nl_func_call_paren_empty.cpp │ │ ├── 30045-nl_func_decl.cpp │ │ ├── 30046-nl_func_decl.cpp │ │ ├── 30047-nl_func_paren_empty.cpp │ │ ├── 30048-nl_func_def_paren_empty.cpp │ │ ├── 30049-nl_func_call_paren.cpp │ │ ├── 30050-nl-namespace.h │ │ ├── 30051-nl-namespace.h │ │ ├── 30052-try-catch-nl.cpp │ │ ├── 30055-nl_func.cpp │ │ ├── 30056-nl_func.cpp │ │ ├── 30061-class-init.cpp │ │ ├── 30062-class-init.cpp │ │ ├── 30063-class-init.cpp │ │ ├── 30064-class-init.cpp │ │ ├── 30065-Example.h │ │ ├── 30066-class-init.cpp │ │ ├── 30067-nl_func_type_name.cpp │ │ ├── 30068-nl_func_scope_name.cpp │ │ ├── 30069-class-implementation.cpp │ │ ├── 30070-nl_func_scope_name.cpp │ │ ├── 30075-goto.cpp │ │ ├── 30080-nl_brace_brace.cpp │ │ ├── 30085-align_class.cpp │ │ ├── 30090-bug_488.cpp │ │ ├── 30091-bug_472.cpp │ │ ├── 30092-bug_481.cpp │ │ ├── 30093-bug_484.cpp │ │ ├── 30094-bug_495.cpp │ │ ├── 30095-bug_485.cpp │ │ ├── 30099-bug_1127.cpp │ │ ├── 30100-templates.cpp │ │ ├── 30101-templates.cpp │ │ ├── 30102-templates.cpp │ │ ├── 30103-templates.cpp │ │ ├── 30104-templ_class.h │ │ ├── 30105-av.h │ │ ├── 30106-templates2.cpp │ │ ├── 30107-templates2.cpp │ │ ├── 30108-templates3.cpp │ │ ├── 30109-templates4.cpp │ │ ├── 30110-class-init.cpp │ │ ├── 30111-bug_1346.h │ │ ├── 30112-bug_1432.cpp │ │ ├── 30113-bug_1452.cpp │ │ ├── 30114-bug_1462.cpp │ │ ├── 30201-cmt_indent.cpp │ │ ├── 30202-cmt_indent.cpp │ │ ├── 30203-cmt_indent.cpp │ │ ├── 30204-comment-align.cpp │ │ ├── 30205-cmt_right.cpp │ │ ├── 30206-cmt_backslash_eol.cpp │ │ ├── 30207-cmt_indent_pp.h │ │ ├── 30208-bug_1108.cpp │ │ ├── 30209-bug_1134.cpp │ │ ├── 30210-bug_1338.cpp │ │ ├── 30211-indent_comment_align_thresh.cpp │ │ ├── 30212-indent_comment_align_thresh.cpp │ │ ├── 30213-align_right_comment.cpp │ │ ├── 30220-bug_1340.cpp │ │ ├── 30240-align_func_params.cpp │ │ ├── 30241-align_func_params.cpp │ │ ├── 30242-align_func_params.cpp │ │ ├── 30243-align_func_params.cpp │ │ ├── 30244-align_func_params.cpp │ │ ├── 30245-align_func_params.cpp │ │ ├── 30246-align_func_params.cpp │ │ ├── 30250-align_fcall.cpp │ │ ├── 30251-align_fcall.cpp │ │ ├── 30253-align_left_shift.cpp │ │ ├── 30254-align_left_shift2.cpp │ │ ├── 30255-align_constr.cpp │ │ ├── 30256-func_call.cpp │ │ ├── 30257-func_call_chain.cpp │ │ ├── 30258-casts.cpp │ │ ├── 30260-var_def_gap.cpp │ │ ├── 30261-align_var_def_thresh.cpp │ │ ├── 30262-align_var_def_thresh.cpp │ │ ├── 30263-align_var_def_thresh.cpp │ │ ├── 30265-long_br_cmt.cpp │ │ ├── 30265-long_br_cmt.rerun.lang │ │ ├── 30270-const_throw.cpp │ │ ├── 30271-sp_throw_paren.cpp │ │ ├── 30272-sp_throw_paren.cpp │ │ ├── 30273-sp_cparen_oparen.cpp │ │ ├── 30274-sp_cparen_oparen.cpp │ │ ├── 30275-bug_1321.cpp │ │ ├── 30278-bug_1439.cpp │ │ ├── 30280-sf557.cpp │ │ ├── 30290-align_left_shift.cpp │ │ ├── 30291-indent_shift.cpp │ │ ├── 30300-enum_shr.cpp │ │ ├── 30301-enum_class.h │ │ ├── 30302-bug_1315.cpp │ │ ├── 30310-braced_init_list.cpp │ │ ├── 30311-uniform_initialization.cpp │ │ ├── 30701-function-def.cpp │ │ ├── 30702-function-def.cpp │ │ ├── 30703-function-def.cpp │ │ ├── 30705-func_param.cpp │ │ ├── 30706-bug_1020.cpp │ │ ├── 30711-semicolons.cpp │ │ ├── 30712-bug_1158.cpp │ │ ├── 30713-fix_for_relational_operators.cpp │ │ ├── 30720-custom-open-2.cpp │ │ ├── 30730-qt-1.cpp │ │ ├── 30731-qt-1.cpp │ │ ├── 30740-sef.cpp │ │ ├── 30741-al.cpp │ │ ├── 30742-delete.cpp │ │ ├── 30750-lambda.cpp │ │ ├── 30751-lambda.cpp │ │ ├── 30752-lambda.cpp │ │ ├── 30753-lambda2.cpp │ │ ├── 30754-bug_i_682.h │ │ ├── 30755-bug_i_938.h │ │ ├── 30756-bug_1296.cpp │ │ ├── 30800-align-star-amp-pos.cpp │ │ ├── 30801-align-star-amp-pos.cpp │ │ ├── 30802-align-star-amp-pos.cpp │ │ ├── 30803-bug_1403.cpp │ │ ├── 30804-block_pointer.cpp │ │ ├── 30805-ptr-star.cpp │ │ ├── 30806-ptr-star.cpp │ │ ├── 30807-ptr-star.cpp │ │ ├── 30808-ptr-star.cpp │ │ ├── 30809-bug_1289.cpp │ │ ├── 30810-ptr-star.cpp │ │ ├── 30811-misc3.cpp │ │ ├── 30812-misc4.cpp │ │ ├── 30813-misc5.cpp │ │ ├── 30814-misc6.cpp │ │ ├── 30815-cmt-reflow.cpp │ │ ├── 30815-cmt-reflow.rerun.lang │ │ ├── 30816-for_long.cpp │ │ ├── 30817-cmt-cpp-cont.cpp │ │ ├── 30818-bug_1169.cpp │ │ ├── 30819-bug_1170.cpp │ │ ├── 30820-pp-define-indent.cpp │ │ ├── 30821-pp_indent_case.cpp │ │ ├── 30822-pp_indent_brace.cpp │ │ ├── 30823-pp_indent_func_def.cpp │ │ ├── 30824-pp_indent_extern.cpp │ │ ├── 30828-bug_1691.cpp │ │ ├── 30830-kw_subst.cpp │ │ ├── 30831-kw_subst2.cpp │ │ ├── 30832-kw_subst.cpp │ │ ├── 30840-nl_func_type_name.cpp │ │ ├── 30841-nl_func_type_name.cpp │ │ ├── 30842-nl_func_type_name.cpp │ │ ├── 30845-deref.cpp │ │ ├── 30850-sp_cmt_cpp_start.cc │ │ ├── 30855-cpp_move.cpp │ │ ├── 30860-sf574.cpp │ │ ├── 30870-cmt_insert.cpp │ │ ├── 30871-cmt_insert.cpp │ │ ├── 30900-region.cpp │ │ ├── 30901-region.cpp │ │ ├── 30902-region.cpp │ │ ├── 30903-region.cpp │ │ ├── 30910-indent_namespace.h │ │ ├── 30911-indent_namespace.h │ │ ├── 30912-long_namespace.cpp │ │ ├── 30913-indent_namespace2.h │ │ ├── 30914-indent_namespace_single_indent.h │ │ ├── 30915-bug_1235.cpp │ │ ├── 30920-indent-off.cpp │ │ ├── 30921-variadic-template.h │ │ ├── 30922-variadic-template.h │ │ ├── 30923-sf.2886991.cpp │ │ ├── 30924-sf.2886991.cpp │ │ ├── 30925-function-def.cpp │ │ ├── 30926-function-def.cpp │ │ ├── 30927-function-def.cpp │ │ ├── 30928-function-def.cpp │ │ ├── 30929-bug_1324.cpp │ │ ├── 30930-indent_var_def.cpp │ │ ├── 30931-indent_var_def_cont.cpp │ │ ├── 30932-indent_var_def_cont.cpp │ │ ├── 30933-indent_paren_after_func_def.cpp │ │ ├── 30934-indent_paren_after_func_decl.cpp │ │ ├── 30935-indent-misc.cpp │ │ ├── 30936-indent_braces_no.h │ │ ├── 30937-indent_param.cpp │ │ ├── 30938-indent_switch_pp.cpp │ │ ├── 30939-indent_paren_after_func_call.cpp │ │ ├── 30940-case-brace-remove.cpp │ │ ├── 30945-sf.3266678.cpp │ │ ├── 30946-sf.3315874.h │ │ ├── 30947-bug_1689.cpp │ │ ├── 30950-sp_before_tr_emb_cmt_input.cpp │ │ ├── 30951-sp_before_tr_emb_cmt_input.cpp │ │ ├── 30955-indent_ctor_init.cpp │ │ ├── 30956-indent_ctor_init.cpp │ │ ├── 30957-class-init.cpp │ │ ├── 31000-digraph.cpp │ │ ├── 31001-digraph.cpp │ │ ├── 31562-sf562.cpp │ │ ├── 31567-sf567.cpp │ │ ├── 31583-sf583.cpp │ │ ├── 31593-sf593.cpp │ │ ├── 31594-issue_672.cpp │ │ ├── 31600-parameter-packs.cpp │ │ ├── 31601-parameter-packs.cpp │ │ ├── 31602-parameter-packs.cpp │ │ ├── 31603-parameter-packs.cpp │ │ ├── 31604-parameter-packs.cpp │ │ ├── 31605-parameter-packs.cpp │ │ ├── 31606-parameter-packs.cpp │ │ ├── 31607-parameter-packs.cpp │ │ ├── 31608-parameter-packs.cpp │ │ ├── 31609-parameter-packs.cpp │ │ ├── 31620-sp_after_type.cpp │ │ ├── 31621-sp_after_type.cpp │ │ ├── 31622-sp_after_type.cpp │ │ ├── 31623-sp_after_type.cpp │ │ ├── 31624-sp_after_type.cpp │ │ ├── 31625-sp_after_type.cpp │ │ ├── 31700-toggle_processing_cmt.cpp │ │ ├── 31701-toggle_processing_cmt2.cpp │ │ ├── 31710-string_replace_tab_chars.cpp │ │ ├── 31711-string_replace_tab_chars.cpp │ │ ├── 31720-bit-colon.cpp │ │ ├── 31730-ms-style-ref.cpp │ │ ├── 32000-sp_skip_vbrace_tokens.cpp │ │ ├── 32001-issue_547_for_each.cpp │ │ ├── 32002-proto-wrap.cpp │ │ ├── 32003-issue_633_typename.cpp │ │ ├── 32004-issue_624_angle.cpp │ │ ├── 32005-issue_633_typename.cpp │ │ ├── 32006-bug_i_687.cpp │ │ ├── 32100-cpp17.cpp │ │ ├── 33000-tab-0.cpp │ │ ├── 33001-tab-1.cpp │ │ ├── 33002-cmt_convert_tab_to_spaces.cpp │ │ ├── 33003-cmt_convert_tab_to_spaces.cpp │ │ ├── 33004-DoxygenComments.cpp │ │ ├── 33005-DoxygenComments.cpp │ │ ├── 33006-string_replace_tab_chars.cpp │ │ ├── 33007-NewLine.cpp │ │ ├── 33008-NewLine.cpp │ │ ├── 33009-NewLine0.cpp │ │ ├── 33010-Q_EMIT.cpp │ │ ├── 33011-static.h │ │ ├── 33012-Q_SIGNAL_SLOT.cpp │ │ ├── 33013-Q_2.cpp │ │ ├── 33014-DB.cpp │ │ ├── 33015-Q_FOREACH.cpp │ │ ├── 33016-indent.cpp │ │ ├── 33017-bug_1160.cpp │ │ ├── 33018-byref-2.cpp │ │ ├── 33019-bug_657.cpp │ │ ├── 33020-bug_662.cpp │ │ ├── 33021-bug_633.cpp │ │ ├── 33022-bug_634.cpp │ │ ├── 33023-bug_651.cpp │ │ ├── 33024-bug_653.cpp │ │ ├── 33025-bug_654.cpp │ │ ├── 33026-bug_631.cpp │ │ ├── 33027-bug_664.cpp │ │ ├── 33028-braces_empty.cpp │ │ ├── 33029-cast.cpp │ │ ├── 33030-Q_FOREVER.cpp │ │ ├── 33031-bug_612.cpp │ │ ├── 33032-bug_670.cpp │ │ ├── 33033-bug_670.h │ │ ├── 33034-bug_671.h │ │ ├── 33035-patch_32.cpp │ │ ├── 33036-bug_663.cpp │ │ ├── 33037-func_class.cpp │ │ ├── 33038-func_class.h │ │ ├── 33039-mod_remove_empty_return.cpp │ │ ├── 33040-bug_i_411.cpp │ │ ├── 33041-bug_i_411.cpp │ │ ├── 33042-bug_i_411.cpp │ │ ├── 33043-bug_i_478.cpp │ │ ├── 33044-bug_i_481.cpp │ │ ├── 33045-bug_i_width.cpp │ │ ├── 33046-bug_i_409.cpp │ │ ├── 33047-bug_i_409.cpp │ │ ├── 33048-bug_i_405.cpp │ │ ├── 33049-pp-pragma.cpp │ │ ├── 33050-issue_523.cpp │ │ ├── 33051-bug_i_503.cpp │ │ ├── 33052-bug_i_512.cpp │ │ ├── 33053-for_auto.cpp │ │ ├── 33054-bug_i_825.cpp │ │ ├── 33056-bug_33056.cpp │ │ ├── 33057-bug_1349.cpp │ │ ├── 33058-stdcall.cpp │ │ ├── 33060-if_constexpr.cpp │ │ ├── 33061-if_chain_braces.cpp │ │ ├── 33062-if_chain_braces.cpp │ │ ├── 33063-if_chain_braces.cpp │ │ ├── 33064-if_chain_braces.cpp │ │ ├── 33070-multi_line.cpp │ │ ├── 33071-multi_line.cpp │ │ ├── 33072-multi_line.cpp │ │ ├── 33073-multi_line.cpp │ │ ├── 33074-multi_line.cpp │ │ ├── 33075-multi_line.cpp │ │ ├── 33076-multi_line.cpp │ │ ├── 33077-multi_line.cpp │ │ ├── 33078-multi_line.cpp │ │ ├── 33079-multi_line.cpp │ │ ├── 33080-multi_line.cpp │ │ ├── 33081-bug_i_552.cpp │ │ ├── 33081-namespace_namespace.cpp │ │ ├── 33082-namespace_namespace.cpp │ │ ├── 33083-bug_i_359.cpp │ │ ├── 33084-op_sym_empty.cpp │ │ ├── 33085-bug_i_323.cpp │ │ ├── 33086-bug_i_568.cpp │ │ ├── 33087-bug_i_596.cpp │ │ ├── 33088-bug_i_197.cpp │ │ ├── 33089-bug_643.cpp │ │ ├── 33090-gh555.cpp │ │ ├── 33091-squeeze_ifdef.cpp │ │ ├── 33092-squeeze_ifdef.cpp │ │ ├── 33093-bug_i_322.cpp │ │ ├── 33093-sp_angle_paren.cpp │ │ ├── 33094-sp_angle_paren.cpp │ │ ├── 33095-bug_i_322.cpp │ │ ├── 33096-squeeze_ifdef.cpp │ │ ├── 33097-enum_comma.h │ │ ├── 33098-enum_comma.h │ │ ├── 33099-enum_comma.h │ │ ├── 33100-enum_comma.h │ │ ├── 33101-enum_comma.h │ │ ├── 33102-enum_comma.h │ │ ├── 33105-bug_1001.cpp │ │ ├── 33110-enum.cpp │ │ ├── 33150-bug_i_753.cpp │ │ ├── 33151-bug_i_752.cpp │ │ ├── 33152-bug_1004.cpp │ │ ├── 33160-bug_1112.cpp │ │ ├── 33200-first_len_minimum.cpp │ │ ├── 33201-indent_ctor_members_twice.cpp │ │ ├── 33202-initlist_leading_commas.cpp │ │ ├── 33203-bug_1288.cpp │ │ ├── 34001-nl_before_after.h │ │ ├── 34002-bug_i_793.cpp │ │ ├── 34003-nl_max_blank_in_func.cpp │ │ ├── 34004-nl_max_blank_in_func.cpp │ │ ├── 34005-nl_max_blank_in_func.cpp │ │ ├── 34006-bug_i_575.cpp │ │ ├── 34007-bug_i_928.cpp │ │ ├── 34100-bug_i_525.cpp │ │ ├── 34101-bug_i_646.cpp │ │ ├── 34105-bug_i_663.cpp │ │ ├── 34108-bug_i_666.cpp │ │ ├── 34112-bug_i_889.cpp │ │ ├── 34113-bug_902.cpp │ │ ├── 34113-bug_902.rerun.lang │ │ ├── 34114-bug_902.cpp │ │ ├── 34115-nl_before_func_body_def.cpp │ │ ├── 34120-bug_i_999.cpp │ │ ├── 34121-bug_1717.cpp │ │ ├── 34130-bug_i_1000.cpp │ │ ├── 34131-bug_i_1000.cpp │ │ ├── 34132-new_op.cpp │ │ ├── 34133-new_op.cpp │ │ ├── 34134-new_op.cpp │ │ ├── 34135-new_op.cpp │ │ ├── 34136-sp_balance_nested_parens.cpp │ │ ├── 34140-bug_1027.cpp │ │ ├── 34141-bug_1005.cpp │ │ ├── 34142-I1112-1.cpp │ │ ├── 34143-I1112-2.cpp │ │ ├── 34144-I1112-3.cpp │ │ ├── 34145-i683.cpp │ │ ├── 34146-bug_1002.cpp │ │ ├── 34147-bug_1002.cpp │ │ ├── 34148-bug_1139.cpp │ │ ├── 34149-bug_1139.cpp │ │ ├── 34150-bug_1032.cpp │ │ ├── 34151-bug_666.cpp │ │ ├── 34152-bug_1068.cpp │ │ ├── 34153-type_brace_init_lst.cpp │ │ ├── 34154-type_brace_init_lst.cpp │ │ ├── 34155-type_brace_init_lst.cpp │ │ ├── 34156-type_brace_init_lst.cpp │ │ ├── 34157-type_brace_init_lst.cpp │ │ ├── 34158-type_brace_init_lst.cpp │ │ ├── 34159-type_brace_init_lst.cpp │ │ ├── 34160-type_brace_init_lst.cpp │ │ ├── 34161-type_brace_init_lst.cpp │ │ ├── 34162-type_brace_init_lst.cpp │ │ ├── 34163-type_brace_init_lst.cpp │ │ ├── 34164-type_brace_init_lst.cpp │ │ ├── 34165-type_brace_init_lst.cpp │ │ ├── 34166-type_brace_init_lst.cpp │ │ ├── 34170-i1082.cpp │ │ ├── 34171-i1181.cpp │ │ ├── 34172-i1165.cpp │ │ ├── 34173-i1464.cpp │ │ ├── 34174-i1466.cpp │ │ ├── 34175-i1509.cpp │ │ ├── 34176-i1509_bug_1112_correction.cpp │ │ ├── 34180-bug_1402.cpp │ │ ├── 34190-bug_1003.cpp │ │ ├── 34191-comment-align-multiline.cpp │ │ ├── 34192-i1207.cpp │ │ ├── 34193-i1218.cpp │ │ ├── 34194-sp_arith_additive.cpp │ │ ├── 34195-sp_arith_additive.cpp │ │ ├── 34197-bug_1161.cpp │ │ ├── 34198-bug_1249.cpp │ │ ├── 34199-not_lambda.cpp │ │ ├── 34200-i1536.cpp │ │ ├── 34201-i1565.cpp │ │ ├── 34202-i1617.cpp │ │ ├── 34203-i1516.cpp │ │ ├── 34204-func_param_indent_leading_comma.cpp │ │ ├── 34205-bug_1395.cpp │ │ ├── 34206-for_loop_head.cpp │ │ ├── 34207-for_loop_head.cpp │ │ ├── 34210-override_virtual.cpp │ │ ├── 34250-bug_1607.cpp │ │ ├── 34251-bug_1649.cpp │ │ ├── 34280-UNI-29935.cpp │ │ ├── 34290-brace_brace_init_lst.cpp │ │ ├── 34291-brace_brace_init_lst.cpp │ │ ├── 34292-brace_brace_init_lst.cpp │ │ ├── 34293-brace_brace_init_lst.cpp │ │ ├── 34294-brace_brace_init_lst.cpp │ │ ├── 34295-brace_brace_init_lst.cpp │ │ ├── 34296-i1768.cpp │ │ ├── 34300-bug_1236.cpp │ │ ├── 60001-UNI-2650.cpp │ │ ├── 60002-UNI-16283.cpp │ │ ├── 60003-UNI-1288.cpp │ │ ├── 60006-UNI-2049.cpp │ │ ├── 60017-UNI-2683.cpp │ │ ├── 60022-UNI-18439.cpp │ │ ├── 60025-UNI-19894.cpp │ │ ├── 60027-UNI-21506.cpp │ │ ├── 60028-UNI-21509.cpp │ │ ├── 60029-UNI-21510.cpp │ │ ├── 60030-UNI-21727.cpp │ │ ├── 60031-UNI-21728.cpp │ │ ├── 60032-UNI-21729.cpp │ │ ├── 60036-UNI-2680.cpp │ │ ├── 60038-UNI-30088.cpp │ │ ├── 60039-UNI-30628.cpp │ │ └── 60042-UNI-18777.cpp │ ├── cs │ │ ├── 10000-simple.cs │ │ ├── 10001-getset.cs │ │ ├── 10002-simple.cs │ │ ├── 10003-region.cs │ │ ├── 10010-var-member.cs │ │ ├── 10011-strings.cs │ │ ├── 10012-621_this-spacing.cs │ │ ├── 10013-620_getset-brace.cs │ │ ├── 10013-625_where-constraints.cs │ │ ├── 10014-630_bad-new-init-semicolon-removal.cs │ │ ├── 10015-misc-failures.cs │ │ ├── 10016-new-constraint-paren-space.cs │ │ ├── 10018-delete-space-oc.mm │ │ ├── 10019-func-param-wrap-oc.mm │ │ ├── 10020-region.cs │ │ ├── 10021-region.cs │ │ ├── 10022-region.cs │ │ ├── 10023-region.cs │ │ ├── 10027-oneline_property.cs │ │ ├── 10028-ifcolalign.cs │ │ ├── 10029-when.cs │ │ ├── 10030-sort_using.cs │ │ ├── 10031-bug_i_935.cs │ │ ├── 10032-newlines.rerun.lang │ │ ├── 10032-sort_using_categ.cs │ │ ├── 10033-objc.rerun.lang │ │ ├── 10035-definesalign.h.mm │ │ ├── 10036-inttypes.h.mm │ │ ├── 10039-615_nested-usings.cs │ │ ├── 10040-tcf.cs │ │ ├── 10041-gs.cs │ │ ├── 10042-exception-filters.cs │ │ ├── 10044-ifcomment.cs │ │ ├── 10045-UNI-1288.cs │ │ ├── 10046-UNI-1333.mm │ │ ├── 10050-generics.cs │ │ ├── 10051-UNI-1338.cs │ │ ├── 10055-UNI-1345.cs │ │ ├── 10060-unsafe.cs │ │ ├── 10065-UNI-1975.cs │ │ ├── 10066-UNI-1977.cs │ │ ├── 10067-UNI-1978.cs │ │ ├── 10070-utf16le.cs │ │ ├── 10071-utf16be.cs │ │ ├── 10072-utf16le_no_bom.cs │ │ ├── 10073-utf16be_no_bom.cs │ │ ├── 10074-UNI-2020.cs │ │ ├── 10075-UNI-2021.cs │ │ ├── 10076-UNI-1343.cs │ │ ├── 10077-UNI-1919.cs │ │ ├── 10078-UNI-3484.cs │ │ ├── 10080-property.cs │ │ ├── 10090-string_multi.cs │ │ ├── 10100-bug_600.cs │ │ ├── 10101-sf607.cs │ │ ├── 10102-pp-ignore.mm │ │ ├── 10103-UNI-2506.cs │ │ ├── 10104-UNI-2505.cs │ │ ├── 10110-mdarray_space.cs │ │ ├── 10111-mdarray_space.cs │ │ ├── 10112-mdarray_space.cs │ │ ├── 10120-cmt_backslash_eol.cs │ │ ├── 10130-sp_between_new_paren.cs │ │ ├── 10140-remove_semi.cs │ │ ├── 10150-operator-null-conditional.cs │ │ ├── 10151-operator_null-coalescing-assignment.cs │ │ ├── 10160-delegate.cs │ │ ├── 10161-delegate.cs │ │ ├── 10200-logger.cs │ │ ├── 10628-sf628.cs │ │ ├── 11011-620_getset-brace.cs │ │ ├── 11030-argtypes.mm │ │ ├── 11031-casting.mm │ │ ├── 11032-newlines.mm │ │ ├── 11072-UNI-2007.cs │ │ ├── 11073-UNI-2008.cs │ │ ├── 12001-bug_620.cs │ │ ├── 12002-nullable_prop.cs │ │ ├── 12003-fncall_as_ctor_in_attr.cs │ │ ├── 12004-verbatim_strings.cs │ │ ├── 12005-bug_1591.cs │ │ ├── 12101-bug_i_679.cs │ │ ├── 12102-mod_full_brace_nl_block_rem_mlcond.cs │ │ ├── 12103-mod_full_brace_nl_block_rem_mlcond.cs │ │ ├── 12104-bug_1637.cs │ │ ├── 12105-bug_1650.cs │ │ ├── 12106-UNI-40685.cs │ │ ├── 20010-UNI-32658.cs │ │ ├── 20011-bug_1620.cs │ │ ├── 60004-UNI-2684.cs │ │ ├── 60005-UNI-2685.cs │ │ ├── 60007-UNI-3083.cs │ │ ├── 60008-UNI-17253.cs │ │ ├── 60009-UNI-9917.cs │ │ ├── 60009-UNI-9917.rerun.lang │ │ ├── 60011-UNI-11095.mm │ │ ├── 60012-UNI-12303.cs │ │ ├── 60013-UNI-13955.cs │ │ ├── 60015-UNI-14131.cs │ │ ├── 60016-UNI-11662.cs │ │ ├── 60018-UNI-18777.cs │ │ ├── 60019-UNI-18780.cs │ │ ├── 60020-UNI-18829.cs │ │ ├── 60023-UNI-18437.cs │ │ ├── 60024-UNI-19644.cs │ │ ├── 60026-UNI-19895.cs │ │ ├── 60033-UNI-21730.cs │ │ ├── 60036-UNI-11993.cs │ │ ├── 60037-UNI-29933.cs │ │ ├── 60040-UNI-30498_2.cs │ │ ├── 60041-squeeze-paren-close-Option.cs │ │ ├── 60043-UNI-36862.cs │ │ └── 60044-UNI-37241.cs │ ├── d │ │ ├── 40000-HashMap.d │ │ ├── 40001-imports.d │ │ ├── 40002-volatile.d │ │ ├── 40003-volatile-1.d │ │ ├── 40004-volatile-2.d │ │ ├── 40005-volatile-3.d │ │ ├── 40006-Lexer.d │ │ ├── 40007-Lexer.d │ │ ├── 40010-template.d │ │ ├── 40011-template.d │ │ ├── 40020-funcfunc.d │ │ ├── 40021-tst01.d │ │ ├── 40022-tst02.d │ │ ├── 40023-bug-indent.d │ │ ├── 40024-tst03.d │ │ ├── 40025-tst03.d │ │ ├── 40030-delegate.d │ │ ├── 40035-enum.d │ │ ├── 40040-sort_import.d │ │ ├── 40050-strings.d │ │ ├── 40051-numbers.d │ │ ├── 40052-numbers.d │ │ ├── 40060-casts.d │ │ ├── 40061-const.d │ │ ├── 40070-d_sp_paren.d │ │ ├── 40080-static_if.d │ │ └── 40090-square_indent_tab.d │ ├── ecma │ │ └── 90000-example-1.es │ ├── java │ │ ├── 80000-assert.java │ │ ├── 80010-annotation1.java │ │ ├── 80011-annotation2.java │ │ ├── 80012-annotation2.java │ │ ├── 80013-annotation2.java │ │ ├── 80014-annotation2.java │ │ ├── 80020-foreach.java │ │ ├── 80030-variable_aligns.java │ │ ├── 80040-try.java │ │ ├── 80050-double_brace.java │ │ ├── 80051-double_brace.java │ │ ├── 80060-synchronized.java │ │ ├── 80061-synchronized.java │ │ ├── 80062-sp_this_paren.java │ │ ├── 80063-i1121.java │ │ ├── 80064-long_cl_cmt.java │ │ ├── 80065-Java8DoubleColon.java │ │ ├── 80100-sf567.java │ │ ├── 80200-sp_before_byref.java │ │ ├── 80201-generics.java │ │ ├── 80202-generics_wildcard.java │ │ ├── 80203-generics_return_type.java │ │ ├── 80204-cast.java │ │ ├── 80205-sp_after_angle.java │ │ ├── 80206-annotation3.java │ │ ├── 80301-issue_672.java │ │ ├── 80900-sp_before_byref.java │ │ ├── 80901-generics.java │ │ ├── 80902-generics_wildcard.java │ │ ├── 80903-generics_return_type.java │ │ ├── 80904-cast.java │ │ ├── 80905-sp_after_angle.java │ │ └── 80906-annotation3.java │ ├── oc │ │ ├── 10018-delete-space-oc.mm │ │ ├── 10019-func-param-wrap-oc.mm │ │ ├── 50001-Fraction.h │ │ ├── 50002-Fraction.m │ │ ├── 50003-main.m │ │ ├── 50004-string.m │ │ ├── 50005-Declarations.h │ │ ├── 50006-exceptions.m │ │ ├── 50007-misc.m │ │ ├── 50008-protocol.m │ │ ├── 50009-literals.m │ │ ├── 50010-return_type.m │ │ ├── 50011-return_type.m │ │ ├── 50012-return_type.m │ │ ├── 50015-receiver.m │ │ ├── 50016-ternary.m │ │ ├── 50017-ternary.m │ │ ├── 50020-selector.m │ │ ├── 50021-selector.m │ │ ├── 50022-selector.m │ │ ├── 50025-exceptions.m │ │ ├── 50026-exceptions.m │ │ ├── 50030-sort_import.m │ │ ├── 50040-complex_method.m │ │ ├── 50050-real_world_file.m │ │ ├── 50060-oc-split.m │ │ ├── 50070-blocks.m │ │ ├── 50071-blocks.m │ │ ├── 50072-blocks.m │ │ ├── 50073-blocks.m │ │ ├── 50074-blocks.m │ │ ├── 50075-blocks.m │ │ ├── 50076-blocks.m │ │ ├── 50077-more_blocks.m │ │ ├── 50078-more_blocks.m │ │ ├── 50079-more_blocks.m │ │ ├── 50080-more_blocks.m │ │ ├── 50081-more_blocks.m │ │ ├── 50082-more_blocks.m │ │ ├── 50083-more_blocks.m │ │ ├── 50084-more_blocks.m │ │ ├── 50085-block_in_method.m │ │ ├── 50090-kw.m │ │ ├── 50095-box.m │ │ ├── 50100-bug_340.m │ │ ├── 50110-msg_align.m │ │ ├── 50111-ns_enum.m │ │ ├── 50112-ns_enum.m │ │ ├── 50113-ns_enum.m │ │ ├── 50120-gh137.m │ │ ├── 50200-more_blocks_2.m │ │ ├── 50201-blocks_align.m │ │ ├── 50202-blocks_align.m │ │ ├── 50203-blocks_align.m │ │ ├── 50204-blocks_align.m │ │ ├── 50205-msg_align.m │ │ ├── 50300-msg.m │ │ ├── 50400-for.m │ │ ├── 50410-oc_cond_colon.m │ │ ├── 50500-code_placeholder.m │ │ ├── 50510-gh293.m │ │ ├── 50511-gh293.m │ │ ├── 50512-sp_oc_catch.m │ │ ├── 50513-sp_oc_boxed.m │ │ ├── 50514-indent_boxed.m │ │ ├── 50515-sp_oc_synchronized.m │ │ ├── 50600-bug_i_477.m │ │ ├── 50601-bug_i_408.m │ │ ├── 50601-bug_i_477.m │ │ ├── 50602-bug_i_125-412.m │ │ ├── 50603-gh511.m │ │ ├── 50604-bug_497.m │ │ ├── 50605-bug_404.m │ │ ├── 50606-bug_1366.m │ │ ├── 50607-sp_after_oc_msg_receiver.m │ │ ├── 50608-blocks_align2.m │ │ ├── 50609-negative_value.m │ │ ├── 50610-nelem.m │ │ ├── 50611-for2.m │ │ ├── 50612-chunk_ends_type1.m │ │ ├── 50613-chunk_ends_type2.m │ │ ├── 50614-chunk_ends_type3.m │ │ ├── 50615-block_literal_protocol.m │ │ ├── 50616-oc_msg_in_pp.m │ │ ├── 50617-boxed_receiver.m │ │ ├── 50618-func_def.mm │ │ ├── 50619-cast.m │ │ ├── 50620-sp_after_angle.m │ │ ├── 50621-Fraction.h │ │ ├── 50622-c-cpp-oc-wrapper.c │ │ ├── 50623-extern-c-attribute.m │ │ ├── 50624-typeof.m │ │ ├── 50625-sp_inside_braces_oc_dict.m │ │ ├── 50626-chunk_ends_type4.m │ │ ├── 50627-method_ends_semicolon.m │ │ ├── 50628-macro-close-brace.m │ │ ├── 50629-pp_bool.m │ │ ├── 50630-react_native.m │ │ ├── 50700-cmt_insert.m │ │ ├── 50701-cmt_insert2.m │ │ ├── 50800-properties.m │ │ ├── 50801-i1213.m │ │ ├── 50802-available.m │ │ ├── 50803-indent_single_newline.m │ │ ├── 50810-bug_841.m │ │ ├── 50811-bug_1674.m │ │ ├── 50812-bug_1683.m │ │ ├── 50907-sp_after_oc_msg_receiver.m │ │ ├── 50908-blocks_align2.m │ │ ├── 50909-negative_value.m │ │ ├── 50910-nelem.m │ │ ├── 50911-for2.m │ │ ├── 50912-chunk_ends_type1.m │ │ ├── 50913-chunk_ends_type2.m │ │ ├── 50914-chunk_ends_type3.m │ │ ├── 50915-block_literal_protocol.m │ │ ├── 50916-oc_msg_in_pp.m │ │ ├── 50917-boxed_receiver.m │ │ ├── 50918-func_def.mm │ │ ├── 50919-cast.m │ │ ├── 50920-sp_after_angle.m │ │ ├── 50921-Fraction.h │ │ ├── 50922-c-cpp-oc-wrapper.c │ │ ├── 50923-extern-c-attribute.m │ │ ├── 50924-typeof.m │ │ ├── 50925-sp_inside_braces_oc_dict.m │ │ ├── 50926-chunk_ends_type4.m │ │ ├── 50927-method_ends_semicolon.m │ │ ├── 50928-macro-close-brace.m │ │ ├── 50929-pp_bool.m │ │ ├── 50930-react_native.m │ │ ├── 50931-objc.mm │ │ └── 50932-asm.h.mm │ ├── pawn │ │ ├── 60000-functions.pawn │ │ ├── 60001-comment.p │ │ ├── 60002-traffic.p │ │ ├── 60003-tags.pawn │ │ ├── 60004-enum.pawn │ │ ├── 60005-unbraced.p │ │ ├── 60010-str-escape.p │ │ ├── 60020-switch-vsemi.sma │ │ ├── 60030-crusty_ex-1.sma │ │ ├── 60040-preproc.pawn │ │ └── 60050-gh419.pawn │ ├── sql │ │ ├── 02400-mysql.sqc │ │ ├── 02401-sta-select.sqc │ │ ├── 02402-issue_527.sqc │ │ ├── 21000-mysql.sqc │ │ └── 21001-sta-select.sqc │ ├── staging │ │ ├── 10000-621_this-spacing.cpp │ │ ├── 10001-622_ifdef-indentation.cpp │ │ ├── 10002-623_caret-spacing.cpp │ │ ├── 10003-633_decl-in-func-typedef.cpp │ │ ├── 10004-634_extern-c-no-block.cpp │ │ ├── 10005-define-indentation.cpp │ │ ├── 10006-dont-detab-strings.cpp │ │ ├── 10007-dont-process-defines.cpp │ │ ├── 10008-PR326_invalid-backslash-eol-csharp.cpp │ │ ├── 10009-STUCK_macro-difficulties.cpp │ │ ├── 10010-_experiments.cpp │ │ ├── 10011-620_getset-brace.cs │ │ ├── 10012-621_this-spacing.cs │ │ ├── 10013-625_where-constraints.cs │ │ ├── 10014-630_bad-new-init-semicolon-removal.cs │ │ ├── 10015-misc-failures.cs │ │ ├── 10016-new-constraint-paren-space.cs │ │ ├── 10017-PR326_invalid-backslash-eol-csharp.cs │ │ ├── 10018-delete-space-oc.mm │ │ ├── 10019-func-param-wrap-oc.mm │ │ ├── 10020-macro_spaces.cpp │ │ ├── 10021-braces_align.cpp │ │ ├── 10022-foreach.cpp │ │ ├── 10023-for_auto.cpp │ │ ├── 10024-ifcomment.cpp │ │ ├── 10025-qtargs.cpp │ │ ├── 10026-ifoneliner.cpp │ │ ├── 10027-oneline_property.cs │ │ ├── 10028-ifcolalign.cs │ │ ├── 10029-when.cs │ │ ├── 10030-argtypes.mm │ │ ├── 10031-casting.mm │ │ ├── 10032-newlines.mm │ │ ├── 10033-objc.mm │ │ ├── 10034-asm.h.mm │ │ ├── 10035-definesalign.h.mm │ │ ├── 10036-inttypes.h.mm │ │ ├── 10038-614_multiple-passes.cs │ │ ├── 10039-615_nested-usings.cs │ │ ├── 10042-indent-bad.mm │ │ ├── 10043-nl-brace.cs │ │ ├── 10044-ifcomment.cs │ │ ├── 10045-UNI-1288.cs │ │ ├── 10046-UNI-1333.mm │ │ ├── 10047-UNI-1334.cpp │ │ ├── 10048-UNI-1335.cpp │ │ ├── 10049-UNI-1336.cpp │ │ ├── 10050-UNI-1337.cpp │ │ ├── 10051-UNI-1338.cs │ │ ├── 10052-UNI-1339.cpp │ │ ├── 10053-UNI-1340.cpp │ │ ├── 10054-UNI-1344.cpp │ │ ├── 10055-UNI-1345.cs │ │ ├── 10056-UNI-1346.cpp │ │ ├── 10057-UNI-1347.cpp │ │ ├── 10058-UNI-1348.cpp │ │ ├── 10059-UNI-1349.cpp │ │ ├── 10060-UNI-1350.cpp │ │ ├── 10061-UNI-1355.cs │ │ ├── 10062-UNI-1356.cpp │ │ ├── 10063-UNI-1358.cpp │ │ ├── 10064-UNI-1443.cs │ │ ├── 10065-UNI-1975.cs │ │ ├── 10066-UNI-1977.cs │ │ ├── 10067-UNI-1978.cs │ │ ├── 10068-UNI-1979.cs │ │ ├── 10069-UNI-1980.cpp │ │ ├── 10070-UNI-1981.cpp │ │ ├── 10071-UNI-1983.cpp │ │ ├── 10072-UNI-2007.cs │ │ ├── 10073-UNI-2008.cs │ │ ├── 10074-UNI-2020.cs │ │ ├── 10075-UNI-2021.cs │ │ ├── 10076-UNI-1343.cs │ │ ├── 10077-UNI-1919.cs │ │ ├── 10078-UNI-3484.cs │ │ ├── 10079-UNI-9650.cpp │ │ ├── 10080-UNI-10496.cpp │ │ ├── 10100-issue_564.cpp │ │ ├── 10102-pp-ignore.mm │ │ ├── 10103-UNI-2506.cs │ │ ├── 10104-UNI-2505.cs │ │ ├── 20001-UNI-32012.cpp │ │ ├── 20002-UNI-32657.cpp │ │ ├── 20003-UNI-32405.cs │ │ ├── 20004-UNI-32009.cpp │ │ ├── 20005-UNI-34114.cpp │ │ ├── 20006-UNI-32014.cs │ │ ├── 20010-UNI-32658.cs │ │ ├── 20011-UNI-38381.cpp │ │ ├── 30001-UNI-4603.cs │ │ ├── 60001-UNI-2650.cpp │ │ ├── 60002-UNI-16283.cpp │ │ ├── 60003-UNI-1288.cpp │ │ ├── 60004-UNI-2684.cs │ │ ├── 60005-UNI-2685.cs │ │ ├── 60006-UNI-2049.cpp │ │ ├── 60007-UNI-3083.cs │ │ ├── 60008-UNI-17253.cs │ │ ├── 60009-UNI-9917.cs │ │ ├── 60010-UNI-16283.cpp │ │ ├── 60011-UNI-11095.mm │ │ ├── 60012-UNI-12303.cs │ │ ├── 60013-UNI-13955.cs │ │ ├── 60014-UNI-14107.cpp │ │ ├── 60015-UNI-14131.cs │ │ ├── 60016-UNI-11662.cs │ │ ├── 60017-UNI-2683.cpp │ │ ├── 60018-UNI-18777.cs │ │ ├── 60019-UNI-18780.cs │ │ ├── 60020-UNI-18829.cs │ │ ├── 60021-UNI-12046.cpp │ │ ├── 60022-UNI-18439.cpp │ │ ├── 60023-UNI-18437.cs │ │ ├── 60024-UNI-19644.cs │ │ ├── 60025-UNI-19894.cpp │ │ ├── 60026-UNI-19895.cs │ │ ├── 60027-UNI-21506.cpp │ │ ├── 60028-UNI-21509.cpp │ │ ├── 60029-UNI-21510.cpp │ │ ├── 60030-UNI-11993.cs │ │ ├── 60030-UNI-21727.cpp │ │ ├── 60031-UNI-21728.cpp │ │ ├── 60032-UNI-21729.cpp │ │ ├── 60033-UNI-21730.cs │ │ ├── 60034-UNI-21731.cpp │ │ ├── 60035-UNI-22858.cs │ │ ├── 60036-UNI-2680.cpp │ │ ├── 60037-UNI-29933.cs │ │ ├── 60038-UNI-30088.cpp │ │ ├── 60039-UNI-30498.cpp │ │ ├── 60039-UNI-30628.cpp │ │ ├── 60040-UNI-30498_2.cs │ │ ├── 60041-squeeze-paren-close-Option.cs │ │ ├── 60042-UNI-18777.cpp │ │ ├── 60042-indent-multistring-coulmn1.cs │ │ ├── 60043-UNI-11993.cs │ │ ├── 60043-UNI-34087.cpp │ │ ├── 60044-UNI-37241.cs │ │ ├── 60045-indent-multistring-coulmn1.cs │ │ ├── 60046-UNI-24090.cs │ │ ├── 60047-UNI-24076.cs │ │ ├── 60050-UNI-40605.cs │ │ ├── 60051-UNI-11643.cpp │ │ ├── 60052-UNI-40685.cs │ │ ├── 60053-UNI-36862.cs │ │ ├── 60054-UNI-25811.cpp │ │ ├── 60055-UNI-29935.cpp │ │ ├── 60056-UNI-29935.cpp │ │ ├── 60057-UNI-crash.cpp │ │ ├── 60058-UNI-10566.cpp │ │ ├── 60061-UNI-46333.cpp │ │ ├── 60062-UNI-2048.cpp │ │ ├── 60063-UNI-47842.cpp │ │ └── 60064-UNI-47842.cs │ └── vala │ │ ├── 70000-list.vala │ │ ├── 70001-advanced.vala │ │ ├── 70010-verbatim_str.vala │ │ ├── 70011-verbatim_str2.vala │ │ ├── 70012-verbatim_str2.vala │ │ ├── 70020-preproc.vala │ │ └── 70287-gh287.vala ├── pawn.test ├── regression.test ├── rejected.test ├── run_test.cmake ├── run_tests.py ├── staging.test ├── tests.vpj └── vala.test ├── uncrustify.sublime-project ├── uncrustify.vpj ├── uncrustify.vpw ├── win32 └── uncrustify.natvis └── working.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/AUTHORS -------------------------------------------------------------------------------- /Adding_Option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/Adding_Option.md -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/BUGS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/ChangeLog -------------------------------------------------------------------------------- /Comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/Comments.txt -------------------------------------------------------------------------------- /HELP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/HELP -------------------------------------------------------------------------------- /LIMITATIONS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/LIMITATIONS.txt -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/README.md -------------------------------------------------------------------------------- /TESTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/TESTING -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/cmake/CodeCoverage.cmake -------------------------------------------------------------------------------- /commit.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/commit.log -------------------------------------------------------------------------------- /coverity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/coverity.sh -------------------------------------------------------------------------------- /coverity.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/coverity.travis.yml -------------------------------------------------------------------------------- /documentation/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/documentation/example.c -------------------------------------------------------------------------------- /documentation/goals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/documentation/goals.txt -------------------------------------------------------------------------------- /documentation/overview.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/documentation/overview.odt -------------------------------------------------------------------------------- /documentation/theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/documentation/theory.txt -------------------------------------------------------------------------------- /documentation/threads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/documentation/threads.txt -------------------------------------------------------------------------------- /emscripten/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/emscripten/CMakeLists.txt -------------------------------------------------------------------------------- /emscripten/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/emscripten/README.md -------------------------------------------------------------------------------- /emscripten/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/emscripten/build.sh -------------------------------------------------------------------------------- /emscripten/postfix_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/emscripten/postfix_file -------------------------------------------------------------------------------- /emscripten/prefix_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/emscripten/prefix_file -------------------------------------------------------------------------------- /etc/amxmodx.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/amxmodx.cfg -------------------------------------------------------------------------------- /etc/ben.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/ben.cfg -------------------------------------------------------------------------------- /etc/ben2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/ben2.cfg -------------------------------------------------------------------------------- /etc/d.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/d.cfg -------------------------------------------------------------------------------- /etc/defaults.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/defaults.cfg -------------------------------------------------------------------------------- /etc/dofiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/dofiles.sh -------------------------------------------------------------------------------- /etc/freebsd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/freebsd.cfg -------------------------------------------------------------------------------- /etc/gnu-indent.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/gnu-indent.cfg -------------------------------------------------------------------------------- /etc/klaus.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/klaus.cfg -------------------------------------------------------------------------------- /etc/kr-indent.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/kr-indent.cfg -------------------------------------------------------------------------------- /etc/linux-indent.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/linux-indent.cfg -------------------------------------------------------------------------------- /etc/linux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/linux.cfg -------------------------------------------------------------------------------- /etc/mono.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/mono.cfg -------------------------------------------------------------------------------- /etc/msvc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/msvc.cfg -------------------------------------------------------------------------------- /etc/objc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/objc.cfg -------------------------------------------------------------------------------- /etc/sun.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/sun.cfg -------------------------------------------------------------------------------- /etc/types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/types.txt -------------------------------------------------------------------------------- /etc/uigui_uncrustify.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/uigui_uncrustify.ini -------------------------------------------------------------------------------- /etc/uncrust-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/uncrust-files.sh -------------------------------------------------------------------------------- /etc/xsupplicant.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/etc/xsupplicant.cfg -------------------------------------------------------------------------------- /extras.vpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/extras.vpj -------------------------------------------------------------------------------- /forUncrustifySources.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/forUncrustifySources.cfg -------------------------------------------------------------------------------- /forUncrustifySources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/forUncrustifySources.txt -------------------------------------------------------------------------------- /lnt/ChunkStack.lnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/lnt/ChunkStack.lnt -------------------------------------------------------------------------------- /lnt/align.lnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/lnt/align.lnt -------------------------------------------------------------------------------- /lnt/chunk_list.lnt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lnt/logger.lnt: -------------------------------------------------------------------------------- 1 | -esym(530, args) -------------------------------------------------------------------------------- /lnt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/lnt/readme.txt -------------------------------------------------------------------------------- /lnt/unc_text.lnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/lnt/unc_text.lnt -------------------------------------------------------------------------------- /lnt/uncrustify_types.lnt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/uncrustify.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/man/uncrustify.1.in -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/package.json -------------------------------------------------------------------------------- /release-steps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/release-steps.txt -------------------------------------------------------------------------------- /run_tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/run_tests.bat -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/run_tests.sh -------------------------------------------------------------------------------- /scripts/Gcov_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/Gcov_test.sh -------------------------------------------------------------------------------- /scripts/Run_clang-tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/Run_clang-tidy.sh -------------------------------------------------------------------------------- /scripts/add_test_list.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/add_test_list.awk -------------------------------------------------------------------------------- /scripts/auto_reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/auto_reduce.py -------------------------------------------------------------------------------- /scripts/check_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/check_options.py -------------------------------------------------------------------------------- /scripts/cmpcfg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/cmpcfg.pl -------------------------------------------------------------------------------- /scripts/count.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/count.awk -------------------------------------------------------------------------------- /scripts/make_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/make_version.py -------------------------------------------------------------------------------- /scripts/new_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/new_test.py -------------------------------------------------------------------------------- /scripts/option_reducer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/option_reducer.py -------------------------------------------------------------------------------- /scripts/pclint/co-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/pclint/co-gcc.h -------------------------------------------------------------------------------- /scripts/pclint/co-gcc.lnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/pclint/co-gcc.lnt -------------------------------------------------------------------------------- /scripts/pclint/policy.lnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/pclint/policy.lnt -------------------------------------------------------------------------------- /scripts/pclint/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/pclint/usage.txt -------------------------------------------------------------------------------- /scripts/punc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/punc.py -------------------------------------------------------------------------------- /scripts/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/tokenizer.py -------------------------------------------------------------------------------- /scripts/update-defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/scripts/update-defaults.sh -------------------------------------------------------------------------------- /src/ChunkStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/ChunkStack.cpp -------------------------------------------------------------------------------- /src/ChunkStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/ChunkStack.h -------------------------------------------------------------------------------- /src/ListManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/ListManager.h -------------------------------------------------------------------------------- /src/ParseFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/ParseFrame.cpp -------------------------------------------------------------------------------- /src/ParseFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/ParseFrame.h -------------------------------------------------------------------------------- /src/align.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/align.cpp -------------------------------------------------------------------------------- /src/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/align.h -------------------------------------------------------------------------------- /src/align_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/align_stack.cpp -------------------------------------------------------------------------------- /src/align_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/align_stack.h -------------------------------------------------------------------------------- /src/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/args.cpp -------------------------------------------------------------------------------- /src/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/args.h -------------------------------------------------------------------------------- /src/backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/backup.cpp -------------------------------------------------------------------------------- /src/backup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/backup.h -------------------------------------------------------------------------------- /src/base_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/base_types.h -------------------------------------------------------------------------------- /src/brace_cleanup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/brace_cleanup.cpp -------------------------------------------------------------------------------- /src/brace_cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/brace_cleanup.h -------------------------------------------------------------------------------- /src/braces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/braces.cpp -------------------------------------------------------------------------------- /src/braces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/braces.h -------------------------------------------------------------------------------- /src/char_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/char_table.h -------------------------------------------------------------------------------- /src/chunk_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/chunk_list.cpp -------------------------------------------------------------------------------- /src/chunk_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/chunk_list.h -------------------------------------------------------------------------------- /src/combine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/combine.cpp -------------------------------------------------------------------------------- /src/combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/combine.h -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/compat_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/compat_posix.cpp -------------------------------------------------------------------------------- /src/compat_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/compat_win32.cpp -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/defines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/defines.cpp -------------------------------------------------------------------------------- /src/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/defines.h -------------------------------------------------------------------------------- /src/detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/detect.cpp -------------------------------------------------------------------------------- /src/detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/detect.h -------------------------------------------------------------------------------- /src/error_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/error_types.h -------------------------------------------------------------------------------- /src/frame_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/frame_list.cpp -------------------------------------------------------------------------------- /src/frame_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/frame_list.h -------------------------------------------------------------------------------- /src/helper_for_print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/helper_for_print.cpp -------------------------------------------------------------------------------- /src/helper_for_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/helper_for_print.h -------------------------------------------------------------------------------- /src/indent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/indent.cpp -------------------------------------------------------------------------------- /src/indent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/indent.h -------------------------------------------------------------------------------- /src/keywords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/keywords.cpp -------------------------------------------------------------------------------- /src/keywords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/keywords.h -------------------------------------------------------------------------------- /src/lang_pawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/lang_pawn.cpp -------------------------------------------------------------------------------- /src/lang_pawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/lang_pawn.h -------------------------------------------------------------------------------- /src/language_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/language_tools.cpp -------------------------------------------------------------------------------- /src/language_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/language_tools.h -------------------------------------------------------------------------------- /src/log_levels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/log_levels.h -------------------------------------------------------------------------------- /src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/logger.cpp -------------------------------------------------------------------------------- /src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/logger.h -------------------------------------------------------------------------------- /src/logmask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/logmask.cpp -------------------------------------------------------------------------------- /src/logmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/logmask.h -------------------------------------------------------------------------------- /src/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/md5.cpp -------------------------------------------------------------------------------- /src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/md5.h -------------------------------------------------------------------------------- /src/newlines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/newlines.cpp -------------------------------------------------------------------------------- /src/newlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/newlines.h -------------------------------------------------------------------------------- /src/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/options.cpp -------------------------------------------------------------------------------- /src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/options.h -------------------------------------------------------------------------------- /src/options_for_QT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/options_for_QT.cpp -------------------------------------------------------------------------------- /src/options_for_QT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/options_for_QT.h -------------------------------------------------------------------------------- /src/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/output.cpp -------------------------------------------------------------------------------- /src/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/output.h -------------------------------------------------------------------------------- /src/parens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/parens.cpp -------------------------------------------------------------------------------- /src/parens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/parens.h -------------------------------------------------------------------------------- /src/parse_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/parse_frame.cpp -------------------------------------------------------------------------------- /src/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/prototypes.h -------------------------------------------------------------------------------- /src/punctuators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/punctuators.cpp -------------------------------------------------------------------------------- /src/punctuators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/punctuators.h -------------------------------------------------------------------------------- /src/semicolons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/semicolons.cpp -------------------------------------------------------------------------------- /src/semicolons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/semicolons.h -------------------------------------------------------------------------------- /src/sorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/sorting.cpp -------------------------------------------------------------------------------- /src/sorting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/sorting.h -------------------------------------------------------------------------------- /src/space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/space.cpp -------------------------------------------------------------------------------- /src/space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/space.h -------------------------------------------------------------------------------- /src/symbols_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/symbols_table.h -------------------------------------------------------------------------------- /src/token_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/token_enum.h -------------------------------------------------------------------------------- /src/tokenize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/tokenize.cpp -------------------------------------------------------------------------------- /src/tokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/tokenize.h -------------------------------------------------------------------------------- /src/tokenize_cleanup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/tokenize_cleanup.cpp -------------------------------------------------------------------------------- /src/tokenize_cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/tokenize_cleanup.h -------------------------------------------------------------------------------- /src/unc_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/unc_ctype.h -------------------------------------------------------------------------------- /src/unc_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/unc_text.cpp -------------------------------------------------------------------------------- /src/unc_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/unc_text.h -------------------------------------------------------------------------------- /src/unc_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/unc_tools.cpp -------------------------------------------------------------------------------- /src/unc_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/unc_tools.h -------------------------------------------------------------------------------- /src/uncrustify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/uncrustify.cpp -------------------------------------------------------------------------------- /src/uncrustify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/uncrustify.h -------------------------------------------------------------------------------- /src/uncrustify_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/uncrustify_types.h -------------------------------------------------------------------------------- /src/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/unicode.cpp -------------------------------------------------------------------------------- /src/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/unicode.h -------------------------------------------------------------------------------- /src/universalindentgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/universalindentgui.cpp -------------------------------------------------------------------------------- /src/universalindentgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/universalindentgui.h -------------------------------------------------------------------------------- /src/width.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/width.cpp -------------------------------------------------------------------------------- /src/width.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/width.h -------------------------------------------------------------------------------- /src/windows_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/src/windows_compat.h -------------------------------------------------------------------------------- /tests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/.editorconfig -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/c-sharp.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/c-sharp.test -------------------------------------------------------------------------------- /tests/c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/c.test -------------------------------------------------------------------------------- /tests/cli/config/I-842.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/config/unmatched_close_pp.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/input/I-842.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cli/input/I-842.cpp -------------------------------------------------------------------------------- /tests/cli/input/logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cli/input/logger.cs -------------------------------------------------------------------------------- /tests/cli/output/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cli/output/21.txt -------------------------------------------------------------------------------- /tests/cli/output/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cli/output/25.txt -------------------------------------------------------------------------------- /tests/cli/output/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cli/output/28.txt -------------------------------------------------------------------------------- /tests/cli/output/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cli/output/31.txt -------------------------------------------------------------------------------- /tests/cli/output/36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cli/output/36.txt -------------------------------------------------------------------------------- /tests/cli/output/66.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cli/output/66.txt -------------------------------------------------------------------------------- /tests/cli/output/9.txt: -------------------------------------------------------------------------------- 1 | Using LF line endings 2 | -------------------------------------------------------------------------------- /tests/cli/output/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cli/output/92.txt -------------------------------------------------------------------------------- /tests/cli/output/I-842.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cli/output/I-842.txt -------------------------------------------------------------------------------- /tests/cli/output/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cli/output/help.txt -------------------------------------------------------------------------------- /tests/cli/output/mini_d_error.txt: -------------------------------------------------------------------------------- 1 | config/mini_d.cfg:2 Unknown symbol 'not_existing_option' 2 | -------------------------------------------------------------------------------- /tests/cli/output/p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cli/output/p.txt -------------------------------------------------------------------------------- /tests/config/615_nested_usings.cfg: -------------------------------------------------------------------------------- 1 | indent_using_block = false 2 | -------------------------------------------------------------------------------- /tests/config/623_caret-spacing.cfg: -------------------------------------------------------------------------------- 1 | sp_arith = add 2 | -------------------------------------------------------------------------------- /tests/config/633_decl-in-func-typedef.cfg: -------------------------------------------------------------------------------- 1 | sp_arith = add 2 | -------------------------------------------------------------------------------- /tests/config/I1112-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/I1112-2.cfg -------------------------------------------------------------------------------- /tests/config/NewLine-f.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/NewLine-f.cfg -------------------------------------------------------------------------------- /tests/config/NewLine-r.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/NewLine-r.cfg -------------------------------------------------------------------------------- /tests/config/U-J.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U-J.cfg -------------------------------------------------------------------------------- /tests/config/U01-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U01-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U01-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U01-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U02-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U02-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U02-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U02-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U03-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U03-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U03-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U03-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U04-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U04-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U04-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U04-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U05-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U05-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U05-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U05-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U06-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U06-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U06-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U06-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U07-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U07-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U07-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U07-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U08-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U08-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U08-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U08-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U09-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U09-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U09-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U09-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U10-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U10-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U10-Cpp.rerun.cfg: -------------------------------------------------------------------------------- 1 | include "U10-Cpp.cfg" 2 | -------------------------------------------------------------------------------- /tests/config/U10-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U10-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U11-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U11-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U11-Cpp.rerun.cfg: -------------------------------------------------------------------------------- 1 | include "U11-Cpp.cfg" 2 | -------------------------------------------------------------------------------- /tests/config/U11-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U11-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U12-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U12-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U13-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U13-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U13-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U13-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U14-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U14-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U15-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U15-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U15-Cs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U15-Cs.cfg -------------------------------------------------------------------------------- /tests/config/U16-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U16-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U18-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U18-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U21-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U21-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U23-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U23-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U24-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U24-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U25-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U25-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U26-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U26-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U27-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U27-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U28-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U28-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U29-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U29-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U30-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U30-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U31-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U31-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U33-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U33-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/U36-Cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/U36-Cpp.cfg -------------------------------------------------------------------------------- /tests/config/UNI-10496.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-10496.cfg -------------------------------------------------------------------------------- /tests/config/UNI-11095.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-11095.cfg -------------------------------------------------------------------------------- /tests/config/UNI-11662.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-11662.cfg -------------------------------------------------------------------------------- /tests/config/UNI-11993.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-11993.cfg -------------------------------------------------------------------------------- /tests/config/UNI-12046.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-12046.cfg -------------------------------------------------------------------------------- /tests/config/UNI-1288.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-1288.cfg -------------------------------------------------------------------------------- /tests/config/UNI-1338.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-1338.cfg -------------------------------------------------------------------------------- /tests/config/UNI-1340.cfg: -------------------------------------------------------------------------------- 1 | nl_namespace_two_to_one_liner = true 2 | -------------------------------------------------------------------------------- /tests/config/UNI-1343.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-1343.cfg -------------------------------------------------------------------------------- /tests/config/UNI-1344.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-1344.cfg -------------------------------------------------------------------------------- /tests/config/UNI-1346.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-1346.cfg -------------------------------------------------------------------------------- /tests/config/UNI-1347.cfg: -------------------------------------------------------------------------------- 1 | indent_extern = true 2 | set PROTO_WRAP FAKE_FUNCTION 3 | -------------------------------------------------------------------------------- /tests/config/UNI-1350.cfg: -------------------------------------------------------------------------------- 1 | sp_inside_braces_struct = add 2 | -------------------------------------------------------------------------------- /tests/config/UNI-1356.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-1356.cfg -------------------------------------------------------------------------------- /tests/config/UNI-1358.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-1358.cfg -------------------------------------------------------------------------------- /tests/config/UNI-13955.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-13955.cfg -------------------------------------------------------------------------------- /tests/config/UNI-14131.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-14131.cfg -------------------------------------------------------------------------------- /tests/config/UNI-18437.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-18437.cfg -------------------------------------------------------------------------------- /tests/config/UNI-18777.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-18777.cfg -------------------------------------------------------------------------------- /tests/config/UNI-18829.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-18829.cfg -------------------------------------------------------------------------------- /tests/config/UNI-1975.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-1975.cfg -------------------------------------------------------------------------------- /tests/config/UNI-1977.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-1977.cfg -------------------------------------------------------------------------------- /tests/config/UNI-1978.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-1978.cfg -------------------------------------------------------------------------------- /tests/config/UNI-19895.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-19895.cfg -------------------------------------------------------------------------------- /tests/config/UNI-2020.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-2020.cfg -------------------------------------------------------------------------------- /tests/config/UNI-2021.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-2021.cfg -------------------------------------------------------------------------------- /tests/config/UNI-2049.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-2049.cfg -------------------------------------------------------------------------------- /tests/config/UNI-21730.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-21730.cfg -------------------------------------------------------------------------------- /tests/config/UNI-2650.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-2650.cfg -------------------------------------------------------------------------------- /tests/config/UNI-2680.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-2680.cfg -------------------------------------------------------------------------------- /tests/config/UNI-2684.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-2684.cfg -------------------------------------------------------------------------------- /tests/config/UNI-2685.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-2685.cfg -------------------------------------------------------------------------------- /tests/config/UNI-29933.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-29933.cfg -------------------------------------------------------------------------------- /tests/config/UNI-29935.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-29935.cfg -------------------------------------------------------------------------------- /tests/config/UNI-30088.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-30088.cfg -------------------------------------------------------------------------------- /tests/config/UNI-3083.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-3083.cfg -------------------------------------------------------------------------------- /tests/config/UNI-32657.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-32657.cfg -------------------------------------------------------------------------------- /tests/config/UNI-32658.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-32658.cfg -------------------------------------------------------------------------------- /tests/config/UNI-36862.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-36862.cfg -------------------------------------------------------------------------------- /tests/config/UNI-37241.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-37241.cfg -------------------------------------------------------------------------------- /tests/config/UNI-9917.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/UNI-9917.cfg -------------------------------------------------------------------------------- /tests/config/aet-sp_after_oc_msg_receiver.cfg: -------------------------------------------------------------------------------- 1 | include "aet.cfg" 2 | 3 | sp_after_oc_msg_receiver=remove 4 | -------------------------------------------------------------------------------- /tests/config/aet-sp_inside_braces_oc_dict.cfg: -------------------------------------------------------------------------------- 1 | include "aet.cfg" 2 | 3 | sp_inside_braces_oc_dict=force 4 | -------------------------------------------------------------------------------- /tests/config/aet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/aet.cfg -------------------------------------------------------------------------------- /tests/config/al.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/al.cfg -------------------------------------------------------------------------------- /tests/config/align-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/align-1.cfg -------------------------------------------------------------------------------- /tests/config/align-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/align-2.cfg -------------------------------------------------------------------------------- /tests/config/align-3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/align-3.cfg -------------------------------------------------------------------------------- /tests/config/align_right_comment.cfg: -------------------------------------------------------------------------------- 1 | align_right_cmt_span = 3 2 | -------------------------------------------------------------------------------- /tests/config/align_same_func_call_params-t.cfg: -------------------------------------------------------------------------------- 1 | align_same_func_call_params = true 2 | -------------------------------------------------------------------------------- /tests/config/amxmodx.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/amxmodx.cfg -------------------------------------------------------------------------------- /tests/config/avalon.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/avalon.cfg -------------------------------------------------------------------------------- /tests/config/avalon2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/avalon2.cfg -------------------------------------------------------------------------------- /tests/config/avalon3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/avalon3.cfg -------------------------------------------------------------------------------- /tests/config/avalon4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/avalon4.cfg -------------------------------------------------------------------------------- /tests/config/ben2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben2.cfg -------------------------------------------------------------------------------- /tests/config/ben_001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_001.cfg -------------------------------------------------------------------------------- /tests/config/ben_002.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_002.cfg -------------------------------------------------------------------------------- /tests/config/ben_003.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_003.cfg -------------------------------------------------------------------------------- /tests/config/ben_004.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_004.cfg -------------------------------------------------------------------------------- /tests/config/ben_005.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_005.cfg -------------------------------------------------------------------------------- /tests/config/ben_006.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_006.cfg -------------------------------------------------------------------------------- /tests/config/ben_008.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_008.cfg -------------------------------------------------------------------------------- /tests/config/ben_009.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_009.cfg -------------------------------------------------------------------------------- /tests/config/ben_010.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_010.cfg -------------------------------------------------------------------------------- /tests/config/ben_011.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_011.cfg -------------------------------------------------------------------------------- /tests/config/ben_012.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_012.cfg -------------------------------------------------------------------------------- /tests/config/ben_013.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_013.cfg -------------------------------------------------------------------------------- /tests/config/ben_014.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_014.cfg -------------------------------------------------------------------------------- /tests/config/ben_015.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_015.cfg -------------------------------------------------------------------------------- /tests/config/ben_016.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_016.cfg -------------------------------------------------------------------------------- /tests/config/ben_017.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_017.cfg -------------------------------------------------------------------------------- /tests/config/ben_018.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_018.cfg -------------------------------------------------------------------------------- /tests/config/ben_020.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_020.cfg -------------------------------------------------------------------------------- /tests/config/ben_021.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_021.cfg -------------------------------------------------------------------------------- /tests/config/ben_022.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_022.cfg -------------------------------------------------------------------------------- /tests/config/ben_023.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_023.cfg -------------------------------------------------------------------------------- /tests/config/ben_024.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_024.cfg -------------------------------------------------------------------------------- /tests/config/ben_026.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_026.cfg -------------------------------------------------------------------------------- /tests/config/ben_027.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_027.cfg -------------------------------------------------------------------------------- /tests/config/ben_028.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_028.cfg -------------------------------------------------------------------------------- /tests/config/ben_029.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_029.cfg -------------------------------------------------------------------------------- /tests/config/ben_030.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_030.cfg -------------------------------------------------------------------------------- /tests/config/ben_031.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_031.cfg -------------------------------------------------------------------------------- /tests/config/ben_032.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_032.cfg -------------------------------------------------------------------------------- /tests/config/ben_033.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_033.cfg -------------------------------------------------------------------------------- /tests/config/ben_034.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_034.cfg -------------------------------------------------------------------------------- /tests/config/ben_036.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_036.cfg -------------------------------------------------------------------------------- /tests/config/ben_037.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_037.cfg -------------------------------------------------------------------------------- /tests/config/ben_038.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_038.cfg -------------------------------------------------------------------------------- /tests/config/ben_042.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_042.cfg -------------------------------------------------------------------------------- /tests/config/ben_043.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_043.cfg -------------------------------------------------------------------------------- /tests/config/ben_044.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_044.cfg -------------------------------------------------------------------------------- /tests/config/ben_045.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_045.cfg -------------------------------------------------------------------------------- /tests/config/ben_047.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_047.cfg -------------------------------------------------------------------------------- /tests/config/ben_048.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_048.cfg -------------------------------------------------------------------------------- /tests/config/ben_049.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_049.cfg -------------------------------------------------------------------------------- /tests/config/ben_050.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_050.cfg -------------------------------------------------------------------------------- /tests/config/ben_051.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_051.cfg -------------------------------------------------------------------------------- /tests/config/ben_052.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_052.cfg -------------------------------------------------------------------------------- /tests/config/ben_053.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_053.cfg -------------------------------------------------------------------------------- /tests/config/ben_054.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_054.cfg -------------------------------------------------------------------------------- /tests/config/ben_055.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_055.cfg -------------------------------------------------------------------------------- /tests/config/ben_056.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_056.cfg -------------------------------------------------------------------------------- /tests/config/ben_057.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_057.cfg -------------------------------------------------------------------------------- /tests/config/ben_058.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_058.cfg -------------------------------------------------------------------------------- /tests/config/ben_061.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_061.cfg -------------------------------------------------------------------------------- /tests/config/ben_063.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_063.cfg -------------------------------------------------------------------------------- /tests/config/ben_064.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_064.cfg -------------------------------------------------------------------------------- /tests/config/ben_065.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_065.cfg -------------------------------------------------------------------------------- /tests/config/ben_069.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_069.cfg -------------------------------------------------------------------------------- /tests/config/ben_070.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_070.cfg -------------------------------------------------------------------------------- /tests/config/ben_071.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_071.cfg -------------------------------------------------------------------------------- /tests/config/ben_072.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_072.cfg -------------------------------------------------------------------------------- /tests/config/ben_073.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_073.cfg -------------------------------------------------------------------------------- /tests/config/ben_074.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_074.cfg -------------------------------------------------------------------------------- /tests/config/ben_075.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_075.cfg -------------------------------------------------------------------------------- /tests/config/ben_076.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_076.cfg -------------------------------------------------------------------------------- /tests/config/ben_077.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_077.cfg -------------------------------------------------------------------------------- /tests/config/ben_078.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_078.cfg -------------------------------------------------------------------------------- /tests/config/ben_079.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_079.cfg -------------------------------------------------------------------------------- /tests/config/ben_080.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_080.cfg -------------------------------------------------------------------------------- /tests/config/ben_081.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_081.cfg -------------------------------------------------------------------------------- /tests/config/ben_083.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_083.cfg -------------------------------------------------------------------------------- /tests/config/ben_084.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_084.cfg -------------------------------------------------------------------------------- /tests/config/ben_085.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_085.cfg -------------------------------------------------------------------------------- /tests/config/ben_086.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_086.cfg -------------------------------------------------------------------------------- /tests/config/ben_087.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_087.cfg -------------------------------------------------------------------------------- /tests/config/ben_088.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_088.cfg -------------------------------------------------------------------------------- /tests/config/ben_089.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_089.cfg -------------------------------------------------------------------------------- /tests/config/ben_090.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_090.cfg -------------------------------------------------------------------------------- /tests/config/ben_091.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_091.cfg -------------------------------------------------------------------------------- /tests/config/ben_092.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_092.cfg -------------------------------------------------------------------------------- /tests/config/ben_093.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_093.cfg -------------------------------------------------------------------------------- /tests/config/ben_094.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_094.cfg -------------------------------------------------------------------------------- /tests/config/ben_095.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_095.cfg -------------------------------------------------------------------------------- /tests/config/ben_098.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_098.cfg -------------------------------------------------------------------------------- /tests/config/ben_099.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_099.cfg -------------------------------------------------------------------------------- /tests/config/ben_100.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_100.cfg -------------------------------------------------------------------------------- /tests/config/ben_101.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_101.cfg -------------------------------------------------------------------------------- /tests/config/ben_102.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_102.cfg -------------------------------------------------------------------------------- /tests/config/ben_103.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_103.cfg -------------------------------------------------------------------------------- /tests/config/ben_104.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_104.cfg -------------------------------------------------------------------------------- /tests/config/ben_105.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ben_105.cfg -------------------------------------------------------------------------------- /tests/config/blocks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/blocks.cfg -------------------------------------------------------------------------------- /tests/config/brace-gnu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/brace-gnu.cfg -------------------------------------------------------------------------------- /tests/config/brace-kr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/brace-kr.cfg -------------------------------------------------------------------------------- /tests/config/brace-ws.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/brace-ws.cfg -------------------------------------------------------------------------------- /tests/config/brace-ws2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/brace-ws2.cfg -------------------------------------------------------------------------------- /tests/config/bug_1003.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1003.cfg -------------------------------------------------------------------------------- /tests/config/bug_1004.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1004.cfg -------------------------------------------------------------------------------- /tests/config/bug_1020.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1020.cfg -------------------------------------------------------------------------------- /tests/config/bug_1108.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1108.cfg -------------------------------------------------------------------------------- /tests/config/bug_1160.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1160.cfg -------------------------------------------------------------------------------- /tests/config/bug_1161.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1161.cfg -------------------------------------------------------------------------------- /tests/config/bug_1169.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1169.cfg -------------------------------------------------------------------------------- /tests/config/bug_1170.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1170.cfg -------------------------------------------------------------------------------- /tests/config/bug_1236.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1236.cfg -------------------------------------------------------------------------------- /tests/config/bug_1296.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1296.cfg -------------------------------------------------------------------------------- /tests/config/bug_1324.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1324.cfg -------------------------------------------------------------------------------- /tests/config/bug_1340.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1340.cfg -------------------------------------------------------------------------------- /tests/config/bug_1349.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1349.cfg -------------------------------------------------------------------------------- /tests/config/bug_1395.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1395.cfg -------------------------------------------------------------------------------- /tests/config/bug_1402.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/config/bug_1403.cfg: -------------------------------------------------------------------------------- 1 | sp_arith = force 2 | -------------------------------------------------------------------------------- /tests/config/bug_1432.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1432.cfg -------------------------------------------------------------------------------- /tests/config/bug_1439.cfg: -------------------------------------------------------------------------------- 1 | nl_after_struct = 2 2 | -------------------------------------------------------------------------------- /tests/config/bug_1452.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1452.cfg -------------------------------------------------------------------------------- /tests/config/bug_1620.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1620.cfg -------------------------------------------------------------------------------- /tests/config/bug_1637.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1637.cfg -------------------------------------------------------------------------------- /tests/config/bug_1649.cfg: -------------------------------------------------------------------------------- 1 | sp_after_noexcept = remove 2 | -------------------------------------------------------------------------------- /tests/config/bug_1650.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1650.cfg -------------------------------------------------------------------------------- /tests/config/bug_1689.cfg: -------------------------------------------------------------------------------- 1 | sp_before_unnamed_byref = remove 2 | -------------------------------------------------------------------------------- /tests/config/bug_1691.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1691.cfg -------------------------------------------------------------------------------- /tests/config/bug_1702.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1702.cfg -------------------------------------------------------------------------------- /tests/config/bug_1717.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_1717.cfg -------------------------------------------------------------------------------- /tests/config/bug_1718.cfg: -------------------------------------------------------------------------------- 1 | indent_switch_pp = false 2 | -------------------------------------------------------------------------------- /tests/config/bug_340.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_340.cfg -------------------------------------------------------------------------------- /tests/config/bug_472.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_472.cfg -------------------------------------------------------------------------------- /tests/config/bug_488.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_488.cfg -------------------------------------------------------------------------------- /tests/config/bug_489.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_489.cfg -------------------------------------------------------------------------------- /tests/config/bug_620.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_620.cfg -------------------------------------------------------------------------------- /tests/config/bug_633.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_633.cfg -------------------------------------------------------------------------------- /tests/config/bug_643.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_643.cfg -------------------------------------------------------------------------------- /tests/config/bug_657.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_657.cfg -------------------------------------------------------------------------------- /tests/config/bug_664.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_664.cfg -------------------------------------------------------------------------------- /tests/config/bug_670.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_670.cfg -------------------------------------------------------------------------------- /tests/config/bug_671.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_671.cfg -------------------------------------------------------------------------------- /tests/config/bug_841.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_841.cfg -------------------------------------------------------------------------------- /tests/config/bug_i_322.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_i_322.cfg -------------------------------------------------------------------------------- /tests/config/bug_i_359.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_i_359.cfg -------------------------------------------------------------------------------- /tests/config/bug_i_405.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_i_405.cfg -------------------------------------------------------------------------------- /tests/config/bug_i_478.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_i_478.cfg -------------------------------------------------------------------------------- /tests/config/bug_i_663.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_i_663.cfg -------------------------------------------------------------------------------- /tests/config/bug_i_666.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_i_666.cfg -------------------------------------------------------------------------------- /tests/config/bug_i_752.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_i_752.cfg -------------------------------------------------------------------------------- /tests/config/bug_i_771.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/bug_i_771.cfg -------------------------------------------------------------------------------- /tests/config/byref-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/byref-2.cfg -------------------------------------------------------------------------------- /tests/config/case-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/case-1.cfg -------------------------------------------------------------------------------- /tests/config/case-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/case-2.cfg -------------------------------------------------------------------------------- /tests/config/case-3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/case-3.cfg -------------------------------------------------------------------------------- /tests/config/cast-sp-a.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/cast-sp-a.cfg -------------------------------------------------------------------------------- /tests/config/cast-sp-r.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/cast-sp-r.cfg -------------------------------------------------------------------------------- /tests/config/cast-type.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/cast-type.cfg -------------------------------------------------------------------------------- /tests/config/cast.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/cast.cfg -------------------------------------------------------------------------------- /tests/config/cgal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/cgal.cfg -------------------------------------------------------------------------------- /tests/config/clark.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/clark.cfg -------------------------------------------------------------------------------- /tests/config/clark.rerun.cfg: -------------------------------------------------------------------------------- 1 | include "clark.cfg" 2 | -------------------------------------------------------------------------------- /tests/config/cond-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/cond-1.cfg -------------------------------------------------------------------------------- /tests/config/cpp17.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/cpp17.cfg -------------------------------------------------------------------------------- /tests/config/cu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/cu.cfg -------------------------------------------------------------------------------- /tests/config/d-tst2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/d-tst2.cfg -------------------------------------------------------------------------------- /tests/config/d.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/d.cfg -------------------------------------------------------------------------------- /tests/config/d2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/d2.cfg -------------------------------------------------------------------------------- /tests/config/d3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/d3.cfg -------------------------------------------------------------------------------- /tests/config/d3a.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/d3a.cfg -------------------------------------------------------------------------------- /tests/config/dont-detab-strings.cfg: -------------------------------------------------------------------------------- 1 | string_replace_tab_chars = true 2 | -------------------------------------------------------------------------------- /tests/config/else-if-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/else-if-1.cfg -------------------------------------------------------------------------------- /tests/config/else-if-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/else-if-2.cfg -------------------------------------------------------------------------------- /tests/config/empty.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/config/endif.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/endif.cfg -------------------------------------------------------------------------------- /tests/config/enum.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/enum.cfg -------------------------------------------------------------------------------- /tests/config/file-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/file-header.h -------------------------------------------------------------------------------- /tests/config/freebsd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/freebsd.cfg -------------------------------------------------------------------------------- /tests/config/func-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/func-header.h -------------------------------------------------------------------------------- /tests/config/ger.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ger.cfg -------------------------------------------------------------------------------- /tests/config/getset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/getset.cfg -------------------------------------------------------------------------------- /tests/config/gh137.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/gh137.cfg -------------------------------------------------------------------------------- /tests/config/gh293.a.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/gh293.a.cfg -------------------------------------------------------------------------------- /tests/config/gh293.b.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/gh293.b.cfg -------------------------------------------------------------------------------- /tests/config/i1516.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/i1516.cfg -------------------------------------------------------------------------------- /tests/config/i1536.cfg: -------------------------------------------------------------------------------- 1 | cmt_insert_func_header=i1536.txt -------------------------------------------------------------------------------- /tests/config/i1536.txt: -------------------------------------------------------------------------------- 1 | // $(function) 2 | -------------------------------------------------------------------------------- /tests/config/i1564.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/i1564.cfg -------------------------------------------------------------------------------- /tests/config/i1768.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/i1768.cfg -------------------------------------------------------------------------------- /tests/config/i683.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/i683.cfg -------------------------------------------------------------------------------- /tests/config/if_chain.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/if_chain.cfg -------------------------------------------------------------------------------- /tests/config/indent-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/indent-1.cfg -------------------------------------------------------------------------------- /tests/config/indent_paren_after_func_call-t.cfg: -------------------------------------------------------------------------------- 1 | indent_paren_after_func_call = true -------------------------------------------------------------------------------- /tests/config/indent_paren_after_func_decl-t.cfg: -------------------------------------------------------------------------------- 1 | indent_paren_after_func_decl = true -------------------------------------------------------------------------------- /tests/config/issue_527.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/issue_527.cfg -------------------------------------------------------------------------------- /tests/config/issue_564.cfg: -------------------------------------------------------------------------------- 1 | align_same_func_call_params = true 2 | -------------------------------------------------------------------------------- /tests/config/issue_574.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/issue_574.cfg -------------------------------------------------------------------------------- /tests/config/issue_672.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/issue_672.cfg -------------------------------------------------------------------------------- /tests/config/jdbi-f.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/jdbi-f.cfg -------------------------------------------------------------------------------- /tests/config/jdbi-r.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/jdbi-r.cfg -------------------------------------------------------------------------------- /tests/config/kdepim2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/kdepim2.cfg -------------------------------------------------------------------------------- /tests/config/kdepim3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/kdepim3.cfg -------------------------------------------------------------------------------- /tests/config/kdepim5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/kdepim5.cfg -------------------------------------------------------------------------------- /tests/config/kw_subst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/kw_subst.cfg -------------------------------------------------------------------------------- /tests/config/kw_subst2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/kw_subst2.cfg -------------------------------------------------------------------------------- /tests/config/kw_subst3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/kw_subst3.cfg -------------------------------------------------------------------------------- /tests/config/kw_subst4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/kw_subst4.cfg -------------------------------------------------------------------------------- /tests/config/lambda1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/lambda1.cfg -------------------------------------------------------------------------------- /tests/config/lambda2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/lambda2.cfg -------------------------------------------------------------------------------- /tests/config/lambda3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/lambda3.cfg -------------------------------------------------------------------------------- /tests/config/libd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/libd.cfg -------------------------------------------------------------------------------- /tests/config/long_br_cmt.rerun.cfg: -------------------------------------------------------------------------------- 1 | include "long_br_cmt.cfg" 2 | -------------------------------------------------------------------------------- /tests/config/mod-paren.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/mod-paren.cfg -------------------------------------------------------------------------------- /tests/config/mod_add_long_class_closebrace_comment-1.cfg: -------------------------------------------------------------------------------- 1 | mod_add_long_class_closebrace_comment = 1 -------------------------------------------------------------------------------- /tests/config/mod_full_brace_if_chain_only-t.cfg: -------------------------------------------------------------------------------- 1 | mod_full_brace_if_chain_only = true -------------------------------------------------------------------------------- /tests/config/mono.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/mono.cfg -------------------------------------------------------------------------------- /tests/config/msg-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/msg-header.h -------------------------------------------------------------------------------- /tests/config/nSolve.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/nSolve.cfg -------------------------------------------------------------------------------- /tests/config/nepenthes.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/nepenthes.cfg -------------------------------------------------------------------------------- /tests/config/new-constraint-paren-space.cfg: -------------------------------------------------------------------------------- 1 | sp_after_new=force 2 | -------------------------------------------------------------------------------- /tests/config/new_op_a.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/new_op_a.cfg -------------------------------------------------------------------------------- /tests/config/new_op_f.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/new_op_f.cfg -------------------------------------------------------------------------------- /tests/config/new_op_r.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/new_op_r.cfg -------------------------------------------------------------------------------- /tests/config/nl_before_func_body_def-1.rerun.cfg: -------------------------------------------------------------------------------- 1 | include "nl_before_func_body_def-1.cfg" 2 | -------------------------------------------------------------------------------- /tests/config/nl_endif.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/nl_endif.cfg -------------------------------------------------------------------------------- /tests/config/nl_enum_own_lines-3.rerun.cfg: -------------------------------------------------------------------------------- 1 | include "nl_enum_own_lines-3.cfg" 2 | -------------------------------------------------------------------------------- /tests/config/nl_try-a.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/nl_try-a.cfg -------------------------------------------------------------------------------- /tests/config/nl_type_brace_init_lst_close-f.cfg: -------------------------------------------------------------------------------- 1 | nl_type_brace_init_lst_close = force -------------------------------------------------------------------------------- /tests/config/nl_type_brace_init_lst_close-r.cfg: -------------------------------------------------------------------------------- 1 | nl_type_brace_init_lst_close = remove -------------------------------------------------------------------------------- /tests/config/oc1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc1.cfg -------------------------------------------------------------------------------- /tests/config/oc10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc10.cfg -------------------------------------------------------------------------------- /tests/config/oc11.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc11.cfg -------------------------------------------------------------------------------- /tests/config/oc12.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc12.cfg -------------------------------------------------------------------------------- /tests/config/oc13.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc13.cfg -------------------------------------------------------------------------------- /tests/config/oc14.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc14.cfg -------------------------------------------------------------------------------- /tests/config/oc16.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc16.cfg -------------------------------------------------------------------------------- /tests/config/oc17.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc17.cfg -------------------------------------------------------------------------------- /tests/config/oc18.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc18.cfg -------------------------------------------------------------------------------- /tests/config/oc19.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc19.cfg -------------------------------------------------------------------------------- /tests/config/oc2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc2.cfg -------------------------------------------------------------------------------- /tests/config/oc4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc4.cfg -------------------------------------------------------------------------------- /tests/config/oc5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc5.cfg -------------------------------------------------------------------------------- /tests/config/oc6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc6.cfg -------------------------------------------------------------------------------- /tests/config/oc7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc7.cfg -------------------------------------------------------------------------------- /tests/config/oc8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc8.cfg -------------------------------------------------------------------------------- /tests/config/oc9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/oc9.cfg -------------------------------------------------------------------------------- /tests/config/pawn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/pawn.cfg -------------------------------------------------------------------------------- /tests/config/pp-pragma.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/pp-pragma.cfg -------------------------------------------------------------------------------- /tests/config/pp-space.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/pp-space.cfg -------------------------------------------------------------------------------- /tests/config/pp_ret.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/pp_ret.cfg -------------------------------------------------------------------------------- /tests/config/ptr-arith.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/ptr-arith.cfg -------------------------------------------------------------------------------- /tests/config/qt-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/qt-1.cfg -------------------------------------------------------------------------------- /tests/config/rdan.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/rdan.cfg -------------------------------------------------------------------------------- /tests/config/region-0.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/region-0.cfg -------------------------------------------------------------------------------- /tests/config/region-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/region-1.cfg -------------------------------------------------------------------------------- /tests/config/region-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/region-2.cfg -------------------------------------------------------------------------------- /tests/config/region-3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/region-3.cfg -------------------------------------------------------------------------------- /tests/config/return-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/return-1.cfg -------------------------------------------------------------------------------- /tests/config/return-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/return-2.cfg -------------------------------------------------------------------------------- /tests/config/return-3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/return-3.cfg -------------------------------------------------------------------------------- /tests/config/return-4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/return-4.cfg -------------------------------------------------------------------------------- /tests/config/sef.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/sef.cfg -------------------------------------------------------------------------------- /tests/config/sf537.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/sf537.cfg -------------------------------------------------------------------------------- /tests/config/sf538.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/sf538.cfg -------------------------------------------------------------------------------- /tests/config/sf574.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/sf574.cfg -------------------------------------------------------------------------------- /tests/config/sf607.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/sf607.cfg -------------------------------------------------------------------------------- /tests/config/sim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/sim.cfg -------------------------------------------------------------------------------- /tests/config/sp_after_type_brace_init_lst_open-f.cfg: -------------------------------------------------------------------------------- 1 | sp_after_type_brace_init_lst_open = force -------------------------------------------------------------------------------- /tests/config/sp_after_type_brace_init_lst_open-r.cfg: -------------------------------------------------------------------------------- 1 | sp_after_type_brace_init_lst_open = remove -------------------------------------------------------------------------------- /tests/config/sp_arith-a.cfg: -------------------------------------------------------------------------------- 1 | sp_arith = add 2 | -------------------------------------------------------------------------------- /tests/config/sp_before_type_brace_init_lst_close-f.cfg: -------------------------------------------------------------------------------- 1 | sp_before_type_brace_init_lst_close = force -------------------------------------------------------------------------------- /tests/config/sp_before_type_brace_init_lst_close-r.cfg: -------------------------------------------------------------------------------- 1 | sp_before_type_brace_init_lst_close = remove -------------------------------------------------------------------------------- /tests/config/sp_bool-f.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/sp_bool-f.cfg -------------------------------------------------------------------------------- /tests/config/sp_bool-r.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/sp_bool-r.cfg -------------------------------------------------------------------------------- /tests/config/sp_cmt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/sp_cmt.cfg -------------------------------------------------------------------------------- /tests/config/sp_dc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/sp_dc.cfg -------------------------------------------------------------------------------- /tests/config/sp_inside_type_brace_init_lst-f.cfg: -------------------------------------------------------------------------------- 1 | sp_inside_type_brace_init_lst = force -------------------------------------------------------------------------------- /tests/config/sp_inside_type_brace_init_lst-r.cfg: -------------------------------------------------------------------------------- 1 | sp_inside_type_brace_init_lst = remove -------------------------------------------------------------------------------- /tests/config/staging/UNI-1288.cfg: -------------------------------------------------------------------------------- 1 | include Uncrustify.CSharp.cfg 2 | sp_fparen_brace_initializer=add 3 | -------------------------------------------------------------------------------- /tests/config/staging/UNI-1350.cfg: -------------------------------------------------------------------------------- 1 | include Uncrustify.Cpp.cfg 2 | sp_inside_braces_struct=add 3 | -------------------------------------------------------------------------------- /tests/config/staging/UNI-24076.cfg: -------------------------------------------------------------------------------- 1 | include Uncrustify.CSharp.cfg 2 | mod_paren_on_return=remove -------------------------------------------------------------------------------- /tests/config/staging/UNI-32405.cfg: -------------------------------------------------------------------------------- 1 | include Uncrustify.CSharp.cfg 2 | sp_assign=force 3 | -------------------------------------------------------------------------------- /tests/config/string_replace_tab_chars-t.cfg: -------------------------------------------------------------------------------- 1 | string_replace_tab_chars = true 2 | -------------------------------------------------------------------------------- /tests/config/tab-0-11.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/tab-0-11.cfg -------------------------------------------------------------------------------- /tests/config/tcf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/tcf.cfg -------------------------------------------------------------------------------- /tests/config/type_wrap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/type_wrap.cfg -------------------------------------------------------------------------------- /tests/config/wessex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/wessex.cfg -------------------------------------------------------------------------------- /tests/config/width-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/width-2.cfg -------------------------------------------------------------------------------- /tests/config/width-2.rerun.cfg: -------------------------------------------------------------------------------- 1 | include "width-2.cfg" 2 | -------------------------------------------------------------------------------- /tests/config/width-3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/width-3.cfg -------------------------------------------------------------------------------- /tests/config/width.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/width.cfg -------------------------------------------------------------------------------- /tests/config/xml-str.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/config/xml-str.cfg -------------------------------------------------------------------------------- /tests/cpp.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/cpp.test -------------------------------------------------------------------------------- /tests/d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/d.test -------------------------------------------------------------------------------- /tests/default_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/default_strings.txt -------------------------------------------------------------------------------- /tests/difftest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/difftest.sh -------------------------------------------------------------------------------- /tests/ecma.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/ecma.test -------------------------------------------------------------------------------- /tests/fixtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/fixtest.sh -------------------------------------------------------------------------------- /tests/imported.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/imported.test -------------------------------------------------------------------------------- /tests/input/c/align-equ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/align-equ.c -------------------------------------------------------------------------------- /tests/input/c/align-var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/align-var.c -------------------------------------------------------------------------------- /tests/input/c/align_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/align_attr.c -------------------------------------------------------------------------------- /tests/input/c/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/asm.c -------------------------------------------------------------------------------- /tests/input/c/attribute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/attribute.c -------------------------------------------------------------------------------- /tests/input/c/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bits.c -------------------------------------------------------------------------------- /tests/input/c/bool-pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bool-pos.c -------------------------------------------------------------------------------- /tests/input/c/br_cmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/br_cmt.c -------------------------------------------------------------------------------- /tests/input/c/brace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/brace.c -------------------------------------------------------------------------------- /tests/input/c/braces-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/braces-2.c -------------------------------------------------------------------------------- /tests/input/c/braces-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/braces-3.c -------------------------------------------------------------------------------- /tests/input/c/braces-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/braces-4.c -------------------------------------------------------------------------------- /tests/input/c/braces-5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/braces-5.c -------------------------------------------------------------------------------- /tests/input/c/braces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/braces.c -------------------------------------------------------------------------------- /tests/input/c/bsnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bsnl.c -------------------------------------------------------------------------------- /tests/input/c/bug_1041.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bug_1041.c -------------------------------------------------------------------------------- /tests/input/c/bug_1196.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bug_1196.c -------------------------------------------------------------------------------- /tests/input/c/bug_1702.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bug_1702.c -------------------------------------------------------------------------------- /tests/input/c/bug_1718.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bug_1718.c -------------------------------------------------------------------------------- /tests/input/c/bug_489.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bug_489.c -------------------------------------------------------------------------------- /tests/input/c/bug_671.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bug_671.c -------------------------------------------------------------------------------- /tests/input/c/bug_i_222.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bug_i_222.c -------------------------------------------------------------------------------- /tests/input/c/bug_i_771.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bug_i_771.c -------------------------------------------------------------------------------- /tests/input/c/bug_i_876.c: -------------------------------------------------------------------------------- 1 | #define A 1 2 | -------------------------------------------------------------------------------- /tests/input/c/bugs-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bugs-1.c -------------------------------------------------------------------------------- /tests/input/c/bugs-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bugs-2.c -------------------------------------------------------------------------------- /tests/input/c/bugs-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bugs-3.c -------------------------------------------------------------------------------- /tests/input/c/bugs-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bugs-4.c -------------------------------------------------------------------------------- /tests/input/c/bugs-5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bugs-5.c -------------------------------------------------------------------------------- /tests/input/c/bugs-6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bugs-6.c -------------------------------------------------------------------------------- /tests/input/c/bugs-7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bugs-7.c -------------------------------------------------------------------------------- /tests/input/c/bugs-8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bugs-8.c -------------------------------------------------------------------------------- /tests/input/c/bugs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/bugs.c -------------------------------------------------------------------------------- /tests/input/c/case.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/case.c -------------------------------------------------------------------------------- /tests/input/c/cast_brace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/cast_brace.c -------------------------------------------------------------------------------- /tests/input/c/casts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/casts.c -------------------------------------------------------------------------------- /tests/input/c/cmt-align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/cmt-align.c -------------------------------------------------------------------------------- /tests/input/c/cmt_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/cmt_multi.c -------------------------------------------------------------------------------- /tests/input/c/cmt_nl_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/cmt_nl_end.c -------------------------------------------------------------------------------- /tests/input/c/code_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/code_width.c -------------------------------------------------------------------------------- /tests/input/c/colon-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/colon-asm.c -------------------------------------------------------------------------------- /tests/input/c/cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/cond.c -------------------------------------------------------------------------------- /tests/input/c/deref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/deref.c -------------------------------------------------------------------------------- /tests/input/c/directfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/directfb.h -------------------------------------------------------------------------------- /tests/input/c/dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/dos.c -------------------------------------------------------------------------------- /tests/input/c/else-if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/else-if.c -------------------------------------------------------------------------------- /tests/input/c/empty-for.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/empty-for.c -------------------------------------------------------------------------------- /tests/input/c/endif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/endif.c -------------------------------------------------------------------------------- /tests/input/c/extern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/extern.c -------------------------------------------------------------------------------- /tests/input/c/fcn_indent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/fcn_indent.c -------------------------------------------------------------------------------- /tests/input/c/fcn_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/fcn_type.c -------------------------------------------------------------------------------- /tests/input/c/for-space.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/for-space.c -------------------------------------------------------------------------------- /tests/input/c/freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/freebsd.c -------------------------------------------------------------------------------- /tests/input/c/func_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/func_wrap.c -------------------------------------------------------------------------------- /tests/input/c/funcfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/funcfunc.c -------------------------------------------------------------------------------- /tests/input/c/gh399.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/gh399.c -------------------------------------------------------------------------------- /tests/input/c/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/hello.c -------------------------------------------------------------------------------- /tests/input/c/i1270.c: -------------------------------------------------------------------------------- 1 | #ifdef asm 2 | #endif 3 | /* comment should stay */ -------------------------------------------------------------------------------- /tests/input/c/i1413.c: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /tests/input/c/i1564.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/i1564.c -------------------------------------------------------------------------------- /tests/input/c/i2c-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/i2c-core.c -------------------------------------------------------------------------------- /tests/input/c/if_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/if_chain.c -------------------------------------------------------------------------------- /tests/input/c/ifdef-nest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/ifdef-nest.c -------------------------------------------------------------------------------- /tests/input/c/indent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/indent.cpp -------------------------------------------------------------------------------- /tests/input/c/kw_subst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/kw_subst.c -------------------------------------------------------------------------------- /tests/input/c/lvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/lvalue.c -------------------------------------------------------------------------------- /tests/input/c/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/mac.c -------------------------------------------------------------------------------- /tests/input/c/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/misc.c -------------------------------------------------------------------------------- /tests/input/c/mod-paren.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/mod-paren.c -------------------------------------------------------------------------------- /tests/input/c/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/multi.h -------------------------------------------------------------------------------- /tests/input/c/nl-comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/nl-comment.c -------------------------------------------------------------------------------- /tests/input/c/nl-cont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/nl-cont.c -------------------------------------------------------------------------------- /tests/input/c/nl-cont2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/nl-cont2.c -------------------------------------------------------------------------------- /tests/input/c/nl-ver-def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/nl-ver-def.c -------------------------------------------------------------------------------- /tests/input/c/nl_assign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/nl_assign.c -------------------------------------------------------------------------------- /tests/input/c/nl_endif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/nl_endif.c -------------------------------------------------------------------------------- /tests/input/c/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/output.cpp -------------------------------------------------------------------------------- /tests/input/c/pascal_ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/pascal_ptr.c -------------------------------------------------------------------------------- /tests/input/c/pp-nest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/pp-nest.c -------------------------------------------------------------------------------- /tests/input/c/pp-space.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/pp-space.c -------------------------------------------------------------------------------- /tests/input/c/pp_ret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/pp_ret.c -------------------------------------------------------------------------------- /tests/input/c/pragma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/pragma.c -------------------------------------------------------------------------------- /tests/input/c/pragma_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/pragma_asm.c -------------------------------------------------------------------------------- /tests/input/c/preproc-if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/preproc-if.c -------------------------------------------------------------------------------- /tests/input/c/semicolons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/semicolons.c -------------------------------------------------------------------------------- /tests/input/c/sf588.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/sf588.c -------------------------------------------------------------------------------- /tests/input/c/sf594.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/sf594.c -------------------------------------------------------------------------------- /tests/input/c/string_utf8.c: -------------------------------------------------------------------------------- 1 | char* x = "中国語 (繁体)"; 2 | -------------------------------------------------------------------------------- /tests/input/c/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/switch.c -------------------------------------------------------------------------------- /tests/input/c/t3.in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/t3.in.c -------------------------------------------------------------------------------- /tests/input/c/type-cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/type-cast.c -------------------------------------------------------------------------------- /tests/input/c/type_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/type_wrap.c -------------------------------------------------------------------------------- /tests/input/c/vardefcol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/vardefcol.c -------------------------------------------------------------------------------- /tests/input/c/vb-do.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/vb-do.c -------------------------------------------------------------------------------- /tests/input/c/vb-pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/vb-pp.c -------------------------------------------------------------------------------- /tests/input/c/vb-while.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/vb-while.c -------------------------------------------------------------------------------- /tests/input/c/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/c/xml.c -------------------------------------------------------------------------------- /tests/input/cpp/DB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/DB.cpp -------------------------------------------------------------------------------- /tests/input/cpp/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/Example.h -------------------------------------------------------------------------------- /tests/input/cpp/PR326_invalid-backslash-eol-csharp.cpp: -------------------------------------------------------------------------------- 1 | // test \ 2 | blah() 3 | -------------------------------------------------------------------------------- /tests/input/cpp/Q_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/Q_2.cpp -------------------------------------------------------------------------------- /tests/input/cpp/Q_EMIT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/Q_EMIT.cpp -------------------------------------------------------------------------------- /tests/input/cpp/al.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/al.cpp -------------------------------------------------------------------------------- /tests/input/cpp/av.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/av.h -------------------------------------------------------------------------------- /tests/input/cpp/bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/bool.cpp -------------------------------------------------------------------------------- /tests/input/cpp/bug_1001.cpp: -------------------------------------------------------------------------------- 1 | template< > 2 | struct Bar< false > : Foo 3 | { 4 | }; 5 | -------------------------------------------------------------------------------- /tests/input/cpp/bug_1032.cpp: -------------------------------------------------------------------------------- 1 | int variable1 = items_array[index()]; 2 | -------------------------------------------------------------------------------- /tests/input/cpp/bug_1346.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/bug_1346.h -------------------------------------------------------------------------------- /tests/input/cpp/bug_1649.cpp: -------------------------------------------------------------------------------- 1 | Foo() 2 | noexcept () 3 | {} 4 | -------------------------------------------------------------------------------- /tests/input/cpp/bug_472.cpp: -------------------------------------------------------------------------------- 1 | // comment 2 | void 3 | func( dbgTrace, (void) ); 4 | -------------------------------------------------------------------------------- /tests/input/cpp/bug_664.cpp: -------------------------------------------------------------------------------- 1 | bool dllInit = 2 | []() 3 | //34567890 4 | { 5 | }(); 6 | 7 | -------------------------------------------------------------------------------- /tests/input/cpp/bug_670.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/bug_670.h -------------------------------------------------------------------------------- /tests/input/cpp/bug_671.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/bug_671.h -------------------------------------------------------------------------------- /tests/input/cpp/bug_i_197.cpp: -------------------------------------------------------------------------------- 1 | struct A {int a;}; 2 | -------------------------------------------------------------------------------- /tests/input/cpp/bug_i_646.cpp: -------------------------------------------------------------------------------- 1 | friend class ::MultiLabelMeshPipeline; 2 | -------------------------------------------------------------------------------- /tests/input/cpp/bug_i_682.h: -------------------------------------------------------------------------------- 1 | void foo() 2 | { 3 | return [=](T* t) { }; 4 | } 5 | -------------------------------------------------------------------------------- /tests/input/cpp/bug_i_889.cpp: -------------------------------------------------------------------------------- 1 | boost::iostreams::mapped_file_source pdf((LPSTR) ATL::CW2A(sTemp)); 2 | -------------------------------------------------------------------------------- /tests/input/cpp/byref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/byref.cpp -------------------------------------------------------------------------------- /tests/input/cpp/cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/cast.cpp -------------------------------------------------------------------------------- /tests/input/cpp/casts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/casts.cpp -------------------------------------------------------------------------------- /tests/input/cpp/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/class.h -------------------------------------------------------------------------------- /tests/input/cpp/cout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/cout.cpp -------------------------------------------------------------------------------- /tests/input/cpp/cpp17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/cpp17.cpp -------------------------------------------------------------------------------- /tests/input/cpp/delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/delete.cpp -------------------------------------------------------------------------------- /tests/input/cpp/deref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/deref.cpp -------------------------------------------------------------------------------- /tests/input/cpp/enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/enum.cpp -------------------------------------------------------------------------------- /tests/input/cpp/extern_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/extern_c.h -------------------------------------------------------------------------------- /tests/input/cpp/gh555.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/gh555.cpp -------------------------------------------------------------------------------- /tests/input/cpp/goto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/goto.cpp -------------------------------------------------------------------------------- /tests/input/cpp/i1082.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/i1082.cpp -------------------------------------------------------------------------------- /tests/input/cpp/i1165.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/i1165.cpp -------------------------------------------------------------------------------- /tests/input/cpp/i1181.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/i1181.cpp -------------------------------------------------------------------------------- /tests/input/cpp/i1207.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/i1207.cpp -------------------------------------------------------------------------------- /tests/input/cpp/i1218.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/i1218.cpp -------------------------------------------------------------------------------- /tests/input/cpp/i1464.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/i1464.cpp -------------------------------------------------------------------------------- /tests/input/cpp/i1466.cpp: -------------------------------------------------------------------------------- 1 | A a = {this->r * cos(b)}; -------------------------------------------------------------------------------- /tests/input/cpp/i1509.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/i1509.cpp -------------------------------------------------------------------------------- /tests/input/cpp/i1516.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/i1516.cpp -------------------------------------------------------------------------------- /tests/input/cpp/i1536.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/i1536.cpp -------------------------------------------------------------------------------- /tests/input/cpp/i1565.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/i1565.cpp -------------------------------------------------------------------------------- /tests/input/cpp/i1617.cpp: -------------------------------------------------------------------------------- 1 | namespace 2 | { 3 | void f(){ 4 | }; 5 | } -------------------------------------------------------------------------------- /tests/input/cpp/i1768.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/i1768.cpp -------------------------------------------------------------------------------- /tests/input/cpp/i683.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/i683.cpp -------------------------------------------------------------------------------- /tests/input/cpp/indent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/indent.cpp -------------------------------------------------------------------------------- /tests/input/cpp/lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/lambda.cpp -------------------------------------------------------------------------------- /tests/input/cpp/macro_spaces.cpp: -------------------------------------------------------------------------------- 1 | #if (WINVER < 0x0601) 2 | #endif -------------------------------------------------------------------------------- /tests/input/cpp/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/misc.cpp -------------------------------------------------------------------------------- /tests/input/cpp/misc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/misc2.cpp -------------------------------------------------------------------------------- /tests/input/cpp/misc3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/misc3.cpp -------------------------------------------------------------------------------- /tests/input/cpp/misc4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/misc4.cpp -------------------------------------------------------------------------------- /tests/input/cpp/misc5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/misc5.cpp -------------------------------------------------------------------------------- /tests/input/cpp/misc6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/misc6.cpp -------------------------------------------------------------------------------- /tests/input/cpp/mod_remove_empty_return.cpp: -------------------------------------------------------------------------------- 1 | void a() 2 | { 3 | return; 4 | } 5 | -------------------------------------------------------------------------------- /tests/input/cpp/new_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/new_op.cpp -------------------------------------------------------------------------------- /tests/input/cpp/nl-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/nl-class.h -------------------------------------------------------------------------------- /tests/input/cpp/nl_func_call_empty.cpp: -------------------------------------------------------------------------------- 1 | SomeFunction 2 | ( 3 | ); -------------------------------------------------------------------------------- /tests/input/cpp/nl_func_call_paren_empty.cpp: -------------------------------------------------------------------------------- 1 | SomeFunction 2 | ( 3 | ); -------------------------------------------------------------------------------- /tests/input/cpp/nl_func_scope_name.cpp: -------------------------------------------------------------------------------- 1 | void A::f() 2 | {} 3 | -------------------------------------------------------------------------------- /tests/input/cpp/patch_32.cpp: -------------------------------------------------------------------------------- 1 | //! test 2 | -------------------------------------------------------------------------------- /tests/input/cpp/qt-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/qt-1.cpp -------------------------------------------------------------------------------- /tests/input/cpp/qtargs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/qtargs.cpp -------------------------------------------------------------------------------- /tests/input/cpp/region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/region.cpp -------------------------------------------------------------------------------- /tests/input/cpp/sef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/sef.cpp -------------------------------------------------------------------------------- /tests/input/cpp/sf557.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/sf557.cpp -------------------------------------------------------------------------------- /tests/input/cpp/sf562.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/sf562.cpp -------------------------------------------------------------------------------- /tests/input/cpp/sf567.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/sf567.cpp -------------------------------------------------------------------------------- /tests/input/cpp/sf574.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/sf574.cpp -------------------------------------------------------------------------------- /tests/input/cpp/sf583.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/sf583.cpp -------------------------------------------------------------------------------- /tests/input/cpp/sf593.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/sf593.cpp -------------------------------------------------------------------------------- /tests/input/cpp/sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/sim.h -------------------------------------------------------------------------------- /tests/input/cpp/static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/static.h -------------------------------------------------------------------------------- /tests/input/cpp/tab-0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/tab-0.cpp -------------------------------------------------------------------------------- /tests/input/cpp/tab-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cpp/tab-1.cpp -------------------------------------------------------------------------------- /tests/input/cs/UNI-1288.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-1288.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-1333.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-1333.mm -------------------------------------------------------------------------------- /tests/input/cs/UNI-1338.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-1338.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-1343.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-1343.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-1345.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-1345.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-1919.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-1919.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-1975.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-1975.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-1977.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-1977.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-1978.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-1978.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-2007.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-2007.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-2008.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-2008.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-2020.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-2020.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-2021.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-2021.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-2505.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-2505.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-2506.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-2506.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-2684.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-2684.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-2685.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-2685.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-3083.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-3083.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-3484.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-3484.cs -------------------------------------------------------------------------------- /tests/input/cs/UNI-9917.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/UNI-9917.cs -------------------------------------------------------------------------------- /tests/input/cs/argtypes.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/argtypes.mm -------------------------------------------------------------------------------- /tests/input/cs/bug_1591.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/bug_1591.cs -------------------------------------------------------------------------------- /tests/input/cs/bug_1620.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/bug_1620.cs -------------------------------------------------------------------------------- /tests/input/cs/bug_1637.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/bug_1637.cs -------------------------------------------------------------------------------- /tests/input/cs/bug_1650.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/bug_1650.cs -------------------------------------------------------------------------------- /tests/input/cs/bug_600.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/bug_600.cs -------------------------------------------------------------------------------- /tests/input/cs/bug_620.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/bug_620.cs -------------------------------------------------------------------------------- /tests/input/cs/casting.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/casting.mm -------------------------------------------------------------------------------- /tests/input/cs/delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/delegate.cs -------------------------------------------------------------------------------- /tests/input/cs/generics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/generics.cs -------------------------------------------------------------------------------- /tests/input/cs/getset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/getset.cs -------------------------------------------------------------------------------- /tests/input/cs/gs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/gs.cs -------------------------------------------------------------------------------- /tests/input/cs/logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/logger.cs -------------------------------------------------------------------------------- /tests/input/cs/newlines.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/newlines.mm -------------------------------------------------------------------------------- /tests/input/cs/property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/property.cs -------------------------------------------------------------------------------- /tests/input/cs/region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/region.cs -------------------------------------------------------------------------------- /tests/input/cs/sf607.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/sf607.cs -------------------------------------------------------------------------------- /tests/input/cs/sf628.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/sf628.cs -------------------------------------------------------------------------------- /tests/input/cs/simple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/simple.cs -------------------------------------------------------------------------------- /tests/input/cs/strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/strings.cs -------------------------------------------------------------------------------- /tests/input/cs/tcf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/tcf.cs -------------------------------------------------------------------------------- /tests/input/cs/unsafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/unsafe.cs -------------------------------------------------------------------------------- /tests/input/cs/utf16be.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/utf16be.cs -------------------------------------------------------------------------------- /tests/input/cs/utf16le.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/utf16le.cs -------------------------------------------------------------------------------- /tests/input/cs/when.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/cs/when.cs -------------------------------------------------------------------------------- /tests/input/d/HashMap.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/HashMap.d -------------------------------------------------------------------------------- /tests/input/d/Lexer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/Lexer.d -------------------------------------------------------------------------------- /tests/input/d/bug-indent.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/bug-indent.d -------------------------------------------------------------------------------- /tests/input/d/casts.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/casts.d -------------------------------------------------------------------------------- /tests/input/d/const.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/const.d -------------------------------------------------------------------------------- /tests/input/d/delegate.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/delegate.d -------------------------------------------------------------------------------- /tests/input/d/enum.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/enum.d -------------------------------------------------------------------------------- /tests/input/d/funcfunc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/funcfunc.d -------------------------------------------------------------------------------- /tests/input/d/imports.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/imports.d -------------------------------------------------------------------------------- /tests/input/d/numbers.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/numbers.d -------------------------------------------------------------------------------- /tests/input/d/strings.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/strings.d -------------------------------------------------------------------------------- /tests/input/d/template.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/template.d -------------------------------------------------------------------------------- /tests/input/d/tst01.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/tst01.d -------------------------------------------------------------------------------- /tests/input/d/tst02.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/tst02.d -------------------------------------------------------------------------------- /tests/input/d/tst03.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/tst03.d -------------------------------------------------------------------------------- /tests/input/d/volatile.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/d/volatile.d -------------------------------------------------------------------------------- /tests/input/oc/asm.h.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/asm.h.mm -------------------------------------------------------------------------------- /tests/input/oc/blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/blocks.m -------------------------------------------------------------------------------- /tests/input/oc/box.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/box.m -------------------------------------------------------------------------------- /tests/input/oc/bug_340.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/bug_340.m -------------------------------------------------------------------------------- /tests/input/oc/bug_404.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/bug_404.m -------------------------------------------------------------------------------- /tests/input/oc/bug_497.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/bug_497.m -------------------------------------------------------------------------------- /tests/input/oc/bug_841.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/bug_841.m -------------------------------------------------------------------------------- /tests/input/oc/cast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/cast.m -------------------------------------------------------------------------------- /tests/input/oc/for.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/for.m -------------------------------------------------------------------------------- /tests/input/oc/for2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/for2.m -------------------------------------------------------------------------------- /tests/input/oc/gh137.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/gh137.m -------------------------------------------------------------------------------- /tests/input/oc/gh293.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/gh293.m -------------------------------------------------------------------------------- /tests/input/oc/gh511.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/gh511.m -------------------------------------------------------------------------------- /tests/input/oc/i1213.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/i1213.m -------------------------------------------------------------------------------- /tests/input/oc/kw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/kw.m -------------------------------------------------------------------------------- /tests/input/oc/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/main.m -------------------------------------------------------------------------------- /tests/input/oc/misc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/misc.m -------------------------------------------------------------------------------- /tests/input/oc/msg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/msg.m -------------------------------------------------------------------------------- /tests/input/oc/nelem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/nelem.m -------------------------------------------------------------------------------- /tests/input/oc/ns_enum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/ns_enum.m -------------------------------------------------------------------------------- /tests/input/oc/objc.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/objc.mm -------------------------------------------------------------------------------- /tests/input/oc/pp_bool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/pp_bool.m -------------------------------------------------------------------------------- /tests/input/oc/string.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/string.m -------------------------------------------------------------------------------- /tests/input/oc/ternary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/ternary.m -------------------------------------------------------------------------------- /tests/input/oc/typeof.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/input/oc/typeof.m -------------------------------------------------------------------------------- /tests/input/staging/PR326_invalid-backslash-eol-csharp.cpp: -------------------------------------------------------------------------------- 1 | // test \ 2 | blah() 3 | -------------------------------------------------------------------------------- /tests/input/staging/PR326_invalid-backslash-eol-csharp.cs: -------------------------------------------------------------------------------- 1 | // test \ 2 | blah() 3 | -------------------------------------------------------------------------------- /tests/input/staging/macro_spaces.cpp: -------------------------------------------------------------------------------- 1 | #if (WINVER < 0x0601) 2 | #endif -------------------------------------------------------------------------------- /tests/java - Copy.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/java - Copy.test -------------------------------------------------------------------------------- /tests/java.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/java.test -------------------------------------------------------------------------------- /tests/objective-c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/objective-c.test -------------------------------------------------------------------------------- /tests/output/c/02440-string_utf8.c: -------------------------------------------------------------------------------- 1 | char* x = "中国語 (繁体)"; 2 | -------------------------------------------------------------------------------- /tests/output/c/09610-bug_i_876.c: -------------------------------------------------------------------------------- 1 | #define A 1 2 | -------------------------------------------------------------------------------- /tests/output/c/09613-i1413.c: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /tests/output/c/10005-i1270.c: -------------------------------------------------------------------------------- 1 | #ifdef asm 2 | #endif 3 | /* comment should stay */ -------------------------------------------------------------------------------- /tests/output/cpp/10008-PR326_invalid-backslash-eol-csharp.cpp: -------------------------------------------------------------------------------- 1 | // test \ 2 | // blah() 3 | -------------------------------------------------------------------------------- /tests/output/cpp/10020-macro_spaces.cpp: -------------------------------------------------------------------------------- 1 | #if (WINVER < 0x0601) 2 | #endif 3 | -------------------------------------------------------------------------------- /tests/output/cpp/30044-nl_func_call_paren_empty.cpp: -------------------------------------------------------------------------------- 1 | SomeFunction( 2 | ); -------------------------------------------------------------------------------- /tests/output/cpp/30068-nl_func_scope_name.cpp: -------------------------------------------------------------------------------- 1 | void A 2 | ::f() 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /tests/output/cpp/30070-nl_func_scope_name.cpp: -------------------------------------------------------------------------------- 1 | void A:: 2 | f() 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /tests/output/cpp/30091-bug_472.cpp: -------------------------------------------------------------------------------- 1 | // comment 2 | void func( dbgTrace, (void) ); 3 | -------------------------------------------------------------------------------- /tests/output/cpp/30712-bug_1158.cpp: -------------------------------------------------------------------------------- 1 | void Class1::Func(void) 2 | { 3 | while (Next()); 4 | } 5 | -------------------------------------------------------------------------------- /tests/output/cpp/33008-NewLine.cpp: -------------------------------------------------------------------------------- 1 | { 2 | /* 3 | * test for new lines, everywhere 4 | */ 5 | } -------------------------------------------------------------------------------- /tests/output/cpp/33009-NewLine0.cpp: -------------------------------------------------------------------------------- 1 | 2 | { 3 | /* 4 | * test for new lines, everywhere 5 | */ 6 | } 7 | -------------------------------------------------------------------------------- /tests/output/cpp/33035-patch_32.cpp: -------------------------------------------------------------------------------- 1 | /*! test */ 2 | -------------------------------------------------------------------------------- /tests/output/cpp/33039-mod_remove_empty_return.cpp: -------------------------------------------------------------------------------- 1 | void a() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tests/output/cpp/33088-bug_i_197.cpp: -------------------------------------------------------------------------------- 1 | struct A {int a;}; 2 | -------------------------------------------------------------------------------- /tests/output/cpp/33093-bug_i_322.cpp: -------------------------------------------------------------------------------- 1 | STDMETHOD(GetValues)(BSTR bsName, REFDATA** pData); 2 | -------------------------------------------------------------------------------- /tests/output/cpp/33105-bug_1001.cpp: -------------------------------------------------------------------------------- 1 | template< > 2 | struct Bar< false > : Foo 3 | { 4 | }; 5 | -------------------------------------------------------------------------------- /tests/output/cpp/34002-bug_i_793.cpp: -------------------------------------------------------------------------------- 1 | static void h() 2 | { 3 | typedef int IntGroup; 4 | } 5 | -------------------------------------------------------------------------------- /tests/output/cpp/34101-bug_i_646.cpp: -------------------------------------------------------------------------------- 1 | friend class ::MultiLabelMeshPipeline; 2 | -------------------------------------------------------------------------------- /tests/output/cpp/34112-bug_i_889.cpp: -------------------------------------------------------------------------------- 1 | boost::iostreams::mapped_file_source pdf((LPSTR)ATL::CW2A(sTemp)); 2 | -------------------------------------------------------------------------------- /tests/output/cpp/34150-bug_1032.cpp: -------------------------------------------------------------------------------- 1 | int variable1 = items_array[index()]; 2 | -------------------------------------------------------------------------------- /tests/output/cpp/34174-i1466.cpp: -------------------------------------------------------------------------------- 1 | A a = {this->r * cos(b)}; -------------------------------------------------------------------------------- /tests/output/cpp/34251-bug_1649.cpp: -------------------------------------------------------------------------------- 1 | Foo() 2 | noexcept() 3 | {} 4 | -------------------------------------------------------------------------------- /tests/output/cs/10130-sp_between_new_paren.cs: -------------------------------------------------------------------------------- 1 | T F() where T : new() 2 | { 3 | return new T(); 4 | } 5 | -------------------------------------------------------------------------------- /tests/output/staging/10008-PR326_invalid-backslash-eol-csharp.cpp: -------------------------------------------------------------------------------- 1 | // test \ 2 | // blah() 3 | -------------------------------------------------------------------------------- /tests/output/staging/10017-PR326_invalid-backslash-eol-csharp.cs: -------------------------------------------------------------------------------- 1 | // test \ 2 | // blah() 3 | -------------------------------------------------------------------------------- /tests/output/staging/10020-macro_spaces.cpp: -------------------------------------------------------------------------------- 1 | #if (WINVER < 0x0601) 2 | #endif 3 | -------------------------------------------------------------------------------- /tests/pawn.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/pawn.test -------------------------------------------------------------------------------- /tests/regression.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/regression.test -------------------------------------------------------------------------------- /tests/rejected.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/rejected.test -------------------------------------------------------------------------------- /tests/run_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/run_test.cmake -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/run_tests.py -------------------------------------------------------------------------------- /tests/staging.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/staging.test -------------------------------------------------------------------------------- /tests/tests.vpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/tests.vpj -------------------------------------------------------------------------------- /tests/vala.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/tests/vala.test -------------------------------------------------------------------------------- /uncrustify.vpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/uncrustify.vpj -------------------------------------------------------------------------------- /uncrustify.vpw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/uncrustify.vpw -------------------------------------------------------------------------------- /win32/uncrustify.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/win32/uncrustify.natvis -------------------------------------------------------------------------------- /working.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/uncrustify/HEAD/working.txt --------------------------------------------------------------------------------