Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>pull/5/head
parent
f312c235ea
commit
e6ba08c3b2
@ -1,14 +0,0 @@
|
|||||||
Backported commit cb1a42dd from upstream git repository. This fixes FTBFS when building with RelWithDebInfo.
|
|
||||||
--- a/tests/cli/test_cli_options.py
|
|
||||||
+++ b/tests/cli/test_cli_options.py
|
|
||||||
@@ -705,8 +705,8 @@
|
|
||||||
#
|
|
||||||
# Test --tracking_space FILE
|
|
||||||
#
|
|
||||||
- if parsed_args.config == 'Release':
|
|
||||||
- eprint("Release")
|
|
||||||
+ if parsed_args.config == 'Release' or parsed_args.config == 'RelWithDebInfo':
|
|
||||||
+ eprint(parsed_args.config)
|
|
||||||
if not check_uncrustify_output(
|
|
||||||
uncr_bin,
|
|
||||||
parsed_args,
|
|
@ -1,22 +0,0 @@
|
|||||||
Fix Python detection on CMake < 3.12.
|
|
||||||
===================================================================
|
|
||||||
--- uncrustify-trinity-0.73.0.orig/CMakeLists.txt
|
|
||||||
+++ uncrustify-trinity-0.73.0/CMakeLists.txt
|
|
||||||
@@ -17,8 +17,15 @@ include(CheckCXXSymbolExists)
|
|
||||||
include(CheckTypeSize)
|
|
||||||
include(CTest)
|
|
||||||
|
|
||||||
-find_package(Python3 REQUIRED)
|
|
||||||
-set(PYTHON_EXECUTABLE ${Python3_EXECUTABLE})
|
|
||||||
+if( ${CMAKE_VERSION} VERSION_LESS "3.12" )
|
|
||||||
+ find_package( PythonInterp )
|
|
||||||
+ if( NOT PYTHON_EXECUTABLE )
|
|
||||||
+ message( FATAL_ERROR "Python is required, but was not found on your system" )
|
|
||||||
+ endif()
|
|
||||||
+ else( )
|
|
||||||
+ find_package(Python3 REQUIRED)
|
|
||||||
+ set(PYTHON_EXECUTABLE ${Python3_EXECUTABLE})
|
|
||||||
+endif()
|
|
||||||
|
|
||||||
#
|
|
||||||
# Check compiler flags
|
|
@ -1,63 +0,0 @@
|
|||||||
/**
|
|
||||||
* @file log_rules.h
|
|
||||||
* prototypes for log_rules.cpp
|
|
||||||
*
|
|
||||||
* @author Guy Maurel
|
|
||||||
* @license GPL v2+
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef LOG_RULES_H_INCLUDED
|
|
||||||
#define LOG_RULES_H_INCLUDED
|
|
||||||
|
|
||||||
#include "chunk_list.h"
|
|
||||||
#include "uncrustify.h"
|
|
||||||
|
|
||||||
using namespace uncrustify;
|
|
||||||
|
|
||||||
#if defined DEBUG
|
|
||||||
#define log_rule(rule) \
|
|
||||||
do { \
|
|
||||||
log_rule2(__func__, __LINE__, (rule), first, second); \
|
|
||||||
log_rule4((rule), first); \
|
|
||||||
\
|
|
||||||
} while (0)
|
|
||||||
#else
|
|
||||||
#define log_rule(rule) \
|
|
||||||
do { \
|
|
||||||
log_rule2(__func__, __LINE__, (rule), first, second); \
|
|
||||||
} while (0)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define log_rule_short(rule) \
|
|
||||||
do { \
|
|
||||||
log_rule2(__func__, __LINE__, (rule), first, second); \
|
|
||||||
} while (0)
|
|
||||||
|
|
||||||
// if you need more debug informations, remove the comment at the next line
|
|
||||||
#define SUPER_LOG 1
|
|
||||||
#ifdef SUPER_LOG
|
|
||||||
#define log_rule_B(rule) \
|
|
||||||
do { \
|
|
||||||
log_rule3(LCURRENT, __func__, __LINE__, (rule)); \
|
|
||||||
} while (0)
|
|
||||||
#else
|
|
||||||
#define log_rule_B(rule) \
|
|
||||||
do { \
|
|
||||||
log_rule3(LCURRENT, __func__, (rule)); \
|
|
||||||
} while (0)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void log_rule2(const char *func, size_t line, const char *rule, chunk_t *first, chunk_t *second);
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef SUPER_LOG
|
|
||||||
void log_rule3(log_sev_t sev, const char *func, size_t line, const char *rule);
|
|
||||||
|
|
||||||
#else
|
|
||||||
void log_rule3(log_sev_t sev, const char *func, const char *rule);
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void log_rule4(const char *rule, chunk_t *first);
|
|
||||||
|
|
||||||
#endif /* LOG_RULES_H_INCLUDED */
|
|
@ -1,144 +0,0 @@
|
|||||||
#
|
|
||||||
# Test cases specifically for the C# language.
|
|
||||||
#
|
|
||||||
# Range: 10000 - 19999
|
|
||||||
# test.name config.file input.file
|
|
||||||
|
|
||||||
10000 mono.cfg cs/simple.cs
|
|
||||||
10001 getset.cfg cs/getset.cs
|
|
||||||
10002 ben_032.cfg cs/simple.cs
|
|
||||||
10003 ben_033.cfg cs/region.cs
|
|
||||||
10010 ben_034.cfg cs/var-member.cs
|
|
||||||
10011 indent_columns-3.cfg cs/strings.cs
|
|
||||||
10013 625_where-constraints.cfg cs/625_where-constraints.cs
|
|
||||||
|
|
||||||
10020 region-0.cfg cs/region.cs
|
|
||||||
10021 region-1.cfg cs/region.cs
|
|
||||||
10022 region-2.cfg cs/region.cs
|
|
||||||
10023 region-3.cfg cs/region.cs
|
|
||||||
|
|
||||||
10030 sort_imports.cfg cs/sort_using.cs
|
|
||||||
10031 mod_sort_using-t.cfg cs/bug_i_935.cs
|
|
||||||
10032 sort_using_categ.cfg cs/sort_using_categ.cs
|
|
||||||
|
|
||||||
10040 tcf.cfg cs/tcf.cs
|
|
||||||
10041 tcf.cfg cs/gs.cs
|
|
||||||
10042 ben_036.cfg cs/exception-filters.cs
|
|
||||||
|
|
||||||
10050 cs_generics.cfg cs/generics.cs
|
|
||||||
|
|
||||||
10060 ben_037.cfg cs/unsafe.cs
|
|
||||||
10065 UNI-1975.cfg cs/UNI-1975.cs
|
|
||||||
|
|
||||||
10070 ben_038.cfg cs/utf16le.cs
|
|
||||||
10071 ben_038.cfg cs/utf16be.cs
|
|
||||||
10072 ben_038.cfg cs/utf16le_no_bom.cs
|
|
||||||
10073 ben_038.cfg cs/utf16be_no_bom.cs
|
|
||||||
10074 UNI-2020.cfg cs/UNI-2020.cs
|
|
||||||
|
|
||||||
10080 ben_042.cfg cs/property.cs
|
|
||||||
|
|
||||||
10090 ben_043.cfg cs/string_multi.cs
|
|
||||||
|
|
||||||
10100 empty.cfg cs/bug_600.cs
|
|
||||||
10101 sf607.cfg cs/sf607.cs
|
|
||||||
|
|
||||||
10110 mda_space_a.cfg cs/mdarray_space.cs
|
|
||||||
10111 sp_after_comma-a.cfg cs/mdarray_space.cs
|
|
||||||
10112 mda_space_c.cfg cs/mdarray_space.cs
|
|
||||||
|
|
||||||
10119 empty.cfg cs/preserveTabs.cs
|
|
||||||
10120 empty.cfg cs/cmt_backslash_eol.cs
|
|
||||||
|
|
||||||
10130 sp_between_new_paren.cfg cs/sp_between_new_paren.cs
|
|
||||||
|
|
||||||
10140 ben_044.cfg cs/remove_semi.cs
|
|
||||||
|
|
||||||
10150 ben_045.cfg cs/operator-null-conditional.cs
|
|
||||||
10151 sp_assign-a.cfg cs/operator_null-coalescing-assignment.cs
|
|
||||||
|
|
||||||
10200 empty.cfg cs/logger.cs
|
|
||||||
|
|
||||||
10300 empty.cfg cs/1822.cs
|
|
||||||
|
|
||||||
10628 empty.cfg cs/sf628.cs
|
|
||||||
10160 empty.cfg cs/delegate.cs
|
|
||||||
10161 indent_cs_delegate_brace-t.cfg cs/delegate.cs
|
|
||||||
12001 bug_620.cfg cs/bug_620.cs
|
|
||||||
12002 empty.cfg cs/nullable_prop.cs
|
|
||||||
12003 ben_043.cfg cs/fncall_as_ctor_in_attr.cs
|
|
||||||
12004 verbatim_strings.cfg cs/verbatim_strings.cs
|
|
||||||
12005 empty.cfg cs/bug_1591.cs
|
|
||||||
|
|
||||||
12101 indent_using_block-f.cfg cs/bug_i_679.cs
|
|
||||||
|
|
||||||
12102 mod_full_brace_nl_block_rem_mlcond-0.cfg cs/mod_full_brace_nl_block_rem_mlcond.cs
|
|
||||||
12103 mod_full_brace_nl_block_rem_mlcond-1.cfg cs/mod_full_brace_nl_block_rem_mlcond.cs
|
|
||||||
12104 bug_1637.cfg cs/bug_1637.cs
|
|
||||||
12105 bug_1650.cfg cs/bug_1650.cs
|
|
||||||
12106 bug_1650.cfg cs/UNI-40685.cs
|
|
||||||
12107 mod_full_paren_if_bool.cfg cs/mod_full_paren_if_bool.cs
|
|
||||||
12108 Issue_2705.cfg cs/Issue_2705.cs
|
|
||||||
|
|
||||||
# Adopt some UT tests
|
|
||||||
10012 empty.cfg cs/621_this-spacing.cs
|
|
||||||
10014 empty.cfg cs/630_bad-new-init-semicolon-removal.cs
|
|
||||||
10015 misc-failures.cfg cs/misc-failures.cs
|
|
||||||
10016 new-constraint-paren-space.cfg cs/new-constraint-paren-space.cs
|
|
||||||
10018 empty.cfg cs/delete-space-oc.mm
|
|
||||||
10019 empty.cfg cs/func-param-wrap-oc.mm
|
|
||||||
10027 U01-Cs.cfg cs/oneline_property.cs
|
|
||||||
10028 U02-Cs.cfg cs/ifcolalign.cs
|
|
||||||
10029 U03-Cs.cfg cs/when.cs
|
|
||||||
10033 U11-Cpp.cfg cs/objc.mm
|
|
||||||
10034 U12-Cpp.cfg cs/asm.h.mm
|
|
||||||
10035 U13-Cpp.cfg cs/definesalign.h.mm
|
|
||||||
10036 U14-Cpp.cfg cs/inttypes.h.mm
|
|
||||||
10039 615_nested_usings.cfg cs/615_nested-usings.cs
|
|
||||||
10044 U04-Cs.cfg cs/ifcomment.cs
|
|
||||||
10045 UNI-1288.cfg cs/UNI-1288.cs
|
|
||||||
10046 U15-Cpp.cfg cs/UNI-1333.mm
|
|
||||||
10051 UNI-1338.cfg cs/UNI-1338.cs
|
|
||||||
10055 U06-Cs.cfg cs/UNI-1345.cs
|
|
||||||
10066 UNI-1977.cfg cs/UNI-1977.cs
|
|
||||||
10067 UNI-1978.cfg cs/UNI-1978.cs
|
|
||||||
10075 UNI-2021.cfg cs/UNI-2021.cs
|
|
||||||
10076 UNI-1343.cfg cs/UNI-1343.cs
|
|
||||||
10077 U09-Cs.cfg cs/UNI-1919.cs
|
|
||||||
10078 U10-Cs.cfg cs/UNI-3484.cs
|
|
||||||
10102 U24-Cpp.cfg cs/pp-ignore.mm
|
|
||||||
10103 U11-Cs.cfg cs/UNI-2506.cs
|
|
||||||
10104 empty.cfg cs/UNI-2505.cs
|
|
||||||
11011 620_getset-brace.cfg cs/620_getset-brace.cs
|
|
||||||
11030 U08-Cpp.cfg cs/argtypes.mm
|
|
||||||
11031 U09-Cpp.cfg cs/casting.mm
|
|
||||||
11032 U10-Cpp.cfg cs/newlines.mm
|
|
||||||
11072 U07-Cs.cfg cs/UNI-2007.cs
|
|
||||||
11073 U08-Cs.cfg cs/UNI-2008.cs
|
|
||||||
20010 UNI-32658.cfg cs/UNI-32658.cs
|
|
||||||
20011 bug_1620.cfg cs/bug_1620.cs
|
|
||||||
|
|
||||||
60004 UNI-2684.cfg cs/UNI-2684.cs
|
|
||||||
60005 UNI-2685.cfg cs/UNI-2685.cs
|
|
||||||
60007 UNI-3083.cfg cs/UNI-3083.cs
|
|
||||||
60008 U-J.cfg cs/UNI-17253.cs
|
|
||||||
60009 UNI-9917.cfg cs/UNI-9917.cs
|
|
||||||
60011 UNI-11095.cfg cs/UNI-11095.mm
|
|
||||||
60012 U13-Cs.cfg cs/UNI-12303.cs
|
|
||||||
60013 UNI-13955.cfg cs/UNI-13955.cs
|
|
||||||
60015 UNI-14131.cfg cs/UNI-14131.cs
|
|
||||||
60016 UNI-11662.cfg cs/UNI-11662.cs
|
|
||||||
60018 UNI-18777.cfg cs/UNI-18777.cs
|
|
||||||
60019 empty.cfg cs/UNI-18780.cs
|
|
||||||
60020 UNI-18829.cfg cs/UNI-18829.cs
|
|
||||||
60023 UNI-18437.cfg cs/UNI-18437.cs
|
|
||||||
60024 U15-Cs.cfg cs/UNI-19644.cs
|
|
||||||
60026 UNI-19895.cfg cs/UNI-19895.cs
|
|
||||||
60033 UNI-21730.cfg cs/UNI-21730.cs
|
|
||||||
60036 UNI-11993.cfg cs/UNI-11993.cs
|
|
||||||
60037 UNI-29933.cfg cs/UNI-29933.cs
|
|
||||||
60040 UNI-30498_2.cfg cs/UNI-30498_2.cs
|
|
||||||
60041 squeeze-paren-close-Option.cfg cs/squeeze-paren-close-Option.cs
|
|
||||||
60042 indent-multistring-coulmn1.cfg cs/indent-multistring-coulmn1.cs
|
|
||||||
60044 UNI-37241.cfg cs/UNI-37241.cs
|
|
||||||
60045 nl_before_after.cfg cs/add-nl-before-namespace.cs
|
|
@ -1,397 +0,0 @@
|
|||||||
#
|
|
||||||
# Test cases specifically for the C language.
|
|
||||||
#
|
|
||||||
# Range: 00000 - 09999
|
|
||||||
# test.name config.file input.file
|
|
||||||
|
|
||||||
|
|
||||||
# little general tests ====================================================
|
|
||||||
|
|
||||||
00000 indent_columns-3.cfg c/comment-indent.c
|
|
||||||
00001 cpp_to_c-1.cfg c/comment-indent.c
|
|
||||||
00002 cpp_to_c-2.cfg c/comment-indent.c
|
|
||||||
00003 cpp_to_c-3.cfg c/comment-indent.c
|
|
||||||
00004 indent-1.cfg c/switch.c
|
|
||||||
00005 ben_047.cfg c/cmt-align.c
|
|
||||||
00006 indent_columns-3.cfg c/comment-convert.c
|
|
||||||
00007 cpp_to_c-1.cfg c/comment-convert.c
|
|
||||||
00008 cpp_to_c-2.cfg c/comment-convert.c
|
|
||||||
00009 cpp_to_c-3.cfg c/comment-convert.c
|
|
||||||
|
|
||||||
|
|
||||||
# brace styles
|
|
||||||
|
|
||||||
00010 ben_048.cfg c/braces.c
|
|
||||||
00011 brace-allman.cfg c/braces.c
|
|
||||||
00012! brace-banner.cfg c/braces.c
|
|
||||||
00013 brace-gnu.cfg c/braces.c
|
|
||||||
00014 brace-kr.cfg c/braces.c
|
|
||||||
00015 brace-ws.cfg c/braces.c
|
|
||||||
00016 brace-ws2.cfg c/braces.c
|
|
||||||
|
|
||||||
00020 ben_049.cfg c/define-if-indent.c
|
|
||||||
00050 brace-remove-2.cfg c/brace-remove.c
|
|
||||||
00051 brace-remove-all.cfg c/brace-remove.c
|
|
||||||
00052 brace-remove-all.cfg c/brace-remove2.c
|
|
||||||
00053 nl_brace_test.cfg c/brace.c
|
|
||||||
00054 if_chain.cfg c/if_chain.c
|
|
||||||
00055 cgal.cfg c/braces-2.c
|
|
||||||
00056 brace-remove-all.cfg c/brace-remove3.c
|
|
||||||
00057 if_chain.cfg c/brace-remove3.c
|
|
||||||
00058 brace-kr-nobr.cfg c/if_chain.c
|
|
||||||
|
|
||||||
00060 ben_050.cfg c/braces-2.c
|
|
||||||
00061 ben_051.cfg c/braces-3.c
|
|
||||||
00062 ben_052.cfg c/braces-4.c
|
|
||||||
00065 ben_053.cfg c/braces-5.c
|
|
||||||
00066 ben_054.cfg c/vb-while.c
|
|
||||||
00067 ben_055.cfg c/vb-do.c
|
|
||||||
|
|
||||||
|
|
||||||
00068 ben_056.cfg c/bsnl.c
|
|
||||||
00069 ben_057.cfg c/vb-pp.c
|
|
||||||
|
|
||||||
00070 ben_058.cfg c/return-multi.c
|
|
||||||
00071 ben_042.cfg c/include_define.h
|
|
||||||
00072 star_pos-0.cfg c/align-proto.c
|
|
||||||
00073 empty.cfg c/nl_proto_endif.c
|
|
||||||
00074 clang-has_include.cfg c/clang-has_include.h
|
|
||||||
00076 1225.cfg c/1225.c
|
|
||||||
|
|
||||||
00081 else-if-1.cfg c/else-if.c
|
|
||||||
00082 else-if-2.cfg c/else-if.c
|
|
||||||
|
|
||||||
00091 cond-1.cfg c/cond.c
|
|
||||||
00092 indent_columns-3.cfg c/cond.c
|
|
||||||
00093 sp_cond_colon.cfg c/cond.c
|
|
||||||
|
|
||||||
00101 ben_061.cfg c/bugs-1.c
|
|
||||||
00102 space_indent_columns-3.cfg c/bugs-2.c
|
|
||||||
00103 ben_063.cfg c/bugs-3.c
|
|
||||||
00104 ben_064.cfg c/bugs-4.c
|
|
||||||
00105 ben_065.cfg c/bugs-5.c
|
|
||||||
00106 ben_011.cfg c/bugs-6.c
|
|
||||||
00107 ben_011.cfg c/bugs-7.c
|
|
||||||
00108 indent_columns-3.cfg c/bugs-8.c
|
|
||||||
|
|
||||||
00110 ben_069.cfg c/misc.c
|
|
||||||
00111 brace-kr-br.cfg c/misc.c
|
|
||||||
|
|
||||||
00120 sp_cmt_cpp_start-r.cfg c/sp_cmt_cpp_start.c
|
|
||||||
00121 sp_cmt_cpp_start-a.cfg c/sp_cmt_cpp_start.c
|
|
||||||
00122 sp_cmt_cpp_start_force.cfg c/sp_cmt_cpp_start.c
|
|
||||||
00123 cmt_reflow.cfg c/cmt_reflow.c
|
|
||||||
|
|
||||||
00130 ben_070.cfg c/minus-minus.c
|
|
||||||
00135 nepenthes.cfg c/br_cmt.c
|
|
||||||
|
|
||||||
00140 ben_071.cfg c/global-vars.c
|
|
||||||
00141 ben_072.cfg c/deref.c
|
|
||||||
00142 ben_073.cfg c/type-cast.c
|
|
||||||
00143 ben_074.cfg c/t3.in.c
|
|
||||||
00144 ben_075.cfg c/align-proto-vars.c
|
|
||||||
00145 ben_076.cfg c/vardefcol.c
|
|
||||||
|
|
||||||
|
|
||||||
# casts
|
|
||||||
|
|
||||||
00150 ben_077.cfg c/casts.c
|
|
||||||
00151 cast-sp-r.cfg c/casts.c
|
|
||||||
00152 cast-sp-a.cfg c/casts.c
|
|
||||||
00153 cast-type.cfg c/casts.c
|
|
||||||
00154 sp_after_cast.cfg c/casts.c
|
|
||||||
00155 ben_078.cfg c/cast_brace.c
|
|
||||||
|
|
||||||
|
|
||||||
# fcn indents
|
|
||||||
|
|
||||||
00160 indent_func_param.cfg c/fcn_indent.c
|
|
||||||
00161 indent_func_call_param.cfg c/fcn_indent.c
|
|
||||||
00162 indent_func_def_param.cfg c/fcn_indent.c
|
|
||||||
00163 indent_func_proto_param.cfg c/fcn_indent.c
|
|
||||||
00164 rdan.cfg c/fcn_indent_func_def_col1.c
|
|
||||||
00165 sp_func_call_user_inside_fparen.cfg c/sp_func_call_user_inside_fparen.c
|
|
||||||
|
|
||||||
00170 empty.cfg c/beautifier-off.c
|
|
||||||
00180 sf538.cfg c/lvalue.c
|
|
||||||
|
|
||||||
|
|
||||||
# switch & case stuff
|
|
||||||
|
|
||||||
00201 case-1.cfg c/case.c
|
|
||||||
00202 case-2.cfg c/case.c
|
|
||||||
00203 case-3.cfg c/case.c
|
|
||||||
00204 bug_1718.cfg c/bug_1718.c
|
|
||||||
00205 nl_before_return_false.cfg c/case-nl_before_return.c
|
|
||||||
00206 nl_before_return_true.cfg c/case-nl_before_return.c
|
|
||||||
|
|
||||||
|
|
||||||
# structure initializers
|
|
||||||
|
|
||||||
00301 ben_079.cfg c/align-struct-init.c
|
|
||||||
00302 ben_080.cfg c/one-liner-init.c
|
|
||||||
00303 1liner-split.cfg c/one-liner-init.c
|
|
||||||
00304 1liner-no-split.cfg c/one-liner-init.c
|
|
||||||
00305 ben_081.cfg c/one-liner-define.c
|
|
||||||
|
|
||||||
00310 empty.cfg c/sp_embed_comment.c
|
|
||||||
|
|
||||||
00320 rdan.cfg c/indent_first_bool_expr.c
|
|
||||||
|
|
||||||
|
|
||||||
# aligning tresholds
|
|
||||||
|
|
||||||
00401 align-1.cfg c/align-equ.c
|
|
||||||
00402 align-1.cfg c/align-var.c
|
|
||||||
00403 align-2.cfg c/align-var.c
|
|
||||||
00404 align-3.cfg c/align-var.c
|
|
||||||
00405 align-3.cfg c/bits.c
|
|
||||||
00406 bug_i_771.cfg c/bug_i_771.c
|
|
||||||
|
|
||||||
00411 align_typedef_gap-3_span-5.cfg c/align-typedef.c
|
|
||||||
00412 align_typedef_gap-3_span-5.cfg c/align-typedef.c
|
|
||||||
00413 align_typedef_func-1.cfg c/align-typedef.c
|
|
||||||
00414 align_typedef_func-2.cfg c/align-typedef.c
|
|
||||||
00415 align_stack.cfg c/align_stack.c
|
|
||||||
00416 align_sf_call_thresh_416.cfg c/align_sf_call_thresh_416.c
|
|
||||||
00417 align_sf_call_thresh_417.cfg c/align_sf_call_thresh_417.c
|
|
||||||
00418 align_sf_call_span_418.cfg c/align_sf_call_span_418.c
|
|
||||||
00419 align_sf_call_span_419.cfg c/align_sf_call_span_419.c
|
|
||||||
00420 Issue-2278.cfg c/Issue-2278.c
|
|
||||||
|
|
||||||
00421 nl_ds_struct_enum_cmt-t.cfg c/nl_ds_struct_enum.c
|
|
||||||
00422 nl_ds_struct_enum-2.cfg c/nl_ds_struct_enum.c
|
|
||||||
00423 bug_1702.cfg c/bug_1702.c
|
|
||||||
|
|
||||||
00430 empty.cfg c/paren-indent.c
|
|
||||||
00431 indent_paren_close-1.cfg c/paren-indent.c
|
|
||||||
00432 indent_paren_close-2.cfg c/paren-indent.c
|
|
||||||
|
|
||||||
00440 bug_489.cfg c/bug_489.c
|
|
||||||
|
|
||||||
00451 code_width-80.cfg c/enum_gallery.c
|
|
||||||
00452 nl_enum_own_lines-a.cfg c/enum_gallery.c
|
|
||||||
00453! nl_enum_own_lines-3.cfg c/enum_gallery.c
|
|
||||||
00454 nl_enum_own_lines-4.cfg c/enum_gallery.c
|
|
||||||
|
|
||||||
|
|
||||||
# boolean and comma positioning
|
|
||||||
|
|
||||||
00501 bool-pos-eol.cfg c/bool-pos.c
|
|
||||||
00502 bool-pos-sol.cfg c/bool-pos.c
|
|
||||||
00503 pos_compare-sol.cfg c/pos_compare.c
|
|
||||||
00504 pos_compare-eol.cfg c/pos_compare.c
|
|
||||||
00505 pos_conditional-l.cfg c/pos_conditional.c
|
|
||||||
00506 pos_conditional-t.cfg c/pos_conditional.c
|
|
||||||
00510 bool-pos-eol-break.cfg c/bool-pos.c
|
|
||||||
00511 bool-pos-sol-break.cfg c/bool-pos.c
|
|
||||||
00512 bool-pos-eol-force.cfg c/bool-pos.c
|
|
||||||
00513 bool-pos-sol-force.cfg c/bool-pos.c
|
|
||||||
00514 my_conf.cfg c/my_infile.c
|
|
||||||
|
|
||||||
00600 indent_columns-3.cfg c/dos.c
|
|
||||||
00601 indent_columns-3.cfg c/mac.c
|
|
||||||
00611 empty.cfg c/pp-space.c
|
|
||||||
00612 pp-indent-2.cfg c/pp-space.c
|
|
||||||
00613 pp_indent-a.cfg c/pp-space.c
|
|
||||||
00614 pp-space.cfg c/pp-space.c
|
|
||||||
00615 pp-indent-2.cfg c/pp-nest.c
|
|
||||||
00616 pp_if_indent-1.cfg c/pp-if-indent.c
|
|
||||||
00617 rdan.cfg c/pp-if-indent.c
|
|
||||||
00618 pp_if_indent-4.cfg c/pp-if-indent.c
|
|
||||||
|
|
||||||
00620 ben_083.cfg c/indent-assign.c
|
|
||||||
00621 nl_endif.cfg c/nl_endif.c
|
|
||||||
00622 indent_assign.cfg c/indent-off-after-assign.c
|
|
||||||
|
|
||||||
00631 nl_assign1.cfg c/nl_assign.c
|
|
||||||
00632 nl_assign2.cfg c/nl_assign.c
|
|
||||||
00633 nl_assign1.cfg c/bug_3156.c
|
|
||||||
|
|
||||||
# function def newlines
|
|
||||||
00701 func-def-1.cfg c/function-def.c
|
|
||||||
00702 func-def-2.cfg c/function-def.c
|
|
||||||
00703 func-def-3.cfg c/function-def.c
|
|
||||||
|
|
||||||
00710 add_long_closebrace_comment_1.cfg c/add_long_comment.c
|
|
||||||
|
|
||||||
# nl_after_semicolon and nl_after_open_brace
|
|
||||||
|
|
||||||
00721 nl_semicolon.cfg c/nl-semicolon.c
|
|
||||||
|
|
||||||
# function types
|
|
||||||
|
|
||||||
00801 ben_084.cfg c/fcn_type.c
|
|
||||||
00802 ben_085.cfg c/funcfunc.c
|
|
||||||
00803 sf537.cfg c/fcn_type.c
|
|
||||||
|
|
||||||
# code width
|
|
||||||
|
|
||||||
00901 width.cfg c/code_width.c
|
|
||||||
00902 width-2.cfg c/code_width.c
|
|
||||||
00903 width-3.cfg c/code_width.c
|
|
||||||
|
|
||||||
# pascal ptr_type
|
|
||||||
|
|
||||||
00910 pascal_ptr.cfg c/pascal_ptr.c
|
|
||||||
00911 empty_body.cfg c/pascal_ptr.c
|
|
||||||
|
|
||||||
01000 mod-paren.cfg c/mod-paren.c
|
|
||||||
01001 nl-comment.cfg c/nl-comment.c
|
|
||||||
01002 mod-paren2.cfg c/mod-paren.c
|
|
||||||
|
|
||||||
01005 mod_case_brace_add.cfg c/mod_case_brace.c
|
|
||||||
01006 mod_case_brace_rm.cfg c/mod_case_brace.c
|
|
||||||
01007 mod_move_case_brace.cfg c/mod_case_brace.c
|
|
||||||
|
|
||||||
01011 del_semicolon.cfg c/semicolons.c
|
|
||||||
01012 ben_086.cfg c/semicolons.c
|
|
||||||
|
|
||||||
01015 empty.cfg c/paren_indent.c
|
|
||||||
01016 align_attr.cfg c/align_attr.c
|
|
||||||
|
|
||||||
01020 kw_subst.cfg c/kw_subst.c
|
|
||||||
01021 kw_subst3.cfg c/hello.c
|
|
||||||
01022 kw_subst3.cfg c/kw_subst.c
|
|
||||||
|
|
||||||
01030 cmt_indent_multi-f.cfg c/multi.h
|
|
||||||
|
|
||||||
01035 empty.cfg c/func_wrap.c
|
|
||||||
01036 sp_inside_fparen-f.cfg c/func_wrap.c
|
|
||||||
01037 type_wrap.cfg c/type_wrap.c
|
|
||||||
|
|
||||||
01040 newline_after_endif.cfg c/newline_after_endif.c
|
|
||||||
|
|
||||||
01050 func_call_user.cfg c/func_call_user.c
|
|
||||||
|
|
||||||
01060 empty.cfg c/backslash-newline-lex.c
|
|
||||||
|
|
||||||
01070 label_colon_nl_1.cfg c/various_colons.c
|
|
||||||
01071 label_colon_nl_2.cfg c/various_colons.c
|
|
||||||
|
|
||||||
01080 empty.cfg c/bug_1196.c
|
|
||||||
|
|
||||||
# big general tests
|
|
||||||
|
|
||||||
02000 ben_087.cfg c/i2c-core.c
|
|
||||||
02001 preproc-cleanup.cfg c/directfb.h
|
|
||||||
02002 ben2.cfg c/i2c-core.c
|
|
||||||
|
|
||||||
# clark's style - blank lines before and after flow control, indented comments
|
|
||||||
|
|
||||||
02100 clark.cfg c/i2c-core.c
|
|
||||||
02101 clark.cfg c/comment-indent.c
|
|
||||||
|
|
||||||
02200 xml-str.cfg c/xml.c
|
|
||||||
02201 xml-str.cfg c/align-string.c
|
|
||||||
|
|
||||||
02300 ben_088.cfg c/preproc-if.c
|
|
||||||
02301 d.cfg c/preproc-if.c
|
|
||||||
02302 cpp_to_c-1.cfg c/nl-cont.c
|
|
||||||
02303 cpp_to_c-1.cfg c/nl-cont2.c
|
|
||||||
|
|
||||||
02310 ben_089.cfg c/empty-for.c
|
|
||||||
02311 ben_090.cfg c/pragma.c
|
|
||||||
|
|
||||||
02315 pp_ret.cfg c/pp_ret.c
|
|
||||||
|
|
||||||
02320 nl_create_one_liner.cfg c/nl_create_one_liner.c
|
|
||||||
02325 sort_imports.cfg c/sort_include.c
|
|
||||||
|
|
||||||
02330 leave_one_liners.cfg c/one_liners.c
|
|
||||||
|
|
||||||
# some embedded sql stuff
|
|
||||||
|
|
||||||
02400 ben_091.cfg sql/mysql.sqc C
|
|
||||||
02401 ben_092.cfg sql/sta-select.sqc C
|
|
||||||
02402 issue_527.cfg sql/issue_527.sqc C
|
|
||||||
|
|
||||||
02410 pp_if_indent-0.cfg c/ifdef-indent.c
|
|
||||||
02411 pp_if_indent-1.cfg c/ifdef-indent.c
|
|
||||||
02412 pp_if_indent-2.cfg c/ifdef-indent.c
|
|
||||||
02413 pp_if_indent-3.cfg c/ifdef-indent.c
|
|
||||||
02414 nl_whole_file_ifdef.cfg c/whole_file_ifdef.c
|
|
||||||
02415 endif.cfg c/endif.c
|
|
||||||
02416 cmt_nl_end.cfg c/cmt_nl_end.c
|
|
||||||
|
|
||||||
02421 cmt_multi_check_last-f.cfg c/cmt_multi.c
|
|
||||||
02422 empty.cfg c/cmt_multi.c
|
|
||||||
02423 empty.cfg c/cmt_multi_utf8.c
|
|
||||||
|
|
||||||
02431 align_right_cmt_gap-1.cfg c/cmt_right_align.c
|
|
||||||
02432 space_indent_columns-3.cfg c/cmt_right_align.c
|
|
||||||
|
|
||||||
02440 empty.cfg c/string_utf8.c
|
|
||||||
02441 empty.cfg c/utf8-identifiers.c
|
|
||||||
|
|
||||||
02451 return-1.cfg c/nl_return_expr.c
|
|
||||||
02452 return-2.cfg c/nl_return_expr.c
|
|
||||||
02453 return-3.cfg c/nl_return_expr.c
|
|
||||||
02454 return-4.cfg c/nl_return_expr.c
|
|
||||||
|
|
||||||
02455 mod_paren_on_return-a.cfg c/macro-returns.c
|
|
||||||
02456 mod_paren_on_return-r.cfg c/macro-returns.c
|
|
||||||
02457 nl_before_return_true.cfg c/nl_before_return.c
|
|
||||||
|
|
||||||
02460 freebsd.cfg c/freebsd.c
|
|
||||||
|
|
||||||
02486 doxy-comment-no.cfg c/doxy-comment.c
|
|
||||||
02487 doxy-comment-yes.cfg c/doxy-comment.c
|
|
||||||
|
|
||||||
02501 ger.cfg c/custom_types_ssl.c
|
|
||||||
02502 custom_types_ssl.cfg c/custom_types_ssl.c
|
|
||||||
#02503 ger.cfg c/pp_concat_asn1.h
|
|
||||||
|
|
||||||
02504 align_keep_extra.cfg c/align_keep_extra.c
|
|
||||||
|
|
||||||
02510 ben_093.cfg c/asm.c
|
|
||||||
10004 ben_094.cfg c/pragma_asm.c
|
|
||||||
|
|
||||||
07630 indent-vbrace.cfg c/indent-vbrace.c
|
|
||||||
|
|
||||||
08399 ben_095.cfg c/gh399.c
|
|
||||||
|
|
||||||
09594 indent_columns-3.cfg c/sf594.c
|
|
||||||
09588 empty.cfg c/sf588.c
|
|
||||||
|
|
||||||
09601 sp_after_sparen.cfg c/sp_after_sparen.c
|
|
||||||
|
|
||||||
09602 bug_671.cfg c/bug_671.c
|
|
||||||
|
|
||||||
09603 indent_ternary_operator-1.cfg c/indent_ternary-1.c
|
|
||||||
09604 indent_ternary_operator-2.cfg c/indent_ternary-2.c
|
|
||||||
|
|
||||||
09605 sp_arith-f.cfg c/negative_value.c
|
|
||||||
09606 ptr-arith.cfg c/extern.c
|
|
||||||
09607 ptr-arith.cfg c/attribute.c
|
|
||||||
09608 aet-func_call_user.cfg c/func_call_user2.c
|
|
||||||
09609 Issue_2279.cfg c/Issue_2279.c
|
|
||||||
09610 force_tab_after_define-t.cfg c/bug_i_876.c
|
|
||||||
09611 space_indent_columns-4.cfg c/bug_i_222.c
|
|
||||||
09612 empty.cfg c/bug_1041.c
|
|
||||||
09613 empty.cfg c/i1413.c
|
|
||||||
09614 empty.cfg c/string_prefixes.c
|
|
||||||
09615 i1564.cfg c/i1564.c
|
|
||||||
|
|
||||||
09616 enum_comma_ifdef.cfg c/enum_comma_ifdef.c
|
|
||||||
09617 Issue_2360-a.cfg c/Issue_2360.c
|
|
||||||
09618 Issue_2360-b.cfg c/Issue_2360.c
|
|
||||||
09619 Issue_2411.cfg c/Issue_2411.c
|
|
||||||
09620 Issue_2640.cfg c/Issue_2640.c
|
|
||||||
09621 preproc-cleanup.cfg c/pp-before-func-def.c
|
|
||||||
|
|
||||||
10005 empty.cfg c/i1270.c
|
|
||||||
|
|
||||||
10006 bug_2331.cfg c/bug_2331.c
|
|
||||||
|
|
||||||
10007 indent_macro_brace-true.cfg c/indent-macro-brace.c
|
|
||||||
10008 indent_macro_brace-false.cfg c/indent-macro-brace.c
|
|
||||||
|
|
||||||
10009 empty.cfg c/return-compound-literal.c
|
|
||||||
10010 indent_compound_literal_return-false.cfg c/return-compound-literal.c
|
|
||||||
10011 indent_compound_literal_return-true.cfg c/return-compound-literal.c
|
|
||||||
|
|
||||||
10012 indent_sparen_extra-8.cfg c/sparen-indent.c
|
|
||||||
10013 empty.cfg c/sparen-indent.c
|
|
||||||
10014 indent_continue-8.cfg c/sparen-indent.c
|
|
||||||
10015 empty.cfg c/Issue_2845.h
|
|
@ -1,23 +0,0 @@
|
|||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
|
||||||
<title>Uncrustify: where do the Spaces options work</title>
|
|
||||||
</head>
|
|
||||||
<body lang="en-US">
|
|
||||||
<p>
|
|
||||||
</p>
|
|
||||||
<pre>
|
|
||||||
{
|
|
||||||
a<a title="1,sp_assign"><font color="red">M</font></a>=<a title="2,69,sp_assign"><font color="red">M</font></a>b<a title="3,70,75,sp_arith"><font color="red">M</font></a>+<a title="4,71,76,80,sp_arith"><font color="red">M</font></a>111<a title="5,72,77,81,84,sp_arith"><font color="red">M</font></a>-<a title="6,73,78,82,85,87,sp_arith"><font color="red">M</font></a>55<a title="7,74,79,83,86,88,89,sp_before_semi"><font color="red">M</font></a>;
|
|
||||||
}
|
|
||||||
template<a title="8,sp_before_angle"><font color="red">M</font></a><<a title="9,90,sp_inside_angle"><font color="red">M</font></a>typename<a title="10,91,96,ADD from add_space_table"><font color="red">M</font></a>... A<a title="11,92,97,101,sp_before_comma"><font color="red">M</font></a>,<a title="12,93,98,102,105,sp_after_comma"><font color="red">M</font></a>int<a title="13,94,99,103,106,108,sp_type_ellipsis"><font color="red">M</font></a>... B<a title="14,95,100,104,107,109,110,sp_inside_angle"><font color="red">M</font></a>>
|
|
||||||
struct<a title="15,ADD from add_space_table"><font color="red">M</font></a>foo1<a title="16,111,sp_after_type"><font color="red">M</font></a>:<a title="17,112,128,ADD from add_space_table"><font color="red">M</font></a>foo1<a title="18,113,129,144,sp_before_angle"><font color="red">M</font></a><<a title="19,114,130,145,159,sp_inside_angle"><font color="red">M</font></a>A<a title="20,115,131,146,160,173,sp_type_ellipsis"><font color="red">M</font></a>...<a title="21,116,132,147,161,174,186,sp_before_comma"><font color="red">M</font></a>,<a title="22,117,133,148,162,175,187,198,sp_after_comma"><font color="red">M</font></a>(<a title="23,118,134,149,163,176,188,199,209,sp_inside_paren"><font color="red">M</font></a>sizeof<a title="24,119,135,150,164,177,189,200,210,219,sp_sizeof_ellipsis"><font color="red">M</font></a>...<a title="25,120,136,151,165,178,190,201,211,220,228,sp_sizeof_ellipsis_paren"><font color="red">M</font></a>(<a title="26,121,137,152,166,179,191,202,212,221,229,236,sp_inside_paren"><font color="red">M</font></a>A<a title="27,122,138,153,167,180,192,203,213,222,230,237,243,sp_inside_paren"><font color="red">M</font></a>)<a title="28,123,139,154,168,181,193,204,214,223,231,238,244,249,sp_arith"><font color="red">M</font></a>+<a title="29,124,140,155,169,182,194,205,215,224,232,239,245,250,254,sp_arith"><font color="red">M</font></a>B<a title="30,125,141,156,170,183,195,206,216,225,233,240,246,251,255,258,sp_inside_paren"><font color="red">M</font></a>)<a title="31,126,142,157,171,184,196,207,217,226,234,241,247,252,256,259,261,sp_paren_ellipsis"><font color="red">M</font></a>...<a title="32,127,143,158,172,185,197,208,218,227,235,242,248,253,257,260,262,263,sp_inside_angle"><font color="red">M</font></a>>
|
|
||||||
{
|
|
||||||
foo1<a title="33,51,sp_func_class_paren"><font color="red">M</font></a>(<a title="34,52,264,sp_inside_fparens"><font color="red">M</font></a>)<a title="35,53,265,266,sp_fparen_brace"><font color="red">M</font></a>{
|
|
||||||
int<a title="36,54,sp_after_type"><font color="red">M</font></a>x<a title="37,55,267,sp_assign"><font color="red">M</font></a>=<a title="38,56,268,274,sp_assign"><font color="red">M</font></a>sizeof<a title="39,57,269,275,280,sp_sizeof_ellipsis"><font color="red">M</font></a>...<a title="40,58,270,276,281,285,sp_sizeof_ellipsis_paren"><font color="red">M</font></a>(<a title="41,59,271,277,282,286,289,sp_inside_paren"><font color="red">M</font></a>A<a title="42,60,272,278,283,287,290,292,sp_inside_paren"><font color="red">M</font></a>)<a title="43,61,273,279,284,288,291,293,294,sp_before_semi"><font color="red">M</font></a>;
|
|
||||||
bool<a title="44,62,sp_after_type"><font color="red">M</font></a>b<a title="45,63,295,sp_assign"><font color="red">M</font></a>=<a title="46,64,296,300,sp_assign"><font color="red">M</font></a>x<a title="47,65,297,301,304,sp_compare"><font color="red">M</font></a>><a title="48,66,298,302,305,307,sp_compare"><font color="red">M</font></a>1<a title="49,67,299,303,306,308,309,sp_before_semi"><font color="red">M</font></a>;
|
|
||||||
}
|
|
||||||
}<a title="50,sp_before_semi"><font color="red">M</font></a>;
|
|
||||||
</pre>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1 +0,0 @@
|
|||||||
config/mini_d.cfg:2: unknown option 'not_existing_option'
|
|
@ -1,756 +0,0 @@
|
|||||||
|
|
||||||
newlines = auto
|
|
||||||
input_tab_size = 8
|
|
||||||
output_tab_size = 8
|
|
||||||
string_escape_char = 92
|
|
||||||
string_escape_char2 = 0
|
|
||||||
string_replace_tab_chars = false
|
|
||||||
tok_split_gte = false
|
|
||||||
disable_processing_nl_cont = false
|
|
||||||
disable_processing_cmt = " *INDENT-OFF*"
|
|
||||||
enable_processing_cmt = " *INDENT-ON*"
|
|
||||||
enable_digraphs = false
|
|
||||||
processing_cmt_as_regex = false
|
|
||||||
utf8_bom = ignore
|
|
||||||
utf8_byte = false
|
|
||||||
utf8_force = false
|
|
||||||
sp_arith = ignore
|
|
||||||
sp_arith_additive = ignore
|
|
||||||
sp_assign = ignore
|
|
||||||
sp_cpp_lambda_assign = ignore
|
|
||||||
sp_cpp_lambda_square_paren = ignore
|
|
||||||
sp_cpp_lambda_square_brace = ignore
|
|
||||||
sp_cpp_lambda_argument_list = ignore
|
|
||||||
sp_cpp_lambda_paren_brace = ignore
|
|
||||||
sp_cpp_lambda_fparen = ignore
|
|
||||||
sp_assign_default = ignore
|
|
||||||
sp_before_assign = ignore
|
|
||||||
sp_after_assign = ignore
|
|
||||||
sp_enum_paren = ignore
|
|
||||||
sp_enum_assign = ignore
|
|
||||||
sp_enum_before_assign = ignore
|
|
||||||
sp_enum_after_assign = ignore
|
|
||||||
sp_enum_colon = ignore
|
|
||||||
sp_pp_concat = add
|
|
||||||
sp_pp_stringify = ignore
|
|
||||||
sp_before_pp_stringify = ignore
|
|
||||||
sp_bool = ignore
|
|
||||||
sp_compare = ignore
|
|
||||||
sp_inside_paren = ignore
|
|
||||||
sp_paren_paren = ignore
|
|
||||||
sp_cparen_oparen = ignore
|
|
||||||
sp_balance_nested_parens = false
|
|
||||||
sp_paren_brace = ignore
|
|
||||||
sp_brace_brace = ignore
|
|
||||||
sp_before_ptr_star = ignore
|
|
||||||
sp_before_unnamed_ptr_star = ignore
|
|
||||||
sp_between_ptr_star = ignore
|
|
||||||
sp_after_ptr_star = ignore
|
|
||||||
sp_after_ptr_block_caret = ignore
|
|
||||||
sp_after_ptr_star_qualifier = ignore
|
|
||||||
sp_after_ptr_star_func = ignore
|
|
||||||
sp_ptr_star_paren = ignore
|
|
||||||
sp_before_ptr_star_func = ignore
|
|
||||||
sp_before_byref = ignore
|
|
||||||
sp_before_unnamed_byref = ignore
|
|
||||||
sp_after_byref = ignore
|
|
||||||
sp_after_byref_func = ignore
|
|
||||||
sp_before_byref_func = ignore
|
|
||||||
sp_after_type = force
|
|
||||||
sp_after_decltype = ignore
|
|
||||||
sp_before_template_paren = ignore
|
|
||||||
sp_template_angle = ignore
|
|
||||||
sp_before_angle = ignore
|
|
||||||
sp_inside_angle = ignore
|
|
||||||
sp_inside_angle_empty = ignore
|
|
||||||
sp_angle_colon = ignore
|
|
||||||
sp_after_angle = ignore
|
|
||||||
sp_angle_paren = ignore
|
|
||||||
sp_angle_paren_empty = ignore
|
|
||||||
sp_angle_word = ignore
|
|
||||||
sp_angle_shift = add
|
|
||||||
sp_permit_cpp11_shift = false
|
|
||||||
sp_before_sparen = ignore
|
|
||||||
sp_inside_sparen = ignore
|
|
||||||
sp_inside_sparen_open = ignore
|
|
||||||
sp_inside_sparen_close = ignore
|
|
||||||
sp_after_sparen = ignore
|
|
||||||
sp_sparen_brace = ignore
|
|
||||||
sp_do_brace_open = ignore
|
|
||||||
sp_brace_close_while = ignore
|
|
||||||
sp_while_paren_open = ignore
|
|
||||||
sp_invariant_paren = ignore
|
|
||||||
sp_after_invariant_paren = ignore
|
|
||||||
sp_special_semi = ignore
|
|
||||||
sp_before_semi = remove
|
|
||||||
sp_before_semi_for = ignore
|
|
||||||
sp_before_semi_for_empty = ignore
|
|
||||||
sp_after_semi = add
|
|
||||||
sp_after_semi_for = force
|
|
||||||
sp_after_semi_for_empty = ignore
|
|
||||||
sp_before_square = ignore
|
|
||||||
sp_before_vardef_square = remove
|
|
||||||
sp_before_square_asm_block = ignore
|
|
||||||
sp_before_squares = ignore
|
|
||||||
sp_cpp_before_struct_binding = ignore
|
|
||||||
sp_inside_square = ignore
|
|
||||||
sp_inside_square_empty = ignore
|
|
||||||
sp_inside_square_oc_array = ignore
|
|
||||||
sp_after_comma = ignore
|
|
||||||
sp_before_comma = remove
|
|
||||||
sp_after_mdatype_commas = ignore
|
|
||||||
sp_before_mdatype_commas = ignore
|
|
||||||
sp_between_mdatype_commas = ignore
|
|
||||||
sp_paren_comma = force
|
|
||||||
sp_before_ellipsis = ignore
|
|
||||||
sp_type_ellipsis = ignore
|
|
||||||
sp_type_question = ignore
|
|
||||||
sp_paren_ellipsis = ignore
|
|
||||||
sp_paren_qualifier = ignore
|
|
||||||
sp_paren_noexcept = ignore
|
|
||||||
sp_after_class_colon = ignore
|
|
||||||
sp_before_class_colon = ignore
|
|
||||||
sp_after_constr_colon = ignore
|
|
||||||
sp_before_constr_colon = ignore
|
|
||||||
sp_before_case_colon = remove
|
|
||||||
sp_after_operator = ignore
|
|
||||||
sp_after_operator_sym = ignore
|
|
||||||
sp_after_operator_sym_empty = ignore
|
|
||||||
sp_after_cast = ignore
|
|
||||||
sp_inside_paren_cast = ignore
|
|
||||||
sp_cpp_cast_paren = ignore
|
|
||||||
sp_sizeof_paren = ignore
|
|
||||||
sp_sizeof_ellipsis = ignore
|
|
||||||
sp_sizeof_ellipsis_paren = ignore
|
|
||||||
sp_decltype_paren = ignore
|
|
||||||
sp_after_tag = ignore
|
|
||||||
sp_inside_braces_enum = ignore
|
|
||||||
sp_inside_braces_struct = ignore
|
|
||||||
sp_inside_braces_oc_dict = ignore
|
|
||||||
sp_after_type_brace_init_lst_open = ignore
|
|
||||||
sp_before_type_brace_init_lst_close = ignore
|
|
||||||
sp_inside_type_brace_init_lst = ignore
|
|
||||||
sp_inside_braces = ignore
|
|
||||||
sp_inside_braces_empty = ignore
|
|
||||||
sp_trailing_return = ignore
|
|
||||||
sp_type_func = ignore
|
|
||||||
sp_type_brace_init_lst = ignore
|
|
||||||
sp_func_proto_paren = ignore
|
|
||||||
sp_func_proto_paren_empty = ignore
|
|
||||||
sp_func_type_paren = ignore
|
|
||||||
sp_func_def_paren = ignore
|
|
||||||
sp_func_def_paren_empty = ignore
|
|
||||||
sp_inside_fparens = ignore
|
|
||||||
sp_inside_fparen = ignore
|
|
||||||
sp_inside_tparen = ignore
|
|
||||||
sp_after_tparen_close = ignore
|
|
||||||
sp_square_fparen = ignore
|
|
||||||
sp_fparen_brace = ignore
|
|
||||||
sp_fparen_brace_initializer = ignore
|
|
||||||
sp_fparen_dbrace = ignore
|
|
||||||
sp_func_call_paren = ignore
|
|
||||||
sp_func_call_paren_empty = ignore
|
|
||||||
sp_func_call_user_paren = ignore
|
|
||||||
sp_func_call_user_inside_fparen = ignore
|
|
||||||
sp_func_call_user_paren_paren = ignore
|
|
||||||
sp_func_class_paren = ignore
|
|
||||||
sp_func_class_paren_empty = ignore
|
|
||||||
sp_return_paren = ignore
|
|
||||||
sp_return_brace = ignore
|
|
||||||
sp_attribute_paren = ignore
|
|
||||||
sp_defined_paren = ignore
|
|
||||||
sp_throw_paren = ignore
|
|
||||||
sp_after_throw = ignore
|
|
||||||
sp_catch_paren = ignore
|
|
||||||
sp_oc_catch_paren = ignore
|
|
||||||
sp_before_oc_proto_list = ignore
|
|
||||||
sp_oc_classname_paren = ignore
|
|
||||||
sp_version_paren = ignore
|
|
||||||
sp_scope_paren = ignore
|
|
||||||
sp_super_paren = remove
|
|
||||||
sp_this_paren = remove
|
|
||||||
sp_macro = ignore
|
|
||||||
sp_macro_func = ignore
|
|
||||||
sp_else_brace = ignore
|
|
||||||
sp_brace_else = ignore
|
|
||||||
sp_brace_typedef = ignore
|
|
||||||
sp_catch_brace = ignore
|
|
||||||
sp_oc_catch_brace = ignore
|
|
||||||
sp_brace_catch = ignore
|
|
||||||
sp_oc_brace_catch = ignore
|
|
||||||
sp_finally_brace = ignore
|
|
||||||
sp_brace_finally = ignore
|
|
||||||
sp_try_brace = ignore
|
|
||||||
sp_getset_brace = ignore
|
|
||||||
sp_word_brace_init_lst = ignore
|
|
||||||
sp_word_brace_ns = add
|
|
||||||
sp_before_dc = ignore
|
|
||||||
sp_after_dc = ignore
|
|
||||||
sp_d_array_colon = ignore
|
|
||||||
sp_not = remove
|
|
||||||
sp_inv = remove
|
|
||||||
sp_addr = remove
|
|
||||||
sp_member = remove
|
|
||||||
sp_deref = remove
|
|
||||||
sp_sign = remove
|
|
||||||
sp_incdec = remove
|
|
||||||
sp_before_nl_cont = add
|
|
||||||
sp_after_oc_scope = ignore
|
|
||||||
sp_after_oc_colon = ignore
|
|
||||||
sp_before_oc_colon = ignore
|
|
||||||
sp_after_oc_dict_colon = ignore
|
|
||||||
sp_before_oc_dict_colon = ignore
|
|
||||||
sp_after_send_oc_colon = ignore
|
|
||||||
sp_before_send_oc_colon = ignore
|
|
||||||
sp_after_oc_type = ignore
|
|
||||||
sp_after_oc_return_type = ignore
|
|
||||||
sp_after_oc_at_sel = ignore
|
|
||||||
sp_after_oc_at_sel_parens = ignore
|
|
||||||
sp_inside_oc_at_sel_parens = ignore
|
|
||||||
sp_before_oc_block_caret = ignore
|
|
||||||
sp_after_oc_block_caret = ignore
|
|
||||||
sp_after_oc_msg_receiver = ignore
|
|
||||||
sp_after_oc_property = ignore
|
|
||||||
sp_after_oc_synchronized = ignore
|
|
||||||
sp_cond_colon = ignore
|
|
||||||
sp_cond_colon_before = ignore
|
|
||||||
sp_cond_colon_after = ignore
|
|
||||||
sp_cond_question = ignore
|
|
||||||
sp_cond_question_before = ignore
|
|
||||||
sp_cond_question_after = ignore
|
|
||||||
sp_cond_ternary_short = ignore
|
|
||||||
sp_case_label = ignore
|
|
||||||
sp_range = ignore
|
|
||||||
sp_after_for_colon = ignore
|
|
||||||
sp_before_for_colon = ignore
|
|
||||||
sp_extern_paren = ignore
|
|
||||||
sp_cmt_cpp_start = ignore
|
|
||||||
sp_cmt_cpp_region = ignore
|
|
||||||
sp_cmt_cpp_doxygen = false
|
|
||||||
sp_cmt_cpp_qttr = false
|
|
||||||
sp_endif_cmt = ignore
|
|
||||||
sp_after_new = ignore
|
|
||||||
sp_between_new_paren = ignore
|
|
||||||
sp_after_newop_paren = ignore
|
|
||||||
sp_inside_newop_paren = ignore
|
|
||||||
sp_inside_newop_paren_open = ignore
|
|
||||||
sp_inside_newop_paren_close = ignore
|
|
||||||
sp_before_tr_emb_cmt = ignore
|
|
||||||
sp_num_before_tr_emb_cmt = 0
|
|
||||||
sp_annotation_paren = ignore
|
|
||||||
sp_skip_vbrace_tokens = false
|
|
||||||
sp_after_noexcept = ignore
|
|
||||||
sp_vala_after_translation = ignore
|
|
||||||
force_tab_after_define = false
|
|
||||||
indent_columns = 8
|
|
||||||
indent_continue = 0
|
|
||||||
indent_continue_class_head = 0
|
|
||||||
indent_single_newlines = false
|
|
||||||
indent_param = 0
|
|
||||||
indent_with_tabs = 1
|
|
||||||
indent_cmt_with_tabs = false
|
|
||||||
indent_align_string = false
|
|
||||||
indent_xml_string = 0
|
|
||||||
indent_brace = 0
|
|
||||||
indent_braces = false
|
|
||||||
indent_braces_no_func = false
|
|
||||||
indent_braces_no_class = false
|
|
||||||
indent_braces_no_struct = false
|
|
||||||
indent_brace_parent = false
|
|
||||||
indent_paren_open_brace = false
|
|
||||||
indent_cs_delegate_brace = false
|
|
||||||
indent_cs_delegate_body = false
|
|
||||||
indent_namespace = false
|
|
||||||
indent_namespace_single_indent = false
|
|
||||||
indent_namespace_level = 0
|
|
||||||
indent_namespace_limit = 0
|
|
||||||
indent_extern = false
|
|
||||||
indent_class = false
|
|
||||||
indent_before_class_colon = 0
|
|
||||||
indent_class_colon = false
|
|
||||||
indent_class_on_colon = false
|
|
||||||
indent_constr_colon = false
|
|
||||||
indent_ctor_init_leading = 2
|
|
||||||
indent_ctor_init = 0
|
|
||||||
indent_else_if = false
|
|
||||||
indent_var_def_blk = 0
|
|
||||||
indent_var_def_cont = false
|
|
||||||
indent_shift = false
|
|
||||||
indent_func_def_force_col1 = false
|
|
||||||
indent_func_call_param = false
|
|
||||||
indent_func_def_param = false
|
|
||||||
indent_func_def_param_paren_pos_threshold = 0
|
|
||||||
indent_func_proto_param = false
|
|
||||||
indent_func_class_param = false
|
|
||||||
indent_func_ctor_var_param = false
|
|
||||||
indent_template_param = false
|
|
||||||
indent_func_param_double = false
|
|
||||||
indent_func_const = 0
|
|
||||||
indent_func_throw = 0
|
|
||||||
indent_macro_brace = true
|
|
||||||
indent_member = 0
|
|
||||||
indent_member_single = false
|
|
||||||
indent_sing_line_comments = 0
|
|
||||||
indent_sparen_extra = 0
|
|
||||||
indent_relative_single_line_comments = false
|
|
||||||
indent_switch_case = 0
|
|
||||||
indent_case_brace = 0
|
|
||||||
indent_switch_break_with_case = false
|
|
||||||
indent_switch_pp = true
|
|
||||||
indent_case_shift = 0
|
|
||||||
indent_col1_comment = false
|
|
||||||
indent_col1_multi_string_literal = false
|
|
||||||
indent_label = 1
|
|
||||||
indent_access_spec = 1
|
|
||||||
indent_access_spec_body = false
|
|
||||||
indent_paren_nl = false
|
|
||||||
indent_paren_close = 0
|
|
||||||
indent_paren_after_func_def = false
|
|
||||||
indent_paren_after_func_decl = false
|
|
||||||
indent_paren_after_func_call = false
|
|
||||||
indent_comma_brace = false
|
|
||||||
indent_comma_paren = false
|
|
||||||
indent_bool_paren = false
|
|
||||||
indent_semicolon_for_paren = false
|
|
||||||
indent_first_bool_expr = false
|
|
||||||
indent_first_for_expr = false
|
|
||||||
indent_square_nl = false
|
|
||||||
indent_preserve_sql = false
|
|
||||||
indent_align_assign = true
|
|
||||||
indent_off_after_assign = false
|
|
||||||
indent_align_paren = true
|
|
||||||
indent_oc_inside_msg_sel = false
|
|
||||||
indent_oc_block = false
|
|
||||||
indent_oc_block_msg = 0
|
|
||||||
indent_oc_msg_colon = 0
|
|
||||||
indent_oc_msg_prioritize_first_colon = true
|
|
||||||
indent_oc_block_msg_xcode_style = false
|
|
||||||
indent_oc_block_msg_from_keyword = false
|
|
||||||
indent_oc_block_msg_from_colon = false
|
|
||||||
indent_oc_block_msg_from_caret = false
|
|
||||||
indent_oc_block_msg_from_brace = false
|
|
||||||
indent_min_vbrace_open = 0
|
|
||||||
indent_vbrace_open_on_tabstop = false
|
|
||||||
indent_token_after_brace = true
|
|
||||||
indent_cpp_lambda_body = false
|
|
||||||
indent_compound_literal_return = true
|
|
||||||
indent_using_block = true
|
|
||||||
indent_ternary_operator = 0
|
|
||||||
indent_inside_ternary_operator = false
|
|
||||||
indent_off_after_return = false
|
|
||||||
indent_off_after_return_new = false
|
|
||||||
indent_single_after_return = false
|
|
||||||
indent_ignore_asm_block = false
|
|
||||||
donot_indent_func_def_close_paren = false
|
|
||||||
nl_collapse_empty_body = false
|
|
||||||
nl_assign_leave_one_liners = false
|
|
||||||
nl_class_leave_one_liners = false
|
|
||||||
nl_enum_leave_one_liners = false
|
|
||||||
nl_getset_leave_one_liners = false
|
|
||||||
nl_cs_property_leave_one_liners = false
|
|
||||||
nl_func_leave_one_liners = false
|
|
||||||
nl_cpp_lambda_leave_one_liners = false
|
|
||||||
nl_if_leave_one_liners = false
|
|
||||||
nl_while_leave_one_liners = false
|
|
||||||
nl_do_leave_one_liners = false
|
|
||||||
nl_for_leave_one_liners = false
|
|
||||||
nl_oc_msg_leave_one_liner = false
|
|
||||||
nl_oc_mdef_brace = ignore
|
|
||||||
nl_oc_block_brace = ignore
|
|
||||||
nl_oc_before_interface = ignore
|
|
||||||
nl_oc_before_implementation = ignore
|
|
||||||
nl_oc_before_end = ignore
|
|
||||||
nl_oc_interface_brace = ignore
|
|
||||||
nl_oc_implementation_brace = ignore
|
|
||||||
nl_start_of_file = ignore
|
|
||||||
nl_start_of_file_min = 0
|
|
||||||
nl_end_of_file = ignore
|
|
||||||
nl_end_of_file_min = 0
|
|
||||||
nl_assign_brace = ignore
|
|
||||||
nl_assign_square = ignore
|
|
||||||
nl_tsquare_brace = ignore
|
|
||||||
nl_after_square_assign = ignore
|
|
||||||
nl_fcall_brace = ignore
|
|
||||||
nl_enum_brace = ignore
|
|
||||||
nl_enum_class = ignore
|
|
||||||
nl_enum_class_identifier = ignore
|
|
||||||
nl_enum_identifier_colon = ignore
|
|
||||||
nl_enum_colon_type = ignore
|
|
||||||
nl_struct_brace = ignore
|
|
||||||
nl_union_brace = ignore
|
|
||||||
nl_if_brace = ignore
|
|
||||||
nl_brace_else = ignore
|
|
||||||
nl_elseif_brace = ignore
|
|
||||||
nl_else_brace = ignore
|
|
||||||
nl_else_if = ignore
|
|
||||||
nl_before_opening_brace_func_class_def = ignore
|
|
||||||
nl_before_if_closing_paren = ignore
|
|
||||||
nl_brace_finally = ignore
|
|
||||||
nl_finally_brace = ignore
|
|
||||||
nl_try_brace = ignore
|
|
||||||
nl_getset_brace = ignore
|
|
||||||
nl_for_brace = ignore
|
|
||||||
nl_catch_brace = ignore
|
|
||||||
nl_oc_catch_brace = ignore
|
|
||||||
nl_brace_catch = ignore
|
|
||||||
nl_oc_brace_catch = ignore
|
|
||||||
nl_brace_square = ignore
|
|
||||||
nl_brace_fparen = ignore
|
|
||||||
nl_while_brace = ignore
|
|
||||||
nl_scope_brace = ignore
|
|
||||||
nl_unittest_brace = ignore
|
|
||||||
nl_version_brace = ignore
|
|
||||||
nl_using_brace = ignore
|
|
||||||
nl_brace_brace = ignore
|
|
||||||
nl_do_brace = ignore
|
|
||||||
nl_brace_while = ignore
|
|
||||||
nl_switch_brace = ignore
|
|
||||||
nl_synchronized_brace = ignore
|
|
||||||
nl_multi_line_cond = false
|
|
||||||
nl_multi_line_sparen_open = ignore
|
|
||||||
nl_multi_line_sparen_close = ignore
|
|
||||||
nl_multi_line_define = false
|
|
||||||
nl_before_case = false
|
|
||||||
nl_after_case = false
|
|
||||||
nl_case_colon_brace = ignore
|
|
||||||
nl_before_throw = ignore
|
|
||||||
nl_namespace_brace = ignore
|
|
||||||
nl_template_class = ignore
|
|
||||||
nl_template_class_decl = ignore
|
|
||||||
nl_template_class_decl_special = ignore
|
|
||||||
nl_template_class_def = ignore
|
|
||||||
nl_template_class_def_special = ignore
|
|
||||||
nl_template_func = ignore
|
|
||||||
nl_template_func_decl = ignore
|
|
||||||
nl_template_func_decl_special = ignore
|
|
||||||
nl_template_func_def = ignore
|
|
||||||
nl_template_func_def_special = ignore
|
|
||||||
nl_template_var = ignore
|
|
||||||
nl_template_using = ignore
|
|
||||||
nl_class_brace = ignore
|
|
||||||
nl_class_init_args = ignore
|
|
||||||
nl_constr_init_args = ignore
|
|
||||||
nl_enum_own_lines = ignore
|
|
||||||
nl_func_type_name = ignore
|
|
||||||
nl_func_type_name_class = ignore
|
|
||||||
nl_func_class_scope = ignore
|
|
||||||
nl_func_scope_name = ignore
|
|
||||||
nl_func_proto_type_name = ignore
|
|
||||||
nl_func_paren = ignore
|
|
||||||
nl_func_paren_empty = ignore
|
|
||||||
nl_func_def_paren = ignore
|
|
||||||
nl_func_def_paren_empty = ignore
|
|
||||||
nl_func_call_paren = ignore
|
|
||||||
nl_func_call_paren_empty = ignore
|
|
||||||
nl_func_decl_start = ignore
|
|
||||||
nl_func_def_start = ignore
|
|
||||||
nl_func_decl_start_single = ignore
|
|
||||||
nl_func_def_start_single = ignore
|
|
||||||
nl_func_decl_start_multi_line = false
|
|
||||||
nl_func_def_start_multi_line = false
|
|
||||||
nl_func_decl_args = ignore
|
|
||||||
nl_func_def_args = ignore
|
|
||||||
nl_func_call_args = ignore
|
|
||||||
nl_func_decl_args_multi_line = false
|
|
||||||
nl_func_def_args_multi_line = false
|
|
||||||
nl_func_decl_end = ignore
|
|
||||||
nl_func_def_end = ignore
|
|
||||||
nl_func_decl_end_single = ignore
|
|
||||||
nl_func_def_end_single = ignore
|
|
||||||
nl_func_decl_end_multi_line = false
|
|
||||||
nl_func_def_end_multi_line = false
|
|
||||||
nl_func_decl_empty = ignore
|
|
||||||
nl_func_def_empty = ignore
|
|
||||||
nl_func_call_empty = ignore
|
|
||||||
nl_func_call_start = ignore
|
|
||||||
nl_func_call_end = ignore
|
|
||||||
nl_func_call_start_multi_line = false
|
|
||||||
nl_func_call_args_multi_line = false
|
|
||||||
nl_func_call_end_multi_line = false
|
|
||||||
nl_func_call_args_multi_line_ignore_closures = false
|
|
||||||
nl_template_start = false
|
|
||||||
nl_template_args = false
|
|
||||||
nl_template_end = false
|
|
||||||
nl_oc_msg_args = false
|
|
||||||
nl_fdef_brace = ignore
|
|
||||||
nl_fdef_brace_cond = ignore
|
|
||||||
nl_cpp_ldef_brace = ignore
|
|
||||||
nl_return_expr = ignore
|
|
||||||
nl_after_semicolon = false
|
|
||||||
nl_paren_dbrace_open = ignore
|
|
||||||
nl_type_brace_init_lst = ignore
|
|
||||||
nl_type_brace_init_lst_open = ignore
|
|
||||||
nl_type_brace_init_lst_close = ignore
|
|
||||||
nl_after_brace_open = false
|
|
||||||
nl_after_brace_open_cmt = false
|
|
||||||
nl_after_vbrace_open = false
|
|
||||||
nl_after_vbrace_open_empty = false
|
|
||||||
nl_after_brace_close = false
|
|
||||||
nl_after_vbrace_close = false
|
|
||||||
nl_brace_struct_var = ignore
|
|
||||||
nl_define_macro = false
|
|
||||||
nl_squeeze_paren_close = false
|
|
||||||
nl_squeeze_ifdef = false
|
|
||||||
nl_squeeze_ifdef_top_level = false
|
|
||||||
nl_before_if = ignore
|
|
||||||
nl_after_if = ignore
|
|
||||||
nl_before_for = ignore
|
|
||||||
nl_after_for = ignore
|
|
||||||
nl_before_while = ignore
|
|
||||||
nl_after_while = ignore
|
|
||||||
nl_before_switch = ignore
|
|
||||||
nl_after_switch = ignore
|
|
||||||
nl_before_synchronized = ignore
|
|
||||||
nl_after_synchronized = ignore
|
|
||||||
nl_before_do = ignore
|
|
||||||
nl_after_do = ignore
|
|
||||||
nl_before_return = false
|
|
||||||
nl_after_return = false
|
|
||||||
nl_before_member = ignore
|
|
||||||
nl_after_member = ignore
|
|
||||||
nl_ds_struct_enum_cmt = false
|
|
||||||
nl_ds_struct_enum_close_brace = false
|
|
||||||
nl_class_colon = ignore
|
|
||||||
nl_constr_colon = ignore
|
|
||||||
nl_namespace_two_to_one_liner = false
|
|
||||||
nl_create_if_one_liner = false
|
|
||||||
nl_create_for_one_liner = false
|
|
||||||
nl_create_while_one_liner = false
|
|
||||||
nl_create_func_def_one_liner = false
|
|
||||||
nl_create_list_one_liner = false
|
|
||||||
nl_split_if_one_liner = false
|
|
||||||
nl_split_for_one_liner = false
|
|
||||||
nl_split_while_one_liner = false
|
|
||||||
donot_add_nl_before_cpp_comment = false
|
|
||||||
nl_max = 0
|
|
||||||
nl_max_blank_in_func = 0
|
|
||||||
nl_inside_empty_func = 0
|
|
||||||
nl_before_func_body_proto = 0
|
|
||||||
nl_before_func_body_def = 0
|
|
||||||
nl_before_func_class_proto = 0
|
|
||||||
nl_before_func_class_def = 0
|
|
||||||
nl_after_func_proto = 0
|
|
||||||
nl_after_func_proto_group = 0
|
|
||||||
nl_after_func_class_proto = 0
|
|
||||||
nl_after_func_class_proto_group = 0
|
|
||||||
nl_class_leave_one_liner_groups = false
|
|
||||||
nl_after_func_body = 0
|
|
||||||
nl_after_func_body_class = 0
|
|
||||||
nl_after_func_body_one_liner = 0
|
|
||||||
nl_func_var_def_blk = 0
|
|
||||||
nl_typedef_blk_start = 0
|
|
||||||
nl_typedef_blk_end = 0
|
|
||||||
nl_typedef_blk_in = 0
|
|
||||||
nl_var_def_blk_start = 0
|
|
||||||
nl_var_def_blk_end = 0
|
|
||||||
nl_var_def_blk_in = 0
|
|
||||||
nl_before_block_comment = 0
|
|
||||||
nl_before_c_comment = 0
|
|
||||||
nl_before_cpp_comment = 0
|
|
||||||
nl_after_multiline_comment = false
|
|
||||||
nl_after_label_colon = false
|
|
||||||
nl_after_struct = 0
|
|
||||||
nl_before_class = 0
|
|
||||||
nl_after_class = 0
|
|
||||||
nl_before_namespace = 0
|
|
||||||
nl_inside_namespace = 0
|
|
||||||
nl_after_namespace = 0
|
|
||||||
nl_before_access_spec = 0
|
|
||||||
nl_after_access_spec = 0
|
|
||||||
nl_comment_func_def = 0
|
|
||||||
nl_after_try_catch_finally = 0
|
|
||||||
nl_around_cs_property = 0
|
|
||||||
nl_between_get_set = 0
|
|
||||||
nl_property_brace = ignore
|
|
||||||
eat_blanks_after_open_brace = false
|
|
||||||
eat_blanks_before_close_brace = false
|
|
||||||
nl_remove_extra_newlines = 0
|
|
||||||
nl_after_annotation = ignore
|
|
||||||
nl_between_annotation = ignore
|
|
||||||
nl_before_whole_file_ifdef = 0
|
|
||||||
nl_after_whole_file_ifdef = 0
|
|
||||||
nl_before_whole_file_endif = 0
|
|
||||||
nl_after_whole_file_endif = 0
|
|
||||||
pos_arith = ignore
|
|
||||||
pos_assign = ignore
|
|
||||||
pos_bool = ignore
|
|
||||||
pos_compare = ignore
|
|
||||||
pos_conditional = ignore
|
|
||||||
pos_comma = ignore
|
|
||||||
pos_enum_comma = ignore
|
|
||||||
pos_class_comma = ignore
|
|
||||||
pos_constr_comma = ignore
|
|
||||||
pos_class_colon = ignore
|
|
||||||
pos_constr_colon = ignore
|
|
||||||
pos_shift = ignore
|
|
||||||
code_width = 0
|
|
||||||
ls_for_split_full = false
|
|
||||||
ls_func_split_full = false
|
|
||||||
ls_code_width = false
|
|
||||||
align_keep_tabs = false
|
|
||||||
align_with_tabs = false
|
|
||||||
align_on_tabstop = false
|
|
||||||
align_number_right = false
|
|
||||||
align_keep_extra_space = false
|
|
||||||
align_func_params = false
|
|
||||||
align_func_params_span = 0
|
|
||||||
align_func_params_thresh = 0
|
|
||||||
align_func_params_gap = 0
|
|
||||||
align_constr_value_span = 0
|
|
||||||
align_constr_value_thresh = 0
|
|
||||||
align_constr_value_gap = 0
|
|
||||||
align_same_func_call_params = false
|
|
||||||
align_same_func_call_params_span = 0
|
|
||||||
align_same_func_call_params_thresh = 0
|
|
||||||
align_var_def_span = 0
|
|
||||||
align_var_def_star_style = 0
|
|
||||||
align_var_def_amp_style = 0
|
|
||||||
align_var_def_thresh = 0
|
|
||||||
align_var_def_gap = 0
|
|
||||||
align_var_def_colon = false
|
|
||||||
align_var_def_colon_gap = 0
|
|
||||||
align_var_def_attribute = false
|
|
||||||
align_var_def_inline = false
|
|
||||||
align_assign_span = 0
|
|
||||||
align_assign_func_proto_span = 0
|
|
||||||
align_assign_thresh = 0
|
|
||||||
align_assign_decl_func = 0
|
|
||||||
align_enum_equ_span = 0
|
|
||||||
align_enum_equ_thresh = 0
|
|
||||||
align_var_class_span = 0
|
|
||||||
align_var_class_thresh = 0
|
|
||||||
align_var_class_gap = 0
|
|
||||||
align_var_struct_span = 0
|
|
||||||
align_var_struct_thresh = 0
|
|
||||||
align_var_struct_gap = 0
|
|
||||||
align_struct_init_span = 0
|
|
||||||
align_typedef_span = 0
|
|
||||||
align_typedef_gap = 0
|
|
||||||
align_typedef_func = 0
|
|
||||||
align_typedef_star_style = 0
|
|
||||||
align_typedef_amp_style = 0
|
|
||||||
align_right_cmt_span = 0
|
|
||||||
align_right_cmt_gap = 0
|
|
||||||
align_right_cmt_mix = false
|
|
||||||
align_right_cmt_same_level = false
|
|
||||||
align_right_cmt_at_col = 0
|
|
||||||
align_func_proto_span = 0
|
|
||||||
align_func_proto_thresh = 0
|
|
||||||
align_func_proto_gap = 0
|
|
||||||
align_on_operator = false
|
|
||||||
align_mix_var_proto = false
|
|
||||||
align_single_line_func = false
|
|
||||||
align_single_line_brace = false
|
|
||||||
align_single_line_brace_gap = 0
|
|
||||||
align_oc_msg_spec_span = 0
|
|
||||||
align_nl_cont = false
|
|
||||||
align_pp_define_together = false
|
|
||||||
align_pp_define_span = 0
|
|
||||||
align_pp_define_gap = 0
|
|
||||||
align_left_shift = true
|
|
||||||
align_eigen_comma_init = false
|
|
||||||
align_asm_colon = false
|
|
||||||
align_oc_msg_colon_span = 0
|
|
||||||
align_oc_msg_colon_first = false
|
|
||||||
align_oc_decl_colon = false
|
|
||||||
align_oc_msg_colon_xcode_like = false
|
|
||||||
cmt_width = 0
|
|
||||||
cmt_reflow_mode = 0
|
|
||||||
cmt_reflow_fold_regex_file = ""
|
|
||||||
cmt_reflow_indent_to_paragraph_start = false
|
|
||||||
cmt_convert_tab_to_spaces = false
|
|
||||||
cmt_indent_multi = true
|
|
||||||
cmt_align_doxygen_javadoc_tags = false
|
|
||||||
cmt_sp_before_doxygen_javadoc_tags = 1
|
|
||||||
cmt_c_group = false
|
|
||||||
cmt_c_nl_start = false
|
|
||||||
cmt_c_nl_end = false
|
|
||||||
cmt_cpp_to_c = false
|
|
||||||
cmt_cpp_group = false
|
|
||||||
cmt_cpp_nl_start = false
|
|
||||||
cmt_cpp_nl_end = false
|
|
||||||
cmt_star_cont = false
|
|
||||||
cmt_sp_before_star_cont = 0
|
|
||||||
cmt_sp_after_star_cont = 0
|
|
||||||
cmt_multi_check_last = true
|
|
||||||
cmt_multi_first_len_minimum = 4
|
|
||||||
cmt_insert_file_header = ""
|
|
||||||
cmt_insert_file_footer = ""
|
|
||||||
cmt_insert_func_header = ""
|
|
||||||
cmt_insert_class_header = ""
|
|
||||||
cmt_insert_oc_msg_header = ""
|
|
||||||
cmt_insert_before_preproc = false
|
|
||||||
cmt_insert_before_inlines = true
|
|
||||||
cmt_insert_before_ctor_dtor = false
|
|
||||||
mod_full_brace_do = ignore
|
|
||||||
mod_full_brace_for = ignore
|
|
||||||
mod_full_brace_function = ignore
|
|
||||||
mod_full_brace_if = ignore
|
|
||||||
mod_full_brace_if_chain = false
|
|
||||||
mod_full_brace_if_chain_only = false
|
|
||||||
mod_full_brace_while = ignore
|
|
||||||
mod_full_brace_using = ignore
|
|
||||||
mod_full_brace_nl = 0
|
|
||||||
mod_full_brace_nl_block_rem_mlcond = false
|
|
||||||
mod_paren_on_return = ignore
|
|
||||||
mod_pawn_semicolon = false
|
|
||||||
mod_full_paren_if_bool = false
|
|
||||||
mod_remove_extra_semicolon = false
|
|
||||||
mod_add_long_function_closebrace_comment = 0
|
|
||||||
mod_add_long_namespace_closebrace_comment = 0
|
|
||||||
mod_add_long_class_closebrace_comment = 0
|
|
||||||
mod_add_long_switch_closebrace_comment = 0
|
|
||||||
mod_add_long_ifdef_endif_comment = 0
|
|
||||||
mod_add_long_ifdef_else_comment = 0
|
|
||||||
mod_sort_case_sensitive = false
|
|
||||||
mod_sort_import = false
|
|
||||||
mod_sort_using = false
|
|
||||||
mod_sort_include = false
|
|
||||||
mod_sort_incl_import_prioritize_filename = false
|
|
||||||
mod_sort_incl_import_prioritize_extensionless = false
|
|
||||||
mod_sort_incl_import_prioritize_angle_over_quotes = false
|
|
||||||
mod_sort_incl_import_ignore_extension = false
|
|
||||||
mod_sort_incl_import_grouping_enabled = false
|
|
||||||
mod_move_case_break = false
|
|
||||||
mod_case_brace = ignore
|
|
||||||
mod_remove_empty_return = false
|
|
||||||
mod_enum_last_comma = ignore
|
|
||||||
mod_sort_oc_properties = false
|
|
||||||
mod_sort_oc_property_class_weight = 0
|
|
||||||
mod_sort_oc_property_thread_safe_weight = 0
|
|
||||||
mod_sort_oc_property_readwrite_weight = 0
|
|
||||||
mod_sort_oc_property_reference_weight = 0
|
|
||||||
mod_sort_oc_property_getter_weight = 0
|
|
||||||
mod_sort_oc_property_setter_weight = 0
|
|
||||||
mod_sort_oc_property_nullability_weight = 0
|
|
||||||
pp_indent = ignore
|
|
||||||
pp_indent_at_level = false
|
|
||||||
pp_indent_count = 1
|
|
||||||
pp_space = ignore
|
|
||||||
pp_space_count = 0
|
|
||||||
pp_indent_region = 0
|
|
||||||
pp_region_indent_code = false
|
|
||||||
pp_indent_if = 0
|
|
||||||
pp_if_indent_code = false
|
|
||||||
pp_define_at_level = false
|
|
||||||
pp_ignore_define_body = false
|
|
||||||
pp_indent_case = true
|
|
||||||
pp_indent_func_def = true
|
|
||||||
pp_indent_extern = true
|
|
||||||
pp_indent_brace = true
|
|
||||||
include_category_0 = ""
|
|
||||||
include_category_1 = ""
|
|
||||||
include_category_2 = ""
|
|
||||||
use_indent_func_call_param = true
|
|
||||||
use_indent_continue_only_once = false
|
|
||||||
indent_cpp_lambda_only_once = false
|
|
||||||
use_sp_after_angle_always = false
|
|
||||||
use_options_overriding_for_qt_macros = true
|
|
||||||
use_form_feed_no_more_as_whitespace_character = false
|
|
||||||
warn_level_tabs_found_in_verbatim_string_literals = 2
|
|
||||||
debug_max_number_of_loops = 0
|
|
||||||
debug_line_number_to_protocol = 0
|
|
||||||
debug_timeout = 0
|
|
||||||
debug_truncate = 0
|
|
||||||
# option(s) with 'not default' value: 0
|
|
||||||
#
|
|
File diff suppressed because it is too large
Load Diff
@ -1,756 +0,0 @@
|
|||||||
|
|
||||||
newlines = crlf
|
|
||||||
input_tab_size = 8
|
|
||||||
output_tab_size = 8
|
|
||||||
string_escape_char = 92
|
|
||||||
string_escape_char2 = 0
|
|
||||||
string_replace_tab_chars = false
|
|
||||||
tok_split_gte = false
|
|
||||||
disable_processing_nl_cont = false
|
|
||||||
disable_processing_cmt = " *INDENT-OFF*"
|
|
||||||
enable_processing_cmt = " *INDENT-ON*"
|
|
||||||
enable_digraphs = false
|
|
||||||
processing_cmt_as_regex = false
|
|
||||||
utf8_bom = ignore
|
|
||||||
utf8_byte = false
|
|
||||||
utf8_force = false
|
|
||||||
sp_arith = ignore
|
|
||||||
sp_arith_additive = ignore
|
|
||||||
sp_assign = ignore
|
|
||||||
sp_cpp_lambda_assign = ignore
|
|
||||||
sp_cpp_lambda_square_paren = ignore
|
|
||||||
sp_cpp_lambda_square_brace = ignore
|
|
||||||
sp_cpp_lambda_argument_list = ignore
|
|
||||||
sp_cpp_lambda_paren_brace = ignore
|
|
||||||
sp_cpp_lambda_fparen = ignore
|
|
||||||
sp_assign_default = ignore
|
|
||||||
sp_before_assign = ignore
|
|
||||||
sp_after_assign = ignore
|
|
||||||
sp_enum_paren = ignore
|
|
||||||
sp_enum_assign = ignore
|
|
||||||
sp_enum_before_assign = ignore
|
|
||||||
sp_enum_after_assign = ignore
|
|
||||||
sp_enum_colon = ignore
|
|
||||||
sp_pp_concat = add
|
|
||||||
sp_pp_stringify = ignore
|
|
||||||
sp_before_pp_stringify = ignore
|
|
||||||
sp_bool = ignore
|
|
||||||
sp_compare = ignore
|
|
||||||
sp_inside_paren = ignore
|
|
||||||
sp_paren_paren = ignore
|
|
||||||
sp_cparen_oparen = ignore
|
|
||||||
sp_balance_nested_parens = false
|
|
||||||
sp_paren_brace = ignore
|
|
||||||
sp_brace_brace = ignore
|
|
||||||
sp_before_ptr_star = ignore
|
|
||||||
sp_before_unnamed_ptr_star = ignore
|
|
||||||
sp_between_ptr_star = ignore
|
|
||||||
sp_after_ptr_star = ignore
|
|
||||||
sp_after_ptr_block_caret = ignore
|
|
||||||
sp_after_ptr_star_qualifier = ignore
|
|
||||||
sp_after_ptr_star_func = ignore
|
|
||||||
sp_ptr_star_paren = ignore
|
|
||||||
sp_before_ptr_star_func = ignore
|
|
||||||
sp_before_byref = ignore
|
|
||||||
sp_before_unnamed_byref = ignore
|
|
||||||
sp_after_byref = ignore
|
|
||||||
sp_after_byref_func = ignore
|
|
||||||
sp_before_byref_func = ignore
|
|
||||||
sp_after_type = force
|
|
||||||
sp_after_decltype = ignore
|
|
||||||
sp_before_template_paren = ignore
|
|
||||||
sp_template_angle = ignore
|
|
||||||
sp_before_angle = ignore
|
|
||||||
sp_inside_angle = ignore
|
|
||||||
sp_inside_angle_empty = ignore
|
|
||||||
sp_angle_colon = ignore
|
|
||||||
sp_after_angle = ignore
|
|
||||||
sp_angle_paren = ignore
|
|
||||||
sp_angle_paren_empty = ignore
|
|
||||||
sp_angle_word = ignore
|
|
||||||
sp_angle_shift = add
|
|
||||||
sp_permit_cpp11_shift = false
|
|
||||||
sp_before_sparen = ignore
|
|
||||||
sp_inside_sparen = ignore
|
|
||||||
sp_inside_sparen_open = ignore
|
|
||||||
sp_inside_sparen_close = ignore
|
|
||||||
sp_after_sparen = ignore
|
|
||||||
sp_sparen_brace = ignore
|
|
||||||
sp_do_brace_open = ignore
|
|
||||||
sp_brace_close_while = ignore
|
|
||||||
sp_while_paren_open = ignore
|
|
||||||
sp_invariant_paren = ignore
|
|
||||||
sp_after_invariant_paren = ignore
|
|
||||||
sp_special_semi = ignore
|
|
||||||
sp_before_semi = remove
|
|
||||||
sp_before_semi_for = ignore
|
|
||||||
sp_before_semi_for_empty = ignore
|
|
||||||
sp_after_semi = add
|
|
||||||
sp_after_semi_for = force
|
|
||||||
sp_after_semi_for_empty = ignore
|
|
||||||
sp_before_square = ignore
|
|
||||||
sp_before_vardef_square = remove
|
|
||||||
sp_before_square_asm_block = ignore
|
|
||||||
sp_before_squares = ignore
|
|
||||||
sp_cpp_before_struct_binding = ignore
|
|
||||||
sp_inside_square = ignore
|
|
||||||
sp_inside_square_empty = ignore
|
|
||||||
sp_inside_square_oc_array = ignore
|
|
||||||
sp_after_comma = ignore
|
|
||||||
sp_before_comma = remove
|
|
||||||
sp_after_mdatype_commas = ignore
|
|
||||||
sp_before_mdatype_commas = ignore
|
|
||||||
sp_between_mdatype_commas = ignore
|
|
||||||
sp_paren_comma = force
|
|
||||||
sp_before_ellipsis = ignore
|
|
||||||
sp_type_ellipsis = ignore
|
|
||||||
sp_type_question = ignore
|
|
||||||
sp_paren_ellipsis = ignore
|
|
||||||
sp_paren_qualifier = ignore
|
|
||||||
sp_paren_noexcept = ignore
|
|
||||||
sp_after_class_colon = ignore
|
|
||||||
sp_before_class_colon = ignore
|
|
||||||
sp_after_constr_colon = ignore
|
|
||||||
sp_before_constr_colon = ignore
|
|
||||||
sp_before_case_colon = remove
|
|
||||||
sp_after_operator = ignore
|
|
||||||
sp_after_operator_sym = ignore
|
|
||||||
sp_after_operator_sym_empty = ignore
|
|
||||||
sp_after_cast = ignore
|
|
||||||
sp_inside_paren_cast = ignore
|
|
||||||
sp_cpp_cast_paren = ignore
|
|
||||||
sp_sizeof_paren = ignore
|
|
||||||
sp_sizeof_ellipsis = ignore
|
|
||||||
sp_sizeof_ellipsis_paren = ignore
|
|
||||||
sp_decltype_paren = ignore
|
|
||||||
sp_after_tag = ignore
|
|
||||||
sp_inside_braces_enum = ignore
|
|
||||||
sp_inside_braces_struct = ignore
|
|
||||||
sp_inside_braces_oc_dict = ignore
|
|
||||||
sp_after_type_brace_init_lst_open = ignore
|
|
||||||
sp_before_type_brace_init_lst_close = ignore
|
|
||||||
sp_inside_type_brace_init_lst = ignore
|
|
||||||
sp_inside_braces = ignore
|
|
||||||
sp_inside_braces_empty = ignore
|
|
||||||
sp_trailing_return = ignore
|
|
||||||
sp_type_func = ignore
|
|
||||||
sp_type_brace_init_lst = ignore
|
|
||||||
sp_func_proto_paren = ignore
|
|
||||||
sp_func_proto_paren_empty = ignore
|
|
||||||
sp_func_type_paren = ignore
|
|
||||||
sp_func_def_paren = ignore
|
|
||||||
sp_func_def_paren_empty = ignore
|
|
||||||
sp_inside_fparens = ignore
|
|
||||||
sp_inside_fparen = ignore
|
|
||||||
sp_inside_tparen = ignore
|
|
||||||
sp_after_tparen_close = ignore
|
|
||||||
sp_square_fparen = ignore
|
|
||||||
sp_fparen_brace = ignore
|
|
||||||
sp_fparen_brace_initializer = ignore
|
|
||||||
sp_fparen_dbrace = ignore
|
|
||||||
sp_func_call_paren = ignore
|
|
||||||
sp_func_call_paren_empty = ignore
|
|
||||||
sp_func_call_user_paren = ignore
|
|
||||||
sp_func_call_user_inside_fparen = ignore
|
|
||||||
sp_func_call_user_paren_paren = ignore
|
|
||||||
sp_func_class_paren = ignore
|
|
||||||
sp_func_class_paren_empty = ignore
|
|
||||||
sp_return_paren = ignore
|
|
||||||
sp_return_brace = ignore
|
|
||||||
sp_attribute_paren = ignore
|
|
||||||
sp_defined_paren = ignore
|
|
||||||
sp_throw_paren = ignore
|
|
||||||
sp_after_throw = ignore
|
|
||||||
sp_catch_paren = ignore
|
|
||||||
sp_oc_catch_paren = ignore
|
|
||||||
sp_before_oc_proto_list = ignore
|
|
||||||
sp_oc_classname_paren = ignore
|
|
||||||
sp_version_paren = ignore
|
|
||||||
sp_scope_paren = ignore
|
|
||||||
sp_super_paren = remove
|
|
||||||
sp_this_paren = remove
|
|
||||||
sp_macro = ignore
|
|
||||||
sp_macro_func = ignore
|
|
||||||
sp_else_brace = ignore
|
|
||||||
sp_brace_else = ignore
|
|
||||||
sp_brace_typedef = ignore
|
|
||||||
sp_catch_brace = ignore
|
|
||||||
sp_oc_catch_brace = ignore
|
|
||||||
sp_brace_catch = ignore
|
|
||||||
sp_oc_brace_catch = ignore
|
|
||||||
sp_finally_brace = ignore
|
|
||||||
sp_brace_finally = ignore
|
|
||||||
sp_try_brace = ignore
|
|
||||||
sp_getset_brace = ignore
|
|
||||||
sp_word_brace_init_lst = ignore
|
|
||||||
sp_word_brace_ns = add
|
|
||||||
sp_before_dc = ignore
|
|
||||||
sp_after_dc = ignore
|
|
||||||
sp_d_array_colon = ignore
|
|
||||||
sp_not = remove
|
|
||||||
sp_inv = remove
|
|
||||||
sp_addr = remove
|
|
||||||
sp_member = remove
|
|
||||||
sp_deref = remove
|
|
||||||
sp_sign = remove
|
|
||||||
sp_incdec = remove
|
|
||||||
sp_before_nl_cont = add
|
|
||||||
sp_after_oc_scope = ignore
|
|
||||||
sp_after_oc_colon = ignore
|
|
||||||
sp_before_oc_colon = ignore
|
|
||||||
sp_after_oc_dict_colon = ignore
|
|
||||||
sp_before_oc_dict_colon = ignore
|
|
||||||
sp_after_send_oc_colon = ignore
|
|
||||||
sp_before_send_oc_colon = ignore
|
|
||||||
sp_after_oc_type = ignore
|
|
||||||
sp_after_oc_return_type = ignore
|
|
||||||
sp_after_oc_at_sel = ignore
|
|
||||||
sp_after_oc_at_sel_parens = ignore
|
|
||||||
sp_inside_oc_at_sel_parens = ignore
|
|
||||||
sp_before_oc_block_caret = ignore
|
|
||||||
sp_after_oc_block_caret = ignore
|
|
||||||
sp_after_oc_msg_receiver = ignore
|
|
||||||
sp_after_oc_property = ignore
|
|
||||||
sp_after_oc_synchronized = ignore
|
|
||||||
sp_cond_colon = ignore
|
|
||||||
sp_cond_colon_before = ignore
|
|
||||||
sp_cond_colon_after = ignore
|
|
||||||
sp_cond_question = ignore
|
|
||||||
sp_cond_question_before = ignore
|
|
||||||
sp_cond_question_after = ignore
|
|
||||||
sp_cond_ternary_short = ignore
|
|
||||||
sp_case_label = ignore
|
|
||||||
sp_range = ignore
|
|
||||||
sp_after_for_colon = ignore
|
|
||||||
sp_before_for_colon = ignore
|
|
||||||
sp_extern_paren = ignore
|
|
||||||
sp_cmt_cpp_start = ignore
|
|
||||||
sp_cmt_cpp_region = ignore
|
|
||||||
sp_cmt_cpp_doxygen = false
|
|
||||||
sp_cmt_cpp_qttr = false
|
|
||||||
sp_endif_cmt = ignore
|
|
||||||
sp_after_new = ignore
|
|
||||||
sp_between_new_paren = ignore
|
|
||||||
sp_after_newop_paren = ignore
|
|
||||||
sp_inside_newop_paren = ignore
|
|
||||||
sp_inside_newop_paren_open = ignore
|
|
||||||
sp_inside_newop_paren_close = ignore
|
|
||||||
sp_before_tr_emb_cmt = ignore
|
|
||||||
sp_num_before_tr_emb_cmt = 0
|
|
||||||
sp_annotation_paren = ignore
|
|
||||||
sp_skip_vbrace_tokens = false
|
|
||||||
sp_after_noexcept = ignore
|
|
||||||
sp_vala_after_translation = ignore
|
|
||||||
force_tab_after_define = false
|
|
||||||
indent_columns = 8
|
|
||||||
indent_continue = 0
|
|
||||||
indent_continue_class_head = 0
|
|
||||||
indent_single_newlines = false
|
|
||||||
indent_param = 0
|
|
||||||
indent_with_tabs = 1
|
|
||||||
indent_cmt_with_tabs = false
|
|
||||||
indent_align_string = false
|
|
||||||
indent_xml_string = 0
|
|
||||||
indent_brace = 0
|
|
||||||
indent_braces = false
|
|
||||||
indent_braces_no_func = false
|
|
||||||
indent_braces_no_class = false
|
|
||||||
indent_braces_no_struct = false
|
|
||||||
indent_brace_parent = false
|
|
||||||
indent_paren_open_brace = false
|
|
||||||
indent_cs_delegate_brace = false
|
|
||||||
indent_cs_delegate_body = false
|
|
||||||
indent_namespace = false
|
|
||||||
indent_namespace_single_indent = false
|
|
||||||
indent_namespace_level = 0
|
|
||||||
indent_namespace_limit = 0
|
|
||||||
indent_extern = false
|
|
||||||
indent_class = false
|
|
||||||
indent_before_class_colon = 0
|
|
||||||
indent_class_colon = false
|
|
||||||
indent_class_on_colon = false
|
|
||||||
indent_constr_colon = false
|
|
||||||
indent_ctor_init_leading = 2
|
|
||||||
indent_ctor_init = 0
|
|
||||||
indent_else_if = false
|
|
||||||
indent_var_def_blk = 0
|
|
||||||
indent_var_def_cont = false
|
|
||||||
indent_shift = false
|
|
||||||
indent_func_def_force_col1 = false
|
|
||||||
indent_func_call_param = false
|
|
||||||
indent_func_def_param = false
|
|
||||||
indent_func_def_param_paren_pos_threshold = 0
|
|
||||||
indent_func_proto_param = false
|
|
||||||
indent_func_class_param = false
|
|
||||||
indent_func_ctor_var_param = false
|
|
||||||
indent_template_param = false
|
|
||||||
indent_func_param_double = false
|
|
||||||
indent_func_const = 0
|
|
||||||
indent_func_throw = 0
|
|
||||||
indent_macro_brace = true
|
|
||||||
indent_member = 0
|
|
||||||
indent_member_single = false
|
|
||||||
indent_sing_line_comments = 0
|
|
||||||
indent_sparen_extra = 0
|
|
||||||
indent_relative_single_line_comments = false
|
|
||||||
indent_switch_case = 0
|
|
||||||
indent_case_brace = 0
|
|
||||||
indent_switch_break_with_case = false
|
|
||||||
indent_switch_pp = true
|
|
||||||
indent_case_shift = 0
|
|
||||||
indent_col1_comment = false
|
|
||||||
indent_col1_multi_string_literal = false
|
|
||||||
indent_label = 1
|
|
||||||
indent_access_spec = 1
|
|
||||||
indent_access_spec_body = false
|
|
||||||
indent_paren_nl = false
|
|
||||||
indent_paren_close = 0
|
|
||||||
indent_paren_after_func_def = false
|
|
||||||
indent_paren_after_func_decl = false
|
|
||||||
indent_paren_after_func_call = false
|
|
||||||
indent_comma_brace = false
|
|
||||||
indent_comma_paren = false
|
|
||||||
indent_bool_paren = false
|
|
||||||
indent_semicolon_for_paren = false
|
|
||||||
indent_first_bool_expr = false
|
|
||||||
indent_first_for_expr = false
|
|
||||||
indent_square_nl = false
|
|
||||||
indent_preserve_sql = false
|
|
||||||
indent_align_assign = true
|
|
||||||
indent_off_after_assign = false
|
|
||||||
indent_align_paren = true
|
|
||||||
indent_oc_inside_msg_sel = false
|
|
||||||
indent_oc_block = false
|
|
||||||
indent_oc_block_msg = 0
|
|
||||||
indent_oc_msg_colon = 0
|
|
||||||
indent_oc_msg_prioritize_first_colon = true
|
|
||||||
indent_oc_block_msg_xcode_style = false
|
|
||||||
indent_oc_block_msg_from_keyword = false
|
|
||||||
indent_oc_block_msg_from_colon = false
|
|
||||||
indent_oc_block_msg_from_caret = false
|
|
||||||
indent_oc_block_msg_from_brace = false
|
|
||||||
indent_min_vbrace_open = 0
|
|
||||||
indent_vbrace_open_on_tabstop = false
|
|
||||||
indent_token_after_brace = true
|
|
||||||
indent_cpp_lambda_body = false
|
|
||||||
indent_compound_literal_return = true
|
|
||||||
indent_using_block = true
|
|
||||||
indent_ternary_operator = 0
|
|
||||||
indent_inside_ternary_operator = false
|
|
||||||
indent_off_after_return = false
|
|
||||||
indent_off_after_return_new = false
|
|
||||||
indent_single_after_return = false
|
|
||||||
indent_ignore_asm_block = false
|
|
||||||
donot_indent_func_def_close_paren = false
|
|
||||||
nl_collapse_empty_body = false
|
|
||||||
nl_assign_leave_one_liners = false
|
|
||||||
nl_class_leave_one_liners = false
|
|
||||||
nl_enum_leave_one_liners = false
|
|
||||||
nl_getset_leave_one_liners = false
|
|
||||||
nl_cs_property_leave_one_liners = false
|
|
||||||
nl_func_leave_one_liners = false
|
|
||||||
nl_cpp_lambda_leave_one_liners = false
|
|
||||||
nl_if_leave_one_liners = false
|
|
||||||
nl_while_leave_one_liners = false
|
|
||||||
nl_do_leave_one_liners = false
|
|
||||||
nl_for_leave_one_liners = false
|
|
||||||
nl_oc_msg_leave_one_liner = false
|
|
||||||
nl_oc_mdef_brace = ignore
|
|
||||||
nl_oc_block_brace = ignore
|
|
||||||
nl_oc_before_interface = ignore
|
|
||||||
nl_oc_before_implementation = ignore
|
|
||||||
nl_oc_before_end = ignore
|
|
||||||
nl_oc_interface_brace = ignore
|
|
||||||
nl_oc_implementation_brace = ignore
|
|
||||||
nl_start_of_file = ignore
|
|
||||||
nl_start_of_file_min = 0
|
|
||||||
nl_end_of_file = ignore
|
|
||||||
nl_end_of_file_min = 0
|
|
||||||
nl_assign_brace = ignore
|
|
||||||
nl_assign_square = ignore
|
|
||||||
nl_tsquare_brace = ignore
|
|
||||||
nl_after_square_assign = ignore
|
|
||||||
nl_fcall_brace = ignore
|
|
||||||
nl_enum_brace = ignore
|
|
||||||
nl_enum_class = ignore
|
|
||||||
nl_enum_class_identifier = ignore
|
|
||||||
nl_enum_identifier_colon = ignore
|
|
||||||
nl_enum_colon_type = ignore
|
|
||||||
nl_struct_brace = ignore
|
|
||||||
nl_union_brace = ignore
|
|
||||||
nl_if_brace = ignore
|
|
||||||
nl_brace_else = ignore
|
|
||||||
nl_elseif_brace = ignore
|
|
||||||
nl_else_brace = ignore
|
|
||||||
nl_else_if = ignore
|
|
||||||
nl_before_opening_brace_func_class_def = ignore
|
|
||||||
nl_before_if_closing_paren = ignore
|
|
||||||
nl_brace_finally = ignore
|
|
||||||
nl_finally_brace = ignore
|
|
||||||
nl_try_brace = ignore
|
|
||||||
nl_getset_brace = ignore
|
|
||||||
nl_for_brace = ignore
|
|
||||||
nl_catch_brace = ignore
|
|
||||||
nl_oc_catch_brace = ignore
|
|
||||||
nl_brace_catch = ignore
|
|
||||||
nl_oc_brace_catch = ignore
|
|
||||||
nl_brace_square = ignore
|
|
||||||
nl_brace_fparen = ignore
|
|
||||||
nl_while_brace = ignore
|
|
||||||
nl_scope_brace = ignore
|
|
||||||
nl_unittest_brace = ignore
|
|
||||||
nl_version_brace = ignore
|
|
||||||
nl_using_brace = ignore
|
|
||||||
nl_brace_brace = ignore
|
|
||||||
nl_do_brace = ignore
|
|
||||||
nl_brace_while = ignore
|
|
||||||
nl_switch_brace = ignore
|
|
||||||
nl_synchronized_brace = ignore
|
|
||||||
nl_multi_line_cond = false
|
|
||||||
nl_multi_line_sparen_open = ignore
|
|
||||||
nl_multi_line_sparen_close = ignore
|
|
||||||
nl_multi_line_define = false
|
|
||||||
nl_before_case = false
|
|
||||||
nl_after_case = false
|
|
||||||
nl_case_colon_brace = ignore
|
|
||||||
nl_before_throw = ignore
|
|
||||||
nl_namespace_brace = ignore
|
|
||||||
nl_template_class = ignore
|
|
||||||
nl_template_class_decl = ignore
|
|
||||||
nl_template_class_decl_special = ignore
|
|
||||||
nl_template_class_def = ignore
|
|
||||||
nl_template_class_def_special = ignore
|
|
||||||
nl_template_func = ignore
|
|
||||||
nl_template_func_decl = ignore
|
|
||||||
nl_template_func_decl_special = ignore
|
|
||||||
nl_template_func_def = ignore
|
|
||||||
nl_template_func_def_special = ignore
|
|
||||||
nl_template_var = ignore
|
|
||||||
nl_template_using = ignore
|
|
||||||
nl_class_brace = ignore
|
|
||||||
nl_class_init_args = ignore
|
|
||||||
nl_constr_init_args = ignore
|
|
||||||
nl_enum_own_lines = ignore
|
|
||||||
nl_func_type_name = ignore
|
|
||||||
nl_func_type_name_class = ignore
|
|
||||||
nl_func_class_scope = ignore
|
|
||||||
nl_func_scope_name = ignore
|
|
||||||
nl_func_proto_type_name = ignore
|
|
||||||
nl_func_paren = ignore
|
|
||||||
nl_func_paren_empty = ignore
|
|
||||||
nl_func_def_paren = ignore
|
|
||||||
nl_func_def_paren_empty = ignore
|
|
||||||
nl_func_call_paren = ignore
|
|
||||||
nl_func_call_paren_empty = ignore
|
|
||||||
nl_func_decl_start = ignore
|
|
||||||
nl_func_def_start = ignore
|
|
||||||
nl_func_decl_start_single = ignore
|
|
||||||
nl_func_def_start_single = ignore
|
|
||||||
nl_func_decl_start_multi_line = false
|
|
||||||
nl_func_def_start_multi_line = false
|
|
||||||
nl_func_decl_args = ignore
|
|
||||||
nl_func_def_args = ignore
|
|
||||||
nl_func_call_args = ignore
|
|
||||||
nl_func_decl_args_multi_line = false
|
|
||||||
nl_func_def_args_multi_line = false
|
|
||||||
nl_func_decl_end = ignore
|
|
||||||
nl_func_def_end = ignore
|
|
||||||
nl_func_decl_end_single = ignore
|
|
||||||
nl_func_def_end_single = ignore
|
|
||||||
nl_func_decl_end_multi_line = false
|
|
||||||
nl_func_def_end_multi_line = false
|
|
||||||
nl_func_decl_empty = ignore
|
|
||||||
nl_func_def_empty = ignore
|
|
||||||
nl_func_call_empty = ignore
|
|
||||||
nl_func_call_start = ignore
|
|
||||||
nl_func_call_end = ignore
|
|
||||||
nl_func_call_start_multi_line = false
|
|
||||||
nl_func_call_args_multi_line = false
|
|
||||||
nl_func_call_end_multi_line = false
|
|
||||||
nl_func_call_args_multi_line_ignore_closures = false
|
|
||||||
nl_template_start = false
|
|
||||||
nl_template_args = false
|
|
||||||
nl_template_end = false
|
|
||||||
nl_oc_msg_args = false
|
|
||||||
nl_fdef_brace = ignore
|
|
||||||
nl_fdef_brace_cond = ignore
|
|
||||||
nl_cpp_ldef_brace = ignore
|
|
||||||
nl_return_expr = ignore
|
|
||||||
nl_after_semicolon = false
|
|
||||||
nl_paren_dbrace_open = ignore
|
|
||||||
nl_type_brace_init_lst = ignore
|
|
||||||
nl_type_brace_init_lst_open = ignore
|
|
||||||
nl_type_brace_init_lst_close = ignore
|
|
||||||
nl_after_brace_open = false
|
|
||||||
nl_after_brace_open_cmt = false
|
|
||||||
nl_after_vbrace_open = false
|
|
||||||
nl_after_vbrace_open_empty = false
|
|
||||||
nl_after_brace_close = false
|
|
||||||
nl_after_vbrace_close = false
|
|
||||||
nl_brace_struct_var = ignore
|
|
||||||
nl_define_macro = false
|
|
||||||
nl_squeeze_paren_close = false
|
|
||||||
nl_squeeze_ifdef = false
|
|
||||||
nl_squeeze_ifdef_top_level = false
|
|
||||||
nl_before_if = ignore
|
|
||||||
nl_after_if = ignore
|
|
||||||
nl_before_for = ignore
|
|
||||||
nl_after_for = ignore
|
|
||||||
nl_before_while = ignore
|
|
||||||
nl_after_while = ignore
|
|
||||||
nl_before_switch = ignore
|
|
||||||
nl_after_switch = ignore
|
|
||||||
nl_before_synchronized = ignore
|
|
||||||
nl_after_synchronized = ignore
|
|
||||||
nl_before_do = ignore
|
|
||||||
nl_after_do = ignore
|
|
||||||
nl_before_return = false
|
|
||||||
nl_after_return = false
|
|
||||||
nl_before_member = ignore
|
|
||||||
nl_after_member = ignore
|
|
||||||
nl_ds_struct_enum_cmt = false
|
|
||||||
nl_ds_struct_enum_close_brace = false
|
|
||||||
nl_class_colon = ignore
|
|
||||||
nl_constr_colon = ignore
|
|
||||||
nl_namespace_two_to_one_liner = false
|
|
||||||
nl_create_if_one_liner = false
|
|
||||||
nl_create_for_one_liner = false
|
|
||||||
nl_create_while_one_liner = false
|
|
||||||
nl_create_func_def_one_liner = false
|
|
||||||
nl_create_list_one_liner = false
|
|
||||||
nl_split_if_one_liner = false
|
|
||||||
nl_split_for_one_liner = false
|
|
||||||
nl_split_while_one_liner = false
|
|
||||||
donot_add_nl_before_cpp_comment = false
|
|
||||||
nl_max = 0
|
|
||||||
nl_max_blank_in_func = 0
|
|
||||||
nl_inside_empty_func = 0
|
|
||||||
nl_before_func_body_proto = 0
|
|
||||||
nl_before_func_body_def = 0
|
|
||||||
nl_before_func_class_proto = 0
|
|
||||||
nl_before_func_class_def = 0
|
|
||||||
nl_after_func_proto = 0
|
|
||||||
nl_after_func_proto_group = 0
|
|
||||||
nl_after_func_class_proto = 0
|
|
||||||
nl_after_func_class_proto_group = 0
|
|
||||||
nl_class_leave_one_liner_groups = false
|
|
||||||
nl_after_func_body = 0
|
|
||||||
nl_after_func_body_class = 0
|
|
||||||
nl_after_func_body_one_liner = 0
|
|
||||||
nl_func_var_def_blk = 0
|
|
||||||
nl_typedef_blk_start = 0
|
|
||||||
nl_typedef_blk_end = 0
|
|
||||||
nl_typedef_blk_in = 0
|
|
||||||
nl_var_def_blk_start = 0
|
|
||||||
nl_var_def_blk_end = 0
|
|
||||||
nl_var_def_blk_in = 0
|
|
||||||
nl_before_block_comment = 0
|
|
||||||
nl_before_c_comment = 0
|
|
||||||
nl_before_cpp_comment = 0
|
|
||||||
nl_after_multiline_comment = false
|
|
||||||
nl_after_label_colon = false
|
|
||||||
nl_after_struct = 0
|
|
||||||
nl_before_class = 0
|
|
||||||
nl_after_class = 0
|
|
||||||
nl_before_namespace = 0
|
|
||||||
nl_inside_namespace = 0
|
|
||||||
nl_after_namespace = 0
|
|
||||||
nl_before_access_spec = 0
|
|
||||||
nl_after_access_spec = 0
|
|
||||||
nl_comment_func_def = 0
|
|
||||||
nl_after_try_catch_finally = 0
|
|
||||||
nl_around_cs_property = 0
|
|
||||||
nl_between_get_set = 0
|
|
||||||
nl_property_brace = ignore
|
|
||||||
eat_blanks_after_open_brace = false
|
|
||||||
eat_blanks_before_close_brace = false
|
|
||||||
nl_remove_extra_newlines = 0
|
|
||||||
nl_after_annotation = ignore
|
|
||||||
nl_between_annotation = ignore
|
|
||||||
nl_before_whole_file_ifdef = 0
|
|
||||||
nl_after_whole_file_ifdef = 0
|
|
||||||
nl_before_whole_file_endif = 0
|
|
||||||
nl_after_whole_file_endif = 0
|
|
||||||
pos_arith = ignore
|
|
||||||
pos_assign = ignore
|
|
||||||
pos_bool = ignore
|
|
||||||
pos_compare = ignore
|
|
||||||
pos_conditional = ignore
|
|
||||||
pos_comma = ignore
|
|
||||||
pos_enum_comma = ignore
|
|
||||||
pos_class_comma = ignore
|
|
||||||
pos_constr_comma = ignore
|
|
||||||
pos_class_colon = ignore
|
|
||||||
pos_constr_colon = ignore
|
|
||||||
pos_shift = ignore
|
|
||||||
code_width = 0
|
|
||||||
ls_for_split_full = false
|
|
||||||
ls_func_split_full = false
|
|
||||||
ls_code_width = false
|
|
||||||
align_keep_tabs = false
|
|
||||||
align_with_tabs = false
|
|
||||||
align_on_tabstop = false
|
|
||||||
align_number_right = false
|
|
||||||
align_keep_extra_space = false
|
|
||||||
align_func_params = false
|
|
||||||
align_func_params_span = 0
|
|
||||||
align_func_params_thresh = 0
|
|
||||||
align_func_params_gap = 0
|
|
||||||
align_constr_value_span = 0
|
|
||||||
align_constr_value_thresh = 0
|
|
||||||
align_constr_value_gap = 0
|
|
||||||
align_same_func_call_params = false
|
|
||||||
align_same_func_call_params_span = 0
|
|
||||||
align_same_func_call_params_thresh = 0
|
|
||||||
align_var_def_span = 0
|
|
||||||
align_var_def_star_style = 0
|
|
||||||
align_var_def_amp_style = 0
|
|
||||||
align_var_def_thresh = 0
|
|
||||||
align_var_def_gap = 0
|
|
||||||
align_var_def_colon = false
|
|
||||||
align_var_def_colon_gap = 0
|
|
||||||
align_var_def_attribute = false
|
|
||||||
align_var_def_inline = false
|
|
||||||
align_assign_span = 0
|
|
||||||
align_assign_func_proto_span = 0
|
|
||||||
align_assign_thresh = 0
|
|
||||||
align_assign_decl_func = 0
|
|
||||||
align_enum_equ_span = 0
|
|
||||||
align_enum_equ_thresh = 0
|
|
||||||
align_var_class_span = 0
|
|
||||||
align_var_class_thresh = 0
|
|
||||||
align_var_class_gap = 0
|
|
||||||
align_var_struct_span = 0
|
|
||||||
align_var_struct_thresh = 0
|
|
||||||
align_var_struct_gap = 0
|
|
||||||
align_struct_init_span = 0
|
|
||||||
align_typedef_span = 0
|
|
||||||
align_typedef_gap = 0
|
|
||||||
align_typedef_func = 0
|
|
||||||
align_typedef_star_style = 0
|
|
||||||
align_typedef_amp_style = 0
|
|
||||||
align_right_cmt_span = 0
|
|
||||||
align_right_cmt_gap = 0
|
|
||||||
align_right_cmt_mix = false
|
|
||||||
align_right_cmt_same_level = false
|
|
||||||
align_right_cmt_at_col = 0
|
|
||||||
align_func_proto_span = 0
|
|
||||||
align_func_proto_thresh = 0
|
|
||||||
align_func_proto_gap = 0
|
|
||||||
align_on_operator = false
|
|
||||||
align_mix_var_proto = false
|
|
||||||
align_single_line_func = false
|
|
||||||
align_single_line_brace = false
|
|
||||||
align_single_line_brace_gap = 0
|
|
||||||
align_oc_msg_spec_span = 0
|
|
||||||
align_nl_cont = false
|
|
||||||
align_pp_define_together = false
|
|
||||||
align_pp_define_span = 0
|
|
||||||
align_pp_define_gap = 0
|
|
||||||
align_left_shift = true
|
|
||||||
align_eigen_comma_init = false
|
|
||||||
align_asm_colon = false
|
|
||||||
align_oc_msg_colon_span = 0
|
|
||||||
align_oc_msg_colon_first = false
|
|
||||||
align_oc_decl_colon = false
|
|
||||||
align_oc_msg_colon_xcode_like = false
|
|
||||||
cmt_width = 0
|
|
||||||
cmt_reflow_mode = 0
|
|
||||||
cmt_reflow_fold_regex_file = ""
|
|
||||||
cmt_reflow_indent_to_paragraph_start = false
|
|
||||||
cmt_convert_tab_to_spaces = false
|
|
||||||
cmt_indent_multi = true
|
|
||||||
cmt_align_doxygen_javadoc_tags = false
|
|
||||||
cmt_sp_before_doxygen_javadoc_tags = 1
|
|
||||||
cmt_c_group = false
|
|
||||||
cmt_c_nl_start = false
|
|
||||||
cmt_c_nl_end = false
|
|
||||||
cmt_cpp_to_c = false
|
|
||||||
cmt_cpp_group = false
|
|
||||||
cmt_cpp_nl_start = false
|
|
||||||
cmt_cpp_nl_end = false
|
|
||||||
cmt_star_cont = false
|
|
||||||
cmt_sp_before_star_cont = 0
|
|
||||||
cmt_sp_after_star_cont = 0
|
|
||||||
cmt_multi_check_last = true
|
|
||||||
cmt_multi_first_len_minimum = 4
|
|
||||||
cmt_insert_file_header = ""
|
|
||||||
cmt_insert_file_footer = ""
|
|
||||||
cmt_insert_func_header = ""
|
|
||||||
cmt_insert_class_header = ""
|
|
||||||
cmt_insert_oc_msg_header = ""
|
|
||||||
cmt_insert_before_preproc = false
|
|
||||||
cmt_insert_before_inlines = true
|
|
||||||
cmt_insert_before_ctor_dtor = false
|
|
||||||
mod_full_brace_do = ignore
|
|
||||||
mod_full_brace_for = ignore
|
|
||||||
mod_full_brace_function = ignore
|
|
||||||
mod_full_brace_if = ignore
|
|
||||||
mod_full_brace_if_chain = false
|
|
||||||
mod_full_brace_if_chain_only = false
|
|
||||||
mod_full_brace_while = ignore
|
|
||||||
mod_full_brace_using = ignore
|
|
||||||
mod_full_brace_nl = 0
|
|
||||||
mod_full_brace_nl_block_rem_mlcond = false
|
|
||||||
mod_paren_on_return = ignore
|
|
||||||
mod_pawn_semicolon = false
|
|
||||||
mod_full_paren_if_bool = false
|
|
||||||
mod_remove_extra_semicolon = false
|
|
||||||
mod_add_long_function_closebrace_comment = 0
|
|
||||||
mod_add_long_namespace_closebrace_comment = 0
|
|
||||||
mod_add_long_class_closebrace_comment = 0
|
|
||||||
mod_add_long_switch_closebrace_comment = 0
|
|
||||||
mod_add_long_ifdef_endif_comment = 0
|
|
||||||
mod_add_long_ifdef_else_comment = 0
|
|
||||||
mod_sort_case_sensitive = false
|
|
||||||
mod_sort_import = false
|
|
||||||
mod_sort_using = false
|
|
||||||
mod_sort_include = false
|
|
||||||
mod_sort_incl_import_prioritize_filename = false
|
|
||||||
mod_sort_incl_import_prioritize_extensionless = false
|
|
||||||
mod_sort_incl_import_prioritize_angle_over_quotes = false
|
|
||||||
mod_sort_incl_import_ignore_extension = false
|
|
||||||
mod_sort_incl_import_grouping_enabled = false
|
|
||||||
mod_move_case_break = false
|
|
||||||
mod_case_brace = ignore
|
|
||||||
mod_remove_empty_return = false
|
|
||||||
mod_enum_last_comma = ignore
|
|
||||||
mod_sort_oc_properties = false
|
|
||||||
mod_sort_oc_property_class_weight = 0
|
|
||||||
mod_sort_oc_property_thread_safe_weight = 0
|
|
||||||
mod_sort_oc_property_readwrite_weight = 0
|
|
||||||
mod_sort_oc_property_reference_weight = 0
|
|
||||||
mod_sort_oc_property_getter_weight = 0
|
|
||||||
mod_sort_oc_property_setter_weight = 0
|
|
||||||
mod_sort_oc_property_nullability_weight = 0
|
|
||||||
pp_indent = ignore
|
|
||||||
pp_indent_at_level = false
|
|
||||||
pp_indent_count = 1
|
|
||||||
pp_space = ignore
|
|
||||||
pp_space_count = 0
|
|
||||||
pp_indent_region = 0
|
|
||||||
pp_region_indent_code = false
|
|
||||||
pp_indent_if = 0
|
|
||||||
pp_if_indent_code = false
|
|
||||||
pp_define_at_level = false
|
|
||||||
pp_ignore_define_body = false
|
|
||||||
pp_indent_case = true
|
|
||||||
pp_indent_func_def = true
|
|
||||||
pp_indent_extern = true
|
|
||||||
pp_indent_brace = true
|
|
||||||
include_category_0 = ""
|
|
||||||
include_category_1 = ""
|
|
||||||
include_category_2 = ""
|
|
||||||
use_indent_func_call_param = true
|
|
||||||
use_indent_continue_only_once = false
|
|
||||||
indent_cpp_lambda_only_once = false
|
|
||||||
use_sp_after_angle_always = false
|
|
||||||
use_options_overriding_for_qt_macros = true
|
|
||||||
use_form_feed_no_more_as_whitespace_character = false
|
|
||||||
warn_level_tabs_found_in_verbatim_string_literals = 2
|
|
||||||
debug_max_number_of_loops = 0
|
|
||||||
debug_line_number_to_protocol = 0
|
|
||||||
debug_timeout = 0
|
|
||||||
debug_truncate = 0
|
|
||||||
# option(s) with 'not default' value: 1
|
|
||||||
#
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,2 +0,0 @@
|
|||||||
indent_columns = 2
|
|
||||||
indent_align_assign = false
|
|
@ -1 +0,0 @@
|
|||||||
sp_func_proto_paren = remove
|
|
@ -1,4 +0,0 @@
|
|||||||
sp_func_call_paren = remove
|
|
||||||
indent_columns = 4
|
|
||||||
indent_with_tabs = 0
|
|
||||||
indent_off_after_return_new = true
|
|
@ -1,13 +0,0 @@
|
|||||||
sp_before_byref = remove
|
|
||||||
sp_before_square = force
|
|
||||||
sp_func_proto_paren = remove
|
|
||||||
sp_func_def_paren = remove
|
|
||||||
indent_columns = 2
|
|
||||||
nl_start_of_file = remove
|
|
||||||
nl_struct_brace = remove
|
|
||||||
nl_fdef_brace = force
|
|
||||||
nl_after_func_body = 2
|
|
||||||
eat_blanks_after_open_brace = true
|
|
||||||
eat_blanks_before_close_brace = true
|
|
||||||
mod_full_brace_if = add
|
|
||||||
sp_before_vardef_square = force
|
|
@ -1,12 +0,0 @@
|
|||||||
sp_before_ptr_star = remove
|
|
||||||
sp_after_ptr_star = force
|
|
||||||
sp_before_angle = remove
|
|
||||||
sp_inside_angle = remove
|
|
||||||
sp_after_comma = force
|
|
||||||
sp_before_dc = remove
|
|
||||||
indent_columns = 2
|
|
||||||
nl_end_of_file = force
|
|
||||||
nl_end_of_file_min = 1
|
|
||||||
nl_if_brace = remove
|
|
||||||
nl_func_decl_args = remove
|
|
||||||
mod_full_brace_if = add
|
|
@ -1,12 +0,0 @@
|
|||||||
sp_arith = force
|
|
||||||
sp_before_ptr_star = force
|
|
||||||
sp_after_ptr_star = remove
|
|
||||||
sp_before_byref = remove
|
|
||||||
sp_inside_angle = remove
|
|
||||||
sp_after_angle = force
|
|
||||||
indent_columns = 3
|
|
||||||
indent_class = true
|
|
||||||
indent_access_spec = 2
|
|
||||||
nl_func_var_def_blk = 1
|
|
||||||
nl_fdef_brace = add
|
|
||||||
mod_paren_on_return = add
|
|
@ -1,4 +0,0 @@
|
|||||||
sp_before_ptr_star = force
|
|
||||||
sp_after_ptr_star = remove
|
|
||||||
indent_columns = 3
|
|
||||||
align_var_struct_span = 3
|
|
@ -1,10 +0,0 @@
|
|||||||
sp_inside_paren = remove
|
|
||||||
sp_before_ptr_star = force
|
|
||||||
sp_between_ptr_star = remove
|
|
||||||
sp_after_ptr_star = remove
|
|
||||||
indent_columns = 3
|
|
||||||
indent_class = true
|
|
||||||
nl_fdef_brace = add
|
|
||||||
align_var_def_span = 2
|
|
||||||
align_var_def_star_style = 1
|
|
||||||
mod_paren_on_return = add
|
|
@ -1,2 +0,0 @@
|
|||||||
indent_columns = 3
|
|
||||||
align_right_cmt_span = 3
|
|
@ -1,3 +0,0 @@
|
|||||||
sp_before_ptr_star = force
|
|
||||||
sp_after_ptr_star = remove
|
|
||||||
indent_columns = 3
|
|
@ -1,5 +0,0 @@
|
|||||||
sp_before_tr_emb_cmt = force
|
|
||||||
sp_num_before_tr_emb_cmt = 4
|
|
||||||
indent_columns = 4
|
|
||||||
indent_with_tabs = 0
|
|
||||||
nl_end_of_file = remove
|
|
@ -1,3 +0,0 @@
|
|||||||
sp_before_byref = force
|
|
||||||
sp_after_byref = force
|
|
||||||
sp_addr = force
|
|
@ -1,4 +0,0 @@
|
|||||||
# Places the byref as follows: "int & foo"
|
|
||||||
sp_before_byref = force
|
|
||||||
indent_columns = 3
|
|
||||||
indent_class = true
|
|
@ -1,4 +0,0 @@
|
|||||||
# Places the byref as follows: "int& foo"
|
|
||||||
sp_before_byref = remove
|
|
||||||
indent_columns = 3
|
|
||||||
indent_class = true
|
|
@ -1,28 +0,0 @@
|
|||||||
#
|
|
||||||
# a simple list of stuff that should be detected as a CT_TYPE
|
|
||||||
# this usually isn't necessary because types are detected from the context.
|
|
||||||
#
|
|
||||||
# In the future, I may allow arbitrary CT_xxx stuff to be specified, as
|
|
||||||
# well as a language
|
|
||||||
#
|
|
||||||
|
|
||||||
INT8
|
|
||||||
UINT8
|
|
||||||
INT16
|
|
||||||
UINT16
|
|
||||||
INT32
|
|
||||||
UINT32
|
|
||||||
INT64
|
|
||||||
UINT64
|
|
||||||
FLOAT
|
|
||||||
CHAR
|
|
||||||
DOUBLE
|
|
||||||
TRUE
|
|
||||||
FALSE
|
|
||||||
BOOL
|
|
||||||
FILE
|
|
||||||
DIR
|
|
||||||
|
|
||||||
# this is for the type-cast.c test
|
|
||||||
bat
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
|||||||
sp_arith = force
|
|
||||||
sp_before_ptr_star = remove
|
|
||||||
sp_after_ptr_star = force
|
|
||||||
indent_columns = 4
|
|
||||||
nl_collapse_empty_body = true
|
|
@ -1 +0,0 @@
|
|||||||
include "nl_before_func_body_def-1.cfg"
|
|
@ -1,8 +0,0 @@
|
|||||||
# Forces a space after an operator
|
|
||||||
sp_before_byref = remove
|
|
||||||
sp_after_byref = force
|
|
||||||
sp_after_operator = force
|
|
||||||
sp_after_operator_sym = force
|
|
||||||
indent_columns = 3
|
|
||||||
indent_class = true
|
|
||||||
align_right_cmt_span = 2
|
|
@ -1,11 +0,0 @@
|
|||||||
# Removes a space after an operator
|
|
||||||
sp_before_byref = remove
|
|
||||||
sp_after_byref = force
|
|
||||||
sp_after_operator = remove
|
|
||||||
sp_after_operator_sym = remove
|
|
||||||
indent_columns = 3
|
|
||||||
indent_class = true
|
|
||||||
align_var_def_span = 2
|
|
||||||
align_var_class_span = 2
|
|
||||||
align_right_cmt_span = 2
|
|
||||||
align_mix_var_proto = true
|
|
@ -1,12 +0,0 @@
|
|||||||
# Removes a space after an operator
|
|
||||||
sp_before_byref = remove
|
|
||||||
sp_after_byref = force
|
|
||||||
sp_after_operator = remove
|
|
||||||
sp_after_operator_sym = remove
|
|
||||||
indent_columns = 3
|
|
||||||
indent_class = true
|
|
||||||
align_var_def_span = 2
|
|
||||||
align_var_class_span = 2
|
|
||||||
align_right_cmt_span = 2
|
|
||||||
align_on_operator = true
|
|
||||||
align_mix_var_proto = true
|
|
@ -1,7 +0,0 @@
|
|||||||
# Removes a space after an operator
|
|
||||||
sp_before_byref = remove
|
|
||||||
sp_after_byref = force
|
|
||||||
sp_after_operator = remove
|
|
||||||
sp_after_operator_sym = remove
|
|
||||||
indent_columns = 3
|
|
||||||
indent_class = true
|
|
@ -1,4 +0,0 @@
|
|||||||
sp_arith = force
|
|
||||||
sp_before_ptr_star = remove
|
|
||||||
sp_after_ptr_star = force
|
|
||||||
indent_columns = 4
|
|
@ -1,3 +0,0 @@
|
|||||||
sp_arith = add # keep
|
|
||||||
sp_before_ptr_star = force
|
|
||||||
sp_after_ptr_star = remove
|
|
@ -1,2 +0,0 @@
|
|||||||
sp_before_ptr_star = remove
|
|
||||||
sp_after_ptr_star = force
|
|
@ -1,9 +0,0 @@
|
|||||||
sp_before_ptr_star = force
|
|
||||||
sp_between_ptr_star = remove
|
|
||||||
sp_after_ptr_star = remove
|
|
||||||
sp_before_byref = force
|
|
||||||
sp_after_byref = remove
|
|
||||||
|
|
||||||
macro-close NS_SWIFT_NAME
|
|
||||||
macro-close VIEW_CONTROLLER_MACRO
|
|
||||||
macro-close MACRO_FUNCTION
|
|
@ -1,5 +0,0 @@
|
|||||||
sp_before_ptr_star = force
|
|
||||||
sp_before_unnamed_ptr_star = remove
|
|
||||||
sp_between_ptr_star = remove
|
|
||||||
sp_after_ptr_star = remove
|
|
||||||
sp_after_ptr_star_func = force
|
|
@ -1,11 +0,0 @@
|
|||||||
sp_before_byref = force
|
|
||||||
sp_after_byref = remove
|
|
||||||
sp_after_operator_sym = remove
|
|
||||||
sp_func_proto_paren = force
|
|
||||||
sp_inside_fparen = force
|
|
||||||
nl_max = 2
|
|
||||||
align_var_def_amp_style = 1
|
|
||||||
align_right_cmt_span = 15
|
|
||||||
align_func_proto_span = 100
|
|
||||||
align_func_proto_gap = 5
|
|
||||||
align_on_operator = true
|
|
@ -1 +0,0 @@
|
|||||||
sp_before_byref = remove
|
|
@ -1 +0,0 @@
|
|||||||
sp_before_ellipsis = force
|
|
@ -1 +0,0 @@
|
|||||||
sp_before_ellipsis = remove
|
|
@ -1,5 +0,0 @@
|
|||||||
sp_before_tr_emb_cmt = add
|
|
||||||
sp_num_before_tr_emb_cmt = 2
|
|
||||||
indent_columns = 2
|
|
||||||
nl_end_of_file = force
|
|
||||||
nl_end_of_file_min = 1
|
|
@ -1,5 +0,0 @@
|
|||||||
sp_before_tr_emb_cmt = force
|
|
||||||
sp_num_before_tr_emb_cmt = 2
|
|
||||||
indent_columns = 2
|
|
||||||
nl_end_of_file = force
|
|
||||||
nl_end_of_file_min = 1
|
|
@ -1 +0,0 @@
|
|||||||
sp_bool = force
|
|
@ -1 +0,0 @@
|
|||||||
sp_bool = remove
|
|
@ -1 +0,0 @@
|
|||||||
sp_brace_brace = force
|
|
@ -1 +0,0 @@
|
|||||||
sp_brace_brace = remove
|
|
@ -1 +0,0 @@
|
|||||||
sp_cpp_lambda_paren_brace = force
|
|
@ -1 +0,0 @@
|
|||||||
sp_cpp_lambda_paren_brace = remove
|
|
@ -1 +0,0 @@
|
|||||||
sp_cpp_lambda_square_brace = force
|
|
@ -1 +0,0 @@
|
|||||||
sp_cpp_lambda_square_brace = remove
|
|
@ -1 +0,0 @@
|
|||||||
sp_cpp_lambda_square_paren = force
|
|
@ -1,12 +0,0 @@
|
|||||||
sp_before_byref = remove
|
|
||||||
sp_after_comma = force
|
|
||||||
sp_func_call_paren = force
|
|
||||||
sp_func_call_paren_empty = remove
|
|
||||||
sp_return_paren = remove
|
|
||||||
indent_columns = 3
|
|
||||||
nl_func_var_def_blk = 1
|
|
||||||
nl_fcall_brace = add
|
|
||||||
nl_fdef_brace = add
|
|
||||||
align_func_params = true
|
|
||||||
align_var_def_star_style = 1
|
|
||||||
mod_paren_on_return = add
|
|
@ -1,13 +0,0 @@
|
|||||||
sp_before_byref = remove
|
|
||||||
sp_after_comma = force
|
|
||||||
sp_func_call_paren = force
|
|
||||||
sp_func_call_paren_empty = remove
|
|
||||||
sp_func_class_paren_empty = force
|
|
||||||
sp_return_paren = remove
|
|
||||||
indent_columns = 3
|
|
||||||
nl_func_var_def_blk = 1
|
|
||||||
nl_fcall_brace = add
|
|
||||||
nl_fdef_brace = add
|
|
||||||
align_func_params = true
|
|
||||||
align_var_def_star_style = 1
|
|
||||||
mod_paren_on_return = add
|
|
@ -1,13 +0,0 @@
|
|||||||
sp_before_byref = remove
|
|
||||||
sp_after_comma = force
|
|
||||||
sp_func_def_paren_empty = force
|
|
||||||
sp_func_call_paren = force
|
|
||||||
sp_func_call_paren_empty = remove
|
|
||||||
sp_return_paren = remove
|
|
||||||
indent_columns = 3
|
|
||||||
nl_func_var_def_blk = 1
|
|
||||||
nl_fcall_brace = add
|
|
||||||
nl_fdef_brace = add
|
|
||||||
align_func_params = true
|
|
||||||
align_var_def_star_style = 1
|
|
||||||
mod_paren_on_return = add
|
|
@ -1,13 +0,0 @@
|
|||||||
sp_before_byref = remove
|
|
||||||
sp_after_comma = force
|
|
||||||
sp_func_proto_paren_empty = force
|
|
||||||
sp_func_call_paren = force
|
|
||||||
sp_func_call_paren_empty = remove
|
|
||||||
sp_return_paren = remove
|
|
||||||
indent_columns = 3
|
|
||||||
nl_func_var_def_blk = 1
|
|
||||||
nl_fcall_brace = add
|
|
||||||
nl_fdef_brace = add
|
|
||||||
align_func_params = true
|
|
||||||
align_var_def_star_style = 1
|
|
||||||
mod_paren_on_return = add
|
|
@ -1 +0,0 @@
|
|||||||
sp_inside_type_brace_init_lst = force
|
|
@ -1,5 +0,0 @@
|
|||||||
# Add or remove space between an open paren and comma: '(,' vs. '( ,'. Default=Force.
|
|
||||||
sp_paren_comma = remove
|
|
||||||
|
|
||||||
# should not be used
|
|
||||||
sp_before_comma = force
|
|
@ -1 +0,0 @@
|
|||||||
sp_paren_ellipsis = force
|
|
@ -1 +0,0 @@
|
|||||||
sp_paren_ellipsis = remove
|
|
@ -1 +0,0 @@
|
|||||||
sp_sizeof_ellipsis = force
|
|
@ -1 +0,0 @@
|
|||||||
sp_sizeof_ellipsis = remove
|
|
@ -1 +0,0 @@
|
|||||||
sp_sizeof_ellipsis_paren = force
|
|
@ -1 +0,0 @@
|
|||||||
sp_sizeof_ellipsis_paren = remove
|
|
@ -1 +0,0 @@
|
|||||||
sp_type_ellipsis = force
|
|
@ -1 +0,0 @@
|
|||||||
sp_type_ellipsis = remove
|
|
@ -1 +0,0 @@
|
|||||||
sp_type_func = force
|
|
@ -1 +0,0 @@
|
|||||||
sp_type_func = remove
|
|
@ -1,17 +0,0 @@
|
|||||||
# remove spaces around template defs
|
|
||||||
tok_split_gte = true
|
|
||||||
sp_arith = force
|
|
||||||
sp_compare = force
|
|
||||||
sp_before_byref = remove
|
|
||||||
sp_after_byref = force
|
|
||||||
sp_before_angle = remove
|
|
||||||
sp_inside_angle = remove
|
|
||||||
sp_inside_angle_empty = remove
|
|
||||||
sp_after_angle = remove
|
|
||||||
sp_angle_paren_empty = remove
|
|
||||||
sp_inside_braces_struct = force
|
|
||||||
sp_inside_braces = force
|
|
||||||
sp_func_proto_paren = remove
|
|
||||||
sp_func_call_paren = remove
|
|
||||||
indent_columns = 3
|
|
||||||
indent_class = true
|
|
@ -1,961 +0,0 @@
|
|||||||
#
|
|
||||||
# Test cases specifically for the C++ language.
|
|
||||||
#
|
|
||||||
# Range: 30000 - 39999
|
|
||||||
# test.name config.file input.file
|
|
||||||
|
|
||||||
# there are additional tests inside imported.test.
|
|
||||||
|
|
||||||
02102 clark.cfg cpp/indent-c.cpp
|
|
||||||
02103 clark.cfg cpp/output.cpp
|
|
||||||
|
|
||||||
30000 ben_001.cfg cpp/cout.cpp
|
|
||||||
30001 sp_angle_colon.cfg cpp/alt_tokens.cpp
|
|
||||||
30002 ben_003.cfg cpp/constructor.cpp
|
|
||||||
30003 ben_004.cfg cpp/strings.cpp
|
|
||||||
|
|
||||||
30010 ben_005.cfg cpp/class.h
|
|
||||||
30011 ben_006.cfg cpp/misc.cpp
|
|
||||||
30012 avalon2.cfg cpp/misc2.cpp
|
|
||||||
30013 sim.cfg cpp/sim.h
|
|
||||||
30014 indent_columns-3.cfg cpp/ctor-var.cpp
|
|
||||||
30015 ben_008.cfg cpp/exception.cpp
|
|
||||||
30016 custom-open.cfg cpp/custom-open.cpp
|
|
||||||
30017 custom-open2.cfg cpp/custom-open.cpp
|
|
||||||
30018 ben_009.cfg cpp/class-addr.h
|
|
||||||
30019 ben_010.cfg cpp/wacky-template.cpp
|
|
||||||
|
|
||||||
30020 ben_011.cfg cpp/bool.cpp
|
|
||||||
30021 ben_012.cfg cpp/byref.cpp
|
|
||||||
30022 ben_013.cfg cpp/extern_c.h
|
|
||||||
30023 ben_014.cfg cpp/templates.cpp
|
|
||||||
30024 class-nl_func-add.cfg cpp/class-init.cpp
|
|
||||||
30025 class-nl_func-del.cfg cpp/class-init.cpp
|
|
||||||
30026 byref-left.cfg cpp/byref.cpp
|
|
||||||
30027 byref-right.cfg cpp/byref.cpp
|
|
||||||
30028 byref-center.cfg cpp/byref.cpp
|
|
||||||
30029 ben_015.cfg cpp/init_align.h
|
|
||||||
|
|
||||||
30030 avalon.cfg cpp/Timestamp.h
|
|
||||||
30031 avalon.cfg cpp/operator.cpp
|
|
||||||
30032 op-space-force.cfg cpp/operator.cpp
|
|
||||||
30033 op-space-remove.cfg cpp/operator.cpp
|
|
||||||
30034 op-space-force.cfg cpp/operator_proto.cpp
|
|
||||||
30035 op-space-remove.cfg cpp/operator_proto.cpp
|
|
||||||
30036 op-space-remove-align-1.cfg cpp/operator.cpp
|
|
||||||
30037 op-space-remove-align-1.cfg cpp/operator_proto.cpp
|
|
||||||
30038 op-space-remove-align-2.cfg cpp/operator.cpp
|
|
||||||
30039 op-space-remove-align-2.cfg cpp/operator_proto.cpp
|
|
||||||
|
|
||||||
30040 nl_class-r.cfg cpp/nl-class.h
|
|
||||||
30041 nl_class-a.cfg cpp/nl-class.h
|
|
||||||
30042 Issue_2020.cfg cpp/Issue_2020.cpp
|
|
||||||
30043 nl_func_call_empty-r.cfg cpp/nl_func_call_empty.cpp
|
|
||||||
30044 nl_func_call_paren_empty-r.cfg cpp/nl_func_call_paren_empty.cpp
|
|
||||||
30045 nl_func_decl_1.cfg cpp/nl_func_decl.cpp
|
|
||||||
30046 nl_func_decl_2.cfg cpp/nl_func_decl.cpp
|
|
||||||
30047 nl_func_paren_empty.cfg cpp/nl_func_paren_empty.cpp
|
|
||||||
30048 nl_func_def_paren_empty-r.cfg cpp/nl_func_def_paren_empty.cpp
|
|
||||||
30049 nl_func_call_paren-f.cfg cpp/nl_func_call_paren.cpp
|
|
||||||
|
|
||||||
30050 nl_namespace-r.cfg cpp/nl-namespace.h
|
|
||||||
30051 nl_namespace-a.cfg cpp/nl-namespace.h
|
|
||||||
30052 nl_try-a.cfg cpp/try-catch-nl.cpp
|
|
||||||
30053 sp_catch_brace.cfg cpp/exception.cpp
|
|
||||||
30054 Issue_2091.cfg cpp/Issue_2091.cpp
|
|
||||||
30055 nl_after_func_body.cfg cpp/nl_func.cpp
|
|
||||||
30056 nl_after_func_body-2.cfg cpp/nl_func.cpp
|
|
||||||
30057 nl_inside_namespace_1.cfg cpp/nl_inside_namespace.cpp
|
|
||||||
30058 nl_inside_namespace_2.cfg cpp/nl_inside_namespace.cpp
|
|
||||||
30059 Issue_2186.cfg cpp/Issue_2186.cpp
|
|
||||||
|
|
||||||
30060 Issue_1734.cfg cpp/Issue_1734.cpp
|
|
||||||
|
|
||||||
# Class colon positioning
|
|
||||||
30061 class-colon-pos-eol.cfg cpp/class-init.cpp
|
|
||||||
30062 class-colon-pos-sol.cfg cpp/class-init.cpp
|
|
||||||
30063 class-colon-pos-eol-add.cfg cpp/class-init.cpp
|
|
||||||
30064 class-colon-pos-sol-add.cfg cpp/class-init.cpp
|
|
||||||
30065 class-colon-pos-sol.cfg cpp/Example.h
|
|
||||||
30066 class-on-colon-indent.cfg cpp/class-init.cpp
|
|
||||||
30067 nl_func_class_scope-a.cfg cpp/nl_func_type_name.cpp
|
|
||||||
30068 nl_func_class_scope-a.cfg cpp/nl_func_scope_name.cpp
|
|
||||||
30069 nl_func_class_scope-a.cfg cpp/class-implementation.cpp
|
|
||||||
|
|
||||||
30070 nl_func_scope_name-a.cfg cpp/nl_func_scope_name.cpp
|
|
||||||
30071 lineEndings-to-Win.cfg cpp/lineEndings-Mac.cpp
|
|
||||||
30072 lineEndings-to-Unix.cfg cpp/lineEndings-Win.cpp
|
|
||||||
30073 lineEndings-to-Mac.cfg cpp/lineEndings-Unix.cpp
|
|
||||||
30074 empty.cfg cpp/bom.cpp
|
|
||||||
30075 empty.cfg cpp/goto.cpp
|
|
||||||
30076 Issue_2594.cfg cpp/Issue_2594.cpp
|
|
||||||
30077 Issue_2596.cfg cpp/Issue_2596.cpp
|
|
||||||
30078 empty.cfg cpp/Issue_2672-a.cpp
|
|
||||||
30079 empty.cfg cpp/Issue_2672-b.cpp
|
|
||||||
|
|
||||||
30080 nl_brace_brace-a.cfg cpp/nl_brace_brace.cpp
|
|
||||||
30081 Issue_2383.cfg cpp/Issue_2383.cpp
|
|
||||||
30082 Issue_931.cfg cpp/Issue_931.cpp
|
|
||||||
30083 Issue_995-do.cfg cpp/Issue_995-do.cpp
|
|
||||||
30084 Issue_1184.cfg cpp/Issue_1184.cpp
|
|
||||||
30085 nSolve.cfg cpp/align_class.cpp
|
|
||||||
30086 align_class-constr.cfg cpp/align_class-constr.cpp
|
|
||||||
30087 Issue_1511.cfg cpp/Issue_1511.cpp
|
|
||||||
30088 Issue_2561.cfg cpp/Issue_2561.cpp
|
|
||||||
30089 Issue_2281.cfg cpp/Issue_2281.cpp
|
|
||||||
|
|
||||||
30090 bug_488.cfg cpp/bug_488.cpp
|
|
||||||
30091 bug_472.cfg cpp/bug_472.cpp
|
|
||||||
30092 ben_016.cfg cpp/bug_481.cpp
|
|
||||||
30093 sp_after_cast.cfg cpp/bug_484.cpp
|
|
||||||
30094 align-1.cfg cpp/bug_495.cpp
|
|
||||||
30095 ben_017.cfg cpp/bug_485.cpp
|
|
||||||
30096 bug_1854.cfg cpp/bug_1854.cpp
|
|
||||||
30097 align-1.cfg cpp/issue_1946.cpp
|
|
||||||
30098 Issue_2692.cfg cpp/Issue_2692.cpp
|
|
||||||
30099 sp_arith-f.cfg cpp/bug_1127.cpp
|
|
||||||
|
|
||||||
30100 nl_template-f.cfg cpp/templates.cpp
|
|
||||||
30101 nl_template-r.cfg cpp/templates.cpp
|
|
||||||
30102 template_sp-force.cfg cpp/templates.cpp
|
|
||||||
30103 template_sp-remove.cfg cpp/templates.cpp
|
|
||||||
30104 avalon3.cfg cpp/templ_class.h
|
|
||||||
30105 avalon4.cfg cpp/av.h
|
|
||||||
30106 nl_template-f.cfg cpp/templates2.cpp
|
|
||||||
30107 nl_template-r.cfg cpp/templates2.cpp
|
|
||||||
30108 nl_template-r.cfg cpp/templates3.cpp
|
|
||||||
30109 empty.cfg cpp/templates4.cpp
|
|
||||||
|
|
||||||
30110 class-nl_func-add2.cfg cpp/class-init.cpp
|
|
||||||
30111 indent_columns-4.cfg cpp/bug_1346.h
|
|
||||||
30112 bug_1432.cfg cpp/bug_1432.cpp
|
|
||||||
30113 bug_1452.cfg cpp/bug_1452.cpp
|
|
||||||
30114 template_sp-remove.cfg cpp/bug_1462.cpp
|
|
||||||
30115 empty.cfg cpp/Issue_1704.cpp
|
|
||||||
30116 Issue_1052.cfg cpp/Issue_1052.cpp
|
|
||||||
30117 Issue_2343.cfg cpp/Issue_2343.cpp
|
|
||||||
30118 Issue_2758.cfg cpp/Issue_2758.cpp
|
|
||||||
30119 Issue_2879.cfg cpp/Issue_2879.cpp
|
|
||||||
|
|
||||||
30120 template_sp-force.cfg cpp/sp_after_angle.cpp
|
|
||||||
30121 template_sp-remove.cfg cpp/sp_after_angle.cpp
|
|
||||||
30122 sp_inside_fparen-f.cfg cpp/sp_after_angle.cpp
|
|
||||||
30123 sp_inside_fparen-r.cfg cpp/sp_after_angle.cpp
|
|
||||||
30124 sp_after_angle-1.cfg cpp/sp_after_angle.cpp
|
|
||||||
30125 sp_after_angle-2.cfg cpp/sp_after_angle.cpp
|
|
||||||
30126 sp_after_angle-3.cfg cpp/sp_after_angle.cpp
|
|
||||||
30127 empty.cfg cpp/Issue_2565.cpp
|
|
||||||
30128 Issue_2873.cfg cpp/Issue_2873.cpp
|
|
||||||
30129 Issue_2890.cfg cpp/Issue_2890.cpp
|
|
||||||
|
|
||||||
30130 brace-allman.cfg cpp/if-constexpr.cpp
|
|
||||||
30131 Issue_3010.cfg cpp/Issue_3010.cpp
|
|
||||||
30132 sp_brace_catch.cfg cpp/sp_brace_catch.cpp
|
|
||||||
|
|
||||||
30200 bug_1862.cfg cpp/bug_1862.cpp
|
|
||||||
30201 cmt_indent-1.cfg cpp/cmt_indent.cpp
|
|
||||||
30202 cmt_indent-2.cfg cpp/cmt_indent.cpp
|
|
||||||
30203 cmt_indent-3.cfg cpp/cmt_indent.cpp
|
|
||||||
30204 indent_columns-4.cfg cpp/comment-align.cpp
|
|
||||||
30205 indent_columns-4.cfg cpp/cmt_right.cpp
|
|
||||||
30206 empty.cfg cpp/cmt_backslash_eol.cpp
|
|
||||||
30207 indent_class-t_columns-4.cfg cpp/cmt_indent_pp.h
|
|
||||||
30208 bug_1108.cfg cpp/bug_1108.cpp
|
|
||||||
30209 empty.cfg cpp/bug_1134.cpp
|
|
||||||
|
|
||||||
30210 empty.cfg cpp/bug_1338.cpp
|
|
||||||
30211 space_indent_class-t_columns-4.cfg cpp/indent_comment_align_thresh.cpp
|
|
||||||
30212 indent_comment_align_thresh_2.cfg cpp/indent_comment_align_thresh.cpp
|
|
||||||
30213 align_right_comment.cfg cpp/align_right_comment.cpp
|
|
||||||
30214 issue_1887.cfg cpp/align_across_braces.cpp
|
|
||||||
30215 empty.cfg cpp/Issue_2099.cpp
|
|
||||||
30216 Issue_2302.cfg cpp/Issue_2302.cpp
|
|
||||||
30217 empty.cfg cpp/2138.cpp
|
|
||||||
30218 sp_trailing_return-f.cfg cpp/trailing_return.cpp
|
|
||||||
30219 sp_trailing_return-r.cfg cpp/trailing_return.cpp
|
|
||||||
|
|
||||||
30220 bug_1340.cfg cpp/bug_1340.cpp
|
|
||||||
30221 Issue_2914.cfg cpp/Issue_2914.cpp
|
|
||||||
30222 sp_assign_default.cfg cpp/trailing_return.cpp
|
|
||||||
30223 sp_enum_colon.cfg cpp/sp_enum_colon.cpp
|
|
||||||
30224 sp_enum_colon-r.cfg cpp/sp_enum_colon.cpp
|
|
||||||
|
|
||||||
30230 sp_type_func-r.cfg cpp/sp_type_func.cpp
|
|
||||||
30231 sp_type_func-f.cfg cpp/sp_type_func.cpp
|
|
||||||
30232 sp_type_func-1.cfg cpp/sp_type_func.cpp
|
|
||||||
30233 sp_type_func-2.cfg cpp/sp_type_func.cpp
|
|
||||||
30234 functype_param-r.cfg cpp/functype_param.cpp
|
|
||||||
30235 functype_param-f.cfg cpp/functype_param.cpp
|
|
||||||
|
|
||||||
30240 align_func_params-t.cfg cpp/align_func_params.cpp
|
|
||||||
30241 align_func_params_span-1.cfg cpp/align_func_params.cpp
|
|
||||||
30242 align_func_params_gap.cfg cpp/align_func_params.cpp
|
|
||||||
30243 align_func_params_thresh_1.cfg cpp/align_func_params.cpp
|
|
||||||
30244 align_func_params_thresh_2.cfg cpp/align_func_params.cpp
|
|
||||||
30245 align_func_params_thresh_3.cfg cpp/align_func_params.cpp
|
|
||||||
30246 align_func_params_thresh_4.cfg cpp/align_func_params.cpp
|
|
||||||
30247 empty.cfg cpp/Issue_2332.cpp
|
|
||||||
30248 Issue_2831.cfg cpp/Issue_2831.cpp
|
|
||||||
30249 align-330.cfg cpp/align-330.cpp
|
|
||||||
|
|
||||||
30250 align_fcall.cfg cpp/align_fcall.cpp
|
|
||||||
30251 align_fcall-2.cfg cpp/align_fcall.cpp
|
|
||||||
30253 empty.cfg cpp/align_left_shift.cpp
|
|
||||||
30254 empty.cfg cpp/align_left_shift2.cpp
|
|
||||||
30255 ben_018.cfg cpp/align_constr.cpp
|
|
||||||
30256 empty.cfg cpp/func_call.cpp
|
|
||||||
30257 indent_columns-4.cfg cpp/func_call_chain.cpp
|
|
||||||
30258 indent_columns-3.cfg cpp/casts.cpp
|
|
||||||
30259 sp_after_constr_colon.cfg cpp/sp_after_constr_colon.cpp
|
|
||||||
|
|
||||||
30260 var_def_gap.cfg cpp/var_def_gap.cpp
|
|
||||||
30261 align_var_def_thresh_1.cfg cpp/align_var_def_thresh.cpp
|
|
||||||
30262 align_var_def_thresh_2.cfg cpp/align_var_def_thresh.cpp
|
|
||||||
30263 align_var_def_thresh_3.cfg cpp/align_var_def_thresh.cpp
|
|
||||||
30264 Issue_2668.cfg cpp/Issue_2668.cpp
|
|
||||||
30265 long_br_cmt.cfg cpp/long_br_cmt.cpp
|
|
||||||
30266 Issue_2921.cfg cpp/Issue_2921.cpp
|
|
||||||
30267 Issue_2930.cfg cpp/Issue_2930.cpp
|
|
||||||
30268 Issue_2692.cfg cpp/Issue_3018.cpp
|
|
||||||
|
|
||||||
30270 const_throw.cfg cpp/const_throw.cpp
|
|
||||||
30271 sp_throw_paren-r.cfg cpp/sp_throw_paren.cpp
|
|
||||||
30272 sp_throw_paren-f.cfg cpp/sp_throw_paren.cpp
|
|
||||||
30273 sp_cparen_oparen-f.cfg cpp/sp_cparen_oparen.cpp
|
|
||||||
30274 sp_cparen_oparen-r.cfg cpp/sp_cparen_oparen.cpp
|
|
||||||
30275 empty.cfg cpp/bug_1321.cpp
|
|
||||||
30278 bug_1439.cfg cpp/bug_1439.cpp
|
|
||||||
30279 indent_inside_ternary_operator.cfg cpp/indent-inside-ternary-operator.cpp
|
|
||||||
|
|
||||||
30280 sp_dc.cfg cpp/sf557.cpp
|
|
||||||
30281 Issue_2478.cfg cpp/Issue_2478.cpp
|
|
||||||
30282 Issue_2703.cfg cpp/Issue_2703.cpp
|
|
||||||
|
|
||||||
30290 indent_shift.cfg cpp/align_left_shift.cpp
|
|
||||||
30291 indent_shift.cfg cpp/indent_shift.cpp
|
|
||||||
30292 align_eigen_comma_init.cfg cpp/eigen.cpp
|
|
||||||
30293 pos_shift-lead.cfg cpp/pos_shift.cpp
|
|
||||||
30294 pos_shift-trail.cfg cpp/pos_shift.cpp
|
|
||||||
30295 pos_shift-join.cfg cpp/pos_shift.cpp
|
|
||||||
|
|
||||||
30300 ben_020.cfg cpp/enum_shr.cpp
|
|
||||||
30301 al.cfg cpp/enum_class.h
|
|
||||||
30302 bug_1315.cfg cpp/bug_1315.cpp
|
|
||||||
30303 Issue_2902.cfg cpp/Issue_2902.cpp
|
|
||||||
|
|
||||||
# TODO: Make a tests for a braced_init_list. See also 34153-34166.
|
|
||||||
30310 sp_word_brace_force.cfg cpp/braced_init_list.cpp
|
|
||||||
30311 sp_word_brace_remove.cfg cpp/uniform_initialization.cpp
|
|
||||||
30312 sp_inside_type_brace_init_lst-f.cfg cpp/return_init_list.cpp
|
|
||||||
30313 sp_brace_brace-r.cfg cpp/sp_brace_brace.cpp
|
|
||||||
30314 sp_brace_brace-f.cfg cpp/sp_brace_brace.cpp
|
|
||||||
30315 issue_1997.cfg cpp/return_braced_init.cpp
|
|
||||||
30316 Issue_2428.cfg cpp/Issue_2428.cpp
|
|
||||||
30317 pos_comma-tb.cfg cpp/braced_init_template_decltype.cpp
|
|
||||||
30318 Issue_2949.cfg cpp/Issue_2949.cpp
|
|
||||||
30319 Issue_2886.cfg cpp/Issue_2886.cpp
|
|
||||||
|
|
||||||
30320 sp_return_paren-r.cfg cpp/returns.cpp
|
|
||||||
30321 sp_return_paren-f.cfg cpp/returns.cpp
|
|
||||||
30322 sp_return_brace-r.cfg cpp/returns.cpp
|
|
||||||
30323 sp_return_brace-f.cfg cpp/returns.cpp
|
|
||||||
30324 mod_paren_on_return-a.cfg cpp/returns.cpp
|
|
||||||
30325 mod_paren_on_return-r.cfg cpp/returns.cpp
|
|
||||||
30326 indent_off_after_return.cfg cpp/indent_off_after_return.cpp
|
|
||||||
30327 indent_off_after_return.cfg cpp/indent_off_after_return.cpp
|
|
||||||
30328 nl_type_brace_init_lst-f.cfg cpp/call_brace_init_lst.cpp
|
|
||||||
30329 nl_type_brace_init_lst-r.cfg cpp/call_brace_init_lst.cpp
|
|
||||||
|
|
||||||
30330 Issue_3080.cfg cpp/Issue_3080.cpp
|
|
||||||
|
|
||||||
30400 attribute_specifier_seqs.cfg cpp/attribute_specifier_seqs.cpp
|
|
||||||
30401 Issue_2570.cfg cpp/Issue_2570.cpp
|
|
||||||
|
|
||||||
# function def newlines
|
|
||||||
30701 func-def-1.cfg cpp/function-def.cpp
|
|
||||||
30702 func-def-2.cfg cpp/function-def.cpp
|
|
||||||
30703 func-def-3.cfg cpp/function-def.cpp
|
|
||||||
|
|
||||||
30705 func_param.cfg cpp/func_param.cpp
|
|
||||||
30706 bug_1020.cfg cpp/bug_1020.cpp
|
|
||||||
|
|
||||||
30711 del_semicolon.cfg cpp/semicolons.cpp
|
|
||||||
30712 empty.cfg cpp/bug_1158.cpp
|
|
||||||
30713 empty.cfg cpp/fix_for_relational_operators.cpp
|
|
||||||
30714 empty.cfg cpp/Issue_1733.cpp
|
|
||||||
30715 Issue_2942.cfg cpp/Issue_2942.cpp
|
|
||||||
|
|
||||||
30720 wessex.cfg cpp/custom-open-2.cpp
|
|
||||||
30721 Issue_2386.cfg cpp/Issue_2386.cpp
|
|
||||||
|
|
||||||
30730 qt-1.cfg cpp/qt-1.cpp
|
|
||||||
30731 nl_access_spec.cfg cpp/qt-1.cpp
|
|
||||||
30732 Issue_2734.cfg cpp/Issue_2734.cpp
|
|
||||||
|
|
||||||
30740 sef.cfg cpp/sef.cpp
|
|
||||||
30741 al.cfg cpp/al.cpp
|
|
||||||
30742 indent_columns-2.cfg cpp/delete.cpp
|
|
||||||
|
|
||||||
30745 Issue_2170.cfg cpp/Issue_2170.cpp
|
|
||||||
30746 DefaultAndDelete-0.cfg cpp/DefaultAndDelete.cpp
|
|
||||||
30747 DefaultAndDelete-1.cfg cpp/DefaultAndDelete.cpp
|
|
||||||
30748 DefaultAndDelete-2.cfg cpp/DefaultAndDelete.cpp
|
|
||||||
|
|
||||||
# TODO: Reduce the number of options, leave only those that affect lambda.
|
|
||||||
# TODO: Add tests for nested lambdas.
|
|
||||||
|
|
||||||
30750 ben_021.cfg cpp/lambda.cpp
|
|
||||||
30751 lambda1.cfg cpp/lambda.cpp
|
|
||||||
30752 lambda2.cfg cpp/lambda.cpp
|
|
||||||
30753 lambda3.cfg cpp/lambda2.cpp
|
|
||||||
30754 indent_with_tabs-0.cfg cpp/bug_i_682.h
|
|
||||||
30755 empty.cfg cpp/bug_i_938.h
|
|
||||||
30756 bug_1296.cfg cpp/bug_1296.cpp
|
|
||||||
30757 Issue_3054.cfg cpp/Issue_3054.cpp
|
|
||||||
30758 Issue_3054-2.cfg cpp/Issue_3054-2.cpp
|
|
||||||
|
|
||||||
30761 out-668-F.cfg cpp/out-668.cpp
|
|
||||||
30762 out-668-T.cfg cpp/out-668.cpp
|
|
||||||
30763 Issue_2166.cfg cpp/Issue_2166.cpp
|
|
||||||
30764 Issue_2591.cfg cpp/Issue_2591.cpp
|
|
||||||
|
|
||||||
30770 sp_cpp_lambda_square_paren-r.cfg cpp/lambda.cpp
|
|
||||||
30771 sp_cpp_lambda_square_paren-f.cfg cpp/lambda.cpp
|
|
||||||
30772 sp_cpp_lambda_square_brace-r.cfg cpp/lambda.cpp
|
|
||||||
30773 sp_cpp_lambda_square_brace-f.cfg cpp/lambda.cpp
|
|
||||||
30774 sp_cpp_lambda_paren_brace-r.cfg cpp/lambda.cpp
|
|
||||||
30775 sp_cpp_lambda_paren_brace-f.cfg cpp/lambda.cpp
|
|
||||||
30776 sp_cpp_lambda_fparen-r.cfg cpp/sp_cpp_lambda_fparen.cpp
|
|
||||||
30777 sp_cpp_lambda_fparen-f.cfg cpp/sp_cpp_lambda_fparen.cpp
|
|
||||||
|
|
||||||
30780 lambda_in_one_liner.cfg cpp/lambda_in_one_liner.cpp
|
|
||||||
30781 lambda_in_one_liner.cfg cpp/lambda_brace_list.cpp
|
|
||||||
|
|
||||||
30790 Issue_2795.cfg cpp/Issue_2795.cpp
|
|
||||||
|
|
||||||
30800 star_pos-0.cfg cpp/align-star-amp-pos.cpp
|
|
||||||
30801 star_pos-1.cfg cpp/align-star-amp-pos.cpp
|
|
||||||
30802 star_pos-2.cfg cpp/align-star-amp-pos.cpp
|
|
||||||
30803 bug_1403.cfg cpp/bug_1403.cpp
|
|
||||||
30804 block_pointer.cfg cpp/block_pointer.cpp
|
|
||||||
30805 ptr_star-1.cfg cpp/ptr-star.cpp
|
|
||||||
30806 ptr_star-2.cfg cpp/ptr-star.cpp
|
|
||||||
30807 ptr_star-3.cfg cpp/ptr-star.cpp
|
|
||||||
30808 sp_after_ptr_star_qualifier-f.cfg cpp/ptr-star.cpp
|
|
||||||
30809 empty.cfg cpp/bug_1289.cpp
|
|
||||||
|
|
||||||
30810 ben_022.cfg cpp/ptr-star.cpp
|
|
||||||
30811 avalon4.cfg cpp/misc3.cpp
|
|
||||||
30812 ben_023.cfg cpp/misc4.cpp
|
|
||||||
30813 ben_024.cfg cpp/misc5.cpp
|
|
||||||
30814 empty.cfg cpp/misc6.cpp
|
|
||||||
30815 width-2.cfg cpp/cmt-reflow.cpp
|
|
||||||
30816 cu.cfg cpp/for_long.cpp
|
|
||||||
30817 indent_columns-3.cfg cpp/cmt-cpp-cont.cpp
|
|
||||||
30818 bug_1169.cfg cpp/bug_1169.cpp
|
|
||||||
30819 bug_1170.cfg cpp/bug_1170.cpp
|
|
||||||
|
|
||||||
30820 pp_define_at_level-1.cfg cpp/pp-define-indent.cpp
|
|
||||||
30821 empty.cfg cpp/pp_indent_case.cpp
|
|
||||||
30822 empty.cfg cpp/pp_indent_brace.cpp
|
|
||||||
30823 empty.cfg cpp/pp_indent_func_def.cpp
|
|
||||||
30824 empty.cfg cpp/pp_indent_extern.cpp
|
|
||||||
30825 Issue_1966.cfg cpp/Issue_1966.cpp
|
|
||||||
30826 Issue_2319.cfg cpp/Issue_2319.cpp
|
|
||||||
30827 Issue_1167.cfg cpp/Issue_1167.cpp
|
|
||||||
30828 bug_1691.cfg cpp/bug_1691.cpp
|
|
||||||
30829 ptr_star-2.cfg cpp/Issue_2726.cpp
|
|
||||||
|
|
||||||
30830 kw_subst2.cfg cpp/kw_subst.cpp
|
|
||||||
30831 kw_subst.cfg cpp/kw_subst2.cpp
|
|
||||||
30832 kw_subst4.cfg cpp/kw_subst.cpp
|
|
||||||
|
|
||||||
30840 nl_func_type_name_remove.cfg cpp/nl_func_type_name.cpp
|
|
||||||
30841 nl_func_type_name_force.cfg cpp/nl_func_type_name.cpp
|
|
||||||
30842 nl_func_type_name_class.cfg cpp/nl_func_type_name.cpp
|
|
||||||
30843 nl_func_type_name_mixed.cfg cpp/nl_func_type_name.cpp
|
|
||||||
30844 Issue_2771.cfg cpp/Issue_2771.cpp
|
|
||||||
30845 ben_026.cfg cpp/deref.cpp
|
|
||||||
|
|
||||||
30850 sp_cmt_cpp_start_force.cfg cpp/sp_cmt_cpp_start.cc
|
|
||||||
30852 sp_paren_qualifier-f.cfg cpp/Issue_2138.cpp
|
|
||||||
30853 sp_paren_noexcept-f.cfg cpp/noexcept.cpp
|
|
||||||
30854 Issue_1703.cfg cpp/Issue_1703.cpp
|
|
||||||
30855 empty.cfg cpp/cpp_move.cpp
|
|
||||||
30856 sp_cmt_cpp_region-f.cfg cpp/sp_cmt_cpp_region.cpp
|
|
||||||
30857 sp_cmt_cpp_region-r.cfg cpp/sp_cmt_cpp_region.cpp
|
|
||||||
|
|
||||||
30860 sf574.cfg cpp/sf574.cpp
|
|
||||||
|
|
||||||
30870 cmt_insert-0.cfg cpp/cmt_insert.cpp
|
|
||||||
30871 cmt_insert-1.cfg cpp/cmt_insert.cpp
|
|
||||||
30872 Issue_2752.cfg cpp/Issue_2752.cpp
|
|
||||||
# will also use the file footer.txt
|
|
||||||
|
|
||||||
30880 empty.cfg cpp/bug_1758.cpp
|
|
||||||
30881 bug_1758-f.cfg cpp/bug_1758-f.cpp
|
|
||||||
|
|
||||||
30900 region-0.cfg cpp/region.cpp
|
|
||||||
30901 region-1.cfg cpp/region.cpp
|
|
||||||
30902 region-2.cfg cpp/region.cpp
|
|
||||||
30903 region-3.cfg cpp/region.cpp
|
|
||||||
30907 Issue_1813.cfg cpp/Issue_1813.cpp
|
|
||||||
30908 Issue_1813.cfg cpp/Issue_1813-2.cpp
|
|
||||||
30909 Issue_1813.cfg cpp/Issue_1813-3.cpp
|
|
||||||
|
|
||||||
30910 indent_namespace-t.cfg cpp/indent_namespace.h
|
|
||||||
30911 indent_class-t.cfg cpp/indent_namespace.h
|
|
||||||
30912 long_namespace.cfg cpp/long_namespace.cpp
|
|
||||||
30913 indent_namespace-t.cfg cpp/indent_namespace2.h
|
|
||||||
30914 indent_namespace_single_indent.cfg cpp/indent_namespace_single_indent.h
|
|
||||||
30915 empty.cfg cpp/bug_1235.cpp
|
|
||||||
30916 empty.cfg cpp/Issue_1737.cpp
|
|
||||||
30917 Issue_2345.cfg cpp/Issue_2345-3.cpp
|
|
||||||
30918 Issue_2345.cfg cpp/Issue_2345-4.cpp
|
|
||||||
30919 empty.cfg cpp/Issue_2387.cpp
|
|
||||||
|
|
||||||
30920 ben_027.cfg cpp/indent-off.cpp
|
|
||||||
30921 ben_028.cfg cpp/variadic-template.h
|
|
||||||
30922 sp_before_ellipsis-f.cfg cpp/variadic-template.h
|
|
||||||
30923 sf.2886991-f.cfg cpp/sf.2886991.cpp
|
|
||||||
30924 sf.2886991-r.cfg cpp/sf.2886991.cpp
|
|
||||||
30925 sp_func_call_empty.cfg cpp/function-def.cpp
|
|
||||||
30926 sp_func_class_empty.cfg cpp/function-def.cpp
|
|
||||||
30927 sp_func_def_empty.cfg cpp/function-def.cpp
|
|
||||||
30928 sp_func_proto_empty.cfg cpp/function-def.cpp
|
|
||||||
30929 bug_1324.cfg cpp/bug_1324.cpp
|
|
||||||
|
|
||||||
30930 indent_var_def.cfg cpp/indent_var_def.cpp
|
|
||||||
30931 indent_var_def_cont-t.cfg cpp/indent_var_def_cont.cpp
|
|
||||||
30932 empty.cfg cpp/indent_var_def_cont.cpp
|
|
||||||
30933 indent_paren_after_func_def-t.cfg cpp/indent_paren_after_func_def.cpp
|
|
||||||
30934 indent_paren_after_func_decl-t.cfg cpp/indent_paren_after_func_decl.cpp
|
|
||||||
30935 ben_029.cfg cpp/indent-misc.cpp
|
|
||||||
30936 indent_braces_no.cfg cpp/indent_braces_no.h
|
|
||||||
30937 indent_param.cfg cpp/indent_param.cpp
|
|
||||||
30938 empty.cfg cpp/indent_switch_pp.cpp
|
|
||||||
30939 indent_paren_after_func_call-t.cfg cpp/indent_paren_after_func_call.cpp
|
|
||||||
|
|
||||||
30940 mod_case_brace_rm.cfg cpp/case-brace-remove.cpp
|
|
||||||
30941 Issue_2150.cfg cpp/Issue_2150.cpp
|
|
||||||
30942 Issue_1692.cfg cpp/Issue_1692.cpp
|
|
||||||
30943 Issue_2735.cfg cpp/Issue_2735.cpp
|
|
||||||
30944 sp_paren_comma.cfg cpp/sp_paren_comma.cpp
|
|
||||||
30945 sp_before_byref-r.cfg cpp/sf.3266678.cpp
|
|
||||||
30946 sf.3315874.cfg cpp/sf.3315874.h
|
|
||||||
30947 bug_1689.cfg cpp/bug_1689.cpp
|
|
||||||
30948 sp_before_byref_func.cfg cpp/sp_before_byref_func.cpp
|
|
||||||
30949 Issue_2757.cfg cpp/Issue_2757.cpp
|
|
||||||
|
|
||||||
30950 sp_before_tr_emb_cmt-f.cfg cpp/sp_before_tr_emb_cmt_input.cpp
|
|
||||||
30951 sp_before_tr_emb_cmt-a.cfg cpp/sp_before_tr_emb_cmt_input.cpp
|
|
||||||
30952 sp_before_constr_colon.cfg cpp/sp_before_constr_colon.cpp
|
|
||||||
30953 constr_colon.cfg cpp/constr_colon.cpp
|
|
||||||
30954 Issue_2305.cfg cpp/Issue_2305.cpp
|
|
||||||
30955 indent_ctor_init.cfg cpp/indent_ctor_init.cpp
|
|
||||||
30956 indent_ctor_init_leading.cfg cpp/indent_ctor_init.cpp
|
|
||||||
30957 negative_indent.cfg cpp/class-init.cpp
|
|
||||||
30958 nl_for_leave_one_liners-f.cfg cpp/nl_for_leave_one_liners.cpp
|
|
||||||
30959 nl_for_leave_one_liners-t.cfg cpp/nl_for_leave_one_liners.cpp
|
|
||||||
|
|
||||||
30960 Issue_2151.cfg cpp/Issue_2151.cpp
|
|
||||||
30961 Issue_2232.cfg cpp/Issue_2232.cpp
|
|
||||||
30962 nl_assign_leave_one_liners.cfg cpp/nl_assign_leave_one_liners.cpp
|
|
||||||
30963 Issue_2907.cfg cpp/Issue_2907.cpp
|
|
||||||
30964 Issue_2823.cfg cpp/Issue_2823.cpp
|
|
||||||
|
|
||||||
30970 Issue_2219.cfg cpp/Issue_2219.cpp
|
|
||||||
30971 Issue_2224.cfg cpp/Issue_2224.cpp
|
|
||||||
30972 Issue_2229.cfg cpp/Issue_2229.cpp
|
|
||||||
30973 Issue_2236.cfg cpp/Issue_2236.cpp
|
|
||||||
30974 empty.cfg cpp/using-alias-in-define.cpp
|
|
||||||
|
|
||||||
31000 empty.cfg cpp/digraph.cpp
|
|
||||||
31001 ben_030.cfg cpp/digraph.cpp
|
|
||||||
|
|
||||||
31562 space_indent_class-t_columns-4.cfg cpp/sf562.cpp
|
|
||||||
31567 align_same_func_call_params-t.cfg cpp/sf567.cpp
|
|
||||||
31568 Issue_2368.cfg cpp/Issue_2368.cpp
|
|
||||||
|
|
||||||
31583 empty.cfg cpp/sf583.cpp
|
|
||||||
31593 indent_continue-8.cfg cpp/sf593.cpp
|
|
||||||
31594 issue_672.cfg cpp/issue_672.cpp
|
|
||||||
31595 issue_1778.cfg cpp/issue_1778.cpp
|
|
||||||
31596 issue_1782.cfg cpp/issue_1782.cpp
|
|
||||||
31597 issue_1804.cfg cpp/issue_1804.cpp
|
|
||||||
31598 Issue_1753.cfg cpp/Issue_1753.cpp
|
|
||||||
|
|
||||||
31600 sp_paren_ellipsis-f.cfg cpp/parameter-packs.cpp
|
|
||||||
31601 sp_paren_ellipsis-r.cfg cpp/parameter-packs.cpp
|
|
||||||
31602 sp_sizeof_ellipsis-f.cfg cpp/parameter-packs.cpp
|
|
||||||
31603 sp_sizeof_ellipsis-r.cfg cpp/parameter-packs.cpp
|
|
||||||
31604 sp_before_ellipsis-f.cfg cpp/parameter-packs.cpp
|
|
||||||
31605 sp_before_ellipsis-r.cfg cpp/parameter-packs.cpp
|
|
||||||
31606 sp_type_ellipsis-f.cfg cpp/parameter-packs.cpp
|
|
||||||
31607 sp_type_ellipsis-r.cfg cpp/parameter-packs.cpp
|
|
||||||
31608 sp_sizeof_ellipsis_paren-f.cfg cpp/parameter-packs.cpp
|
|
||||||
31609 sp_sizeof_ellipsis_paren-r.cfg cpp/parameter-packs.cpp
|
|
||||||
|
|
||||||
31610 Issue_2085.cfg cpp/Issue_2085.cpp
|
|
||||||
|
|
||||||
31620 sp_after_type-f.cfg cpp/sp_after_type.cpp
|
|
||||||
31621 sp_after_type-i.cfg cpp/sp_after_type.cpp
|
|
||||||
31622 sp_after_cast-f.cfg cpp/sp_after_type.cpp
|
|
||||||
31623 sp_after_cast-r.cfg cpp/sp_after_type.cpp
|
|
||||||
31624 sp_before_ptr_star-f.cfg cpp/sp_after_type.cpp
|
|
||||||
31625 sp_before_ptr_star-r.cfg cpp/sp_after_type.cpp
|
|
||||||
31626 sp_decltype_paren-f.cfg cpp/issue_1916.cpp
|
|
||||||
31627 sp_decltype_paren-r.cfg cpp/issue_1916.cpp
|
|
||||||
31628 sp_after_decltype-f.cfg cpp/issue_1916.cpp
|
|
||||||
31629 sp_after_decltype-r.cfg cpp/issue_1916.cpp
|
|
||||||
|
|
||||||
31630 sp_after_type-f.cfg cpp/issue_1916.cpp
|
|
||||||
31631 sp_after_type-r.cfg cpp/issue_1916.cpp
|
|
||||||
31632 issue_1916.cfg cpp/issue_1916.cpp
|
|
||||||
31633 sp_after_decltype-f.cfg cpp/sp_after_decltype.cpp
|
|
||||||
31634 sp_after_decltype-r.cfg cpp/sp_after_decltype.cpp
|
|
||||||
31635 empty.cfg cpp/sp_decltype.cpp
|
|
||||||
31636 Issue_1923.cfg cpp/Issue_1923.cpp
|
|
||||||
|
|
||||||
31660 nl_func_var_def_blk-1.cfg cpp/issue_1919.cpp
|
|
||||||
31661 Issue_3097.cfg cpp/Issue_3097.cpp
|
|
||||||
|
|
||||||
31700 toggle_processing_cmt.cfg cpp/toggle_processing_cmt.cpp
|
|
||||||
31701 toggle_processing_cmt2.cfg cpp/toggle_processing_cmt2.cpp
|
|
||||||
31702 toggle_processing_cmt3.cfg cpp/toggle_processing_cmt.cpp
|
|
||||||
31703 toggle_processing_cmt4.cfg cpp/toggle_processing_cmt.cpp
|
|
||||||
|
|
||||||
31710 empty.cfg cpp/string_replace_tab_chars.cpp
|
|
||||||
31711 string_replace_tab_chars-t.cfg cpp/string_replace_tab_chars.cpp
|
|
||||||
|
|
||||||
31720 ben_031.cfg cpp/bit-colon.cpp
|
|
||||||
31721 Issue_2689.cfg cpp/Issue_2689.cpp
|
|
||||||
|
|
||||||
31730 sp_arith-a.cfg cpp/ms-style-ref.cpp
|
|
||||||
|
|
||||||
31740 empty.cfg cpp/I2102.cpp
|
|
||||||
|
|
||||||
32000 sp_skip_vbrace_tokens.cfg cpp/sp_skip_vbrace_tokens.cpp
|
|
||||||
32001 empty.cfg cpp/issue_547_for_each.cpp
|
|
||||||
32002 empty.cfg cpp/proto-wrap.cpp
|
|
||||||
32003 align_var_class_span-1.cfg cpp/issue_633_typename.cpp
|
|
||||||
32004 empty.cfg cpp/issue_624_angle.cpp
|
|
||||||
32005 align_var_class_span-1.cfg cpp/issue_633_typename.cpp
|
|
||||||
32006 space_indent_columns-4.cfg cpp/bug_i_687.cpp
|
|
||||||
32007 Issue_3052.cfg cpp/Issue_3052.cpp
|
|
||||||
32008 Issue_3034.cfg cpp/Issue_3034.cpp
|
|
||||||
|
|
||||||
32100 cpp17.cfg cpp/cpp17.cpp
|
|
||||||
32105 I2103.cfg cpp/I2103.cpp
|
|
||||||
|
|
||||||
32115 2185.cfg cpp/2185.cpp
|
|
||||||
|
|
||||||
33000 tab-0-11.cfg cpp/tab-0.cpp
|
|
||||||
33001 indent_columns-11.cfg cpp/tab-1.cpp
|
|
||||||
33002 empty.cfg cpp/cmt_convert_tab_to_spaces.cpp
|
|
||||||
33003 cmt_convert_tab_to_spaces-t.cfg cpp/cmt_convert_tab_to_spaces.cpp
|
|
||||||
33004 sp_cmt_cpp_start-a.cfg cpp/DoxygenComments.cpp
|
|
||||||
33005 sp_cmt.cfg cpp/DoxygenComments.cpp
|
|
||||||
33006 empty.cfg cpp/string_replace_tab_chars.cpp
|
|
||||||
33007 empty.cfg cpp/NewLine.cpp
|
|
||||||
33008 NewLine-r.cfg cpp/NewLine.cpp
|
|
||||||
33009 NewLine-f.cfg cpp/NewLine0.cpp
|
|
||||||
|
|
||||||
33010 indent_columns-4.cfg cpp/Q_EMIT.cpp
|
|
||||||
33011 indent_class-t_columns-4.cfg cpp/static.h
|
|
||||||
33012 kdepim2.cfg cpp/Q_SIGNAL_SLOT.cpp
|
|
||||||
33013 kdepim3.cfg cpp/Q_2.cpp
|
|
||||||
33014 indent_columns-4.cfg cpp/DB.cpp
|
|
||||||
33015 kdepim5.cfg cpp/Q_FOREACH.cpp
|
|
||||||
33016 indent_once.cfg cpp/indent.cpp
|
|
||||||
33017 bug_1160.cfg cpp/bug_1160.cpp
|
|
||||||
33018 byref-2.cfg cpp/byref-2.cpp
|
|
||||||
33019 bug_657.cfg cpp/bug_657.cpp
|
|
||||||
|
|
||||||
33020 sp_cmt.cfg cpp/bug_662.cpp
|
|
||||||
33021 bug_633.cfg cpp/bug_633.cpp
|
|
||||||
33022 empty.cfg cpp/bug_634.cpp
|
|
||||||
33023 indent_once.cfg cpp/bug_651.cpp
|
|
||||||
33024 empty.cfg cpp/bug_653.cpp
|
|
||||||
33025 empty.cfg cpp/bug_654.cpp
|
|
||||||
33026 empty.cfg cpp/bug_631.cpp
|
|
||||||
33027 bug_664.cfg cpp/bug_664.cpp
|
|
||||||
33028 sp_inside_braces_empty-r.cfg cpp/braces_empty.cpp
|
|
||||||
33029 cast.cfg cpp/cast.cpp
|
|
||||||
|
|
||||||
33030 space_indent_columns-4.cfg cpp/Q_FOREVER.cpp
|
|
||||||
33031 align_assign_span-1.cfg cpp/bug_612.cpp
|
|
||||||
33032 bug_670.cfg cpp/bug_670.cpp
|
|
||||||
33033 bug_670.cfg cpp/bug_670.h
|
|
||||||
33034 bug_671.cfg cpp/bug_671.h
|
|
||||||
33035 cmt_cpp_to_c-t.cfg cpp/patch_32.cpp
|
|
||||||
33036 empty.cfg cpp/bug_663.cpp
|
|
||||||
33037 func_class.cfg cpp/func_class.cpp
|
|
||||||
33038 func_class.cfg cpp/func_class.h
|
|
||||||
33039 mod_remove_empty_return-t.cfg cpp/mod_remove_empty_return.cpp
|
|
||||||
|
|
||||||
33040 nl_after_func_proto_group-3.cfg cpp/bug_i_411.cpp
|
|
||||||
33041 nl_after_func_proto-3.cfg cpp/bug_i_411.cpp
|
|
||||||
33042 nl_after_func_class_proto-3.cfg cpp/bug_i_411.cpp
|
|
||||||
33043 bug_i_478.cfg cpp/bug_i_478.cpp
|
|
||||||
33044 sp_before_comma-f.cfg cpp/bug_i_481.cpp
|
|
||||||
33045 indent_columns-4.cfg cpp/bug_i_width.cpp
|
|
||||||
33046 bug_i_409-split.cfg cpp/bug_i_409.cpp
|
|
||||||
33047 bug_i_409-create.cfg cpp/bug_i_409.cpp
|
|
||||||
33048 bug_i_405.cfg cpp/bug_i_405.cpp
|
|
||||||
33049 pp-pragma.cfg cpp/pp-pragma.cpp
|
|
||||||
|
|
||||||
33050 empty.cfg cpp/issue_523.cpp
|
|
||||||
33051 empty.cfg cpp/bug_i_503.cpp
|
|
||||||
33052 empty.cfg cpp/bug_i_512.cpp
|
|
||||||
33053 space_indent_columns-4.cfg cpp/for_auto.cpp
|
|
||||||
33054 indent_columns-3.cfg cpp/bug_i_825.cpp
|
|
||||||
33056 empty.cfg cpp/bug_33056.cpp
|
|
||||||
33057 bug_1349.cfg cpp/bug_1349.cpp
|
|
||||||
#33058 sp_arith-a.cfg cpp/stdcall.cpp
|
|
||||||
33059 mod_remove_empty_return-t.cfg cpp/mod_remove_empty_return-2.cpp
|
|
||||||
|
|
||||||
33060 empty.cfg cpp/if_constexpr.cpp
|
|
||||||
33061 empty.cfg cpp/if_chain_braces.cpp
|
|
||||||
33062 mod_full_brace_if_chain-t.cfg cpp/if_chain_braces.cpp
|
|
||||||
33063 mod_full_brace_if_chain_only-t.cfg cpp/if_chain_braces.cpp
|
|
||||||
33064 if_chain_braces_2.cfg cpp/if_chain_braces.cpp
|
|
||||||
33069 Issue_2195.cfg cpp/Issue_2195.cpp
|
|
||||||
|
|
||||||
33070 code_width-70.cfg cpp/multi_line.cpp
|
|
||||||
33071 multi_line_1.cfg cpp/multi_line.cpp
|
|
||||||
33072 multi_line_2.cfg cpp/multi_line.cpp
|
|
||||||
33073 multi_line_3.cfg cpp/multi_line.cpp
|
|
||||||
33074 multi_line_4.cfg cpp/multi_line.cpp
|
|
||||||
33075 multi_line_5.cfg cpp/multi_line.cpp
|
|
||||||
33076 multi_line_6.cfg cpp/multi_line.cpp
|
|
||||||
33077 multi_line_7.cfg cpp/multi_line.cpp
|
|
||||||
33078 multi_line_8.cfg cpp/multi_line.cpp
|
|
||||||
33079 multi_line_9.cfg cpp/multi_line.cpp
|
|
||||||
|
|
||||||
33080 multi_line_10.cfg cpp/multi_line.cpp
|
|
||||||
33081 space_indent_columns-4.cfg cpp/bug_i_552.cpp
|
|
||||||
33082 empty.cfg cpp/namespace_namespace.cpp
|
|
||||||
33083 bug_i_359.cfg cpp/bug_i_359.cpp
|
|
||||||
33084 op_sym_empty.cfg cpp/op_sym_empty.cpp
|
|
||||||
33085 indent_with_tabs-0.cfg cpp/bug_i_323.cpp
|
|
||||||
33086 indent_class-t.cfg cpp/bug_i_568.cpp
|
|
||||||
33087 space_indent_columns-4.cfg cpp/bug_i_596.cpp
|
|
||||||
33088 empty.cfg cpp/bug_i_197.cpp
|
|
||||||
33089 indent_class-t_columns-4.cfg cpp/bug_643.cpp
|
|
||||||
|
|
||||||
33090 empty.cfg cpp/gh555.cpp
|
|
||||||
33091 no_squeeze_ifdef.cfg cpp/squeeze_ifdef.cpp
|
|
||||||
33092 squeeze_ifdef.cfg cpp/squeeze_ifdef.cpp
|
|
||||||
33093 sp_angle_paren-f.cfg cpp/sp_angle_paren.cpp
|
|
||||||
33094 sp_angle_paren_empty.cfg cpp/sp_angle_paren.cpp
|
|
||||||
33095 bug_i_322.cfg cpp/bug_i_322.cpp
|
|
||||||
33096 squeeze_ifdef_top.cfg cpp/squeeze_ifdef.cpp
|
|
||||||
33097 pos_enum_comma-tf.cfg cpp/enum_comma.h
|
|
||||||
33098 pos_comma-lf.cfg cpp/enum_comma.h
|
|
||||||
33099 enum_comma-3.cfg cpp/enum_comma.h
|
|
||||||
|
|
||||||
33100 enum_comma-4.cfg cpp/enum_comma.h
|
|
||||||
33101 pos_comma-tb.cfg cpp/enum_comma.h
|
|
||||||
33102 enum_comma-6.cfg cpp/enum_comma.h
|
|
||||||
33103 bug_858-f.cfg cpp/bug_858.cpp
|
|
||||||
33104 bug_858-r.cfg cpp/bug_858.cpp
|
|
||||||
33105 bug_1001.cfg cpp/bug_1001.cpp
|
|
||||||
33106 bool-pos-eol-force.cfg cpp/pos_bool_in_template.h
|
|
||||||
33107 Issue_2688.cfg cpp/Issue_2688.cpp
|
|
||||||
33108 Issue_2045.cfg cpp/Issue_2045.cpp
|
|
||||||
|
|
||||||
33110 enum.cfg cpp/enum.cpp
|
|
||||||
33120 Issue_2149.cfg cpp/Issue_2149.cpp
|
|
||||||
|
|
||||||
33150 indent_columns-4.cfg cpp/bug_i_753.cpp
|
|
||||||
33151 bug_i_752.cfg cpp/bug_i_752.cpp
|
|
||||||
33152 bug_1004.cfg cpp/bug_1004.cpp
|
|
||||||
|
|
||||||
33160 sp_before_byref-r.cfg cpp/bug_1112.cpp
|
|
||||||
33161 sp_before_byref-r.cfg cpp/byref-3.cpp
|
|
||||||
|
|
||||||
33180 pp_multi_comment.cfg cpp/pp_multi_comment.cpp
|
|
||||||
33181 Issue_2759.cfg cpp/Issue_2759.cpp
|
|
||||||
33182 Issue_2794.cfg cpp/Issue_2794.cpp
|
|
||||||
|
|
||||||
33200 cmt_multi_first_len_minimum-1.cfg cpp/first_len_minimum.cpp
|
|
||||||
|
|
||||||
33201 indent_ctor_members_twice.cfg cpp/indent_ctor_members_twice.cpp
|
|
||||||
33202 initlist_leading_commas.cfg cpp/initlist_leading_commas.cpp
|
|
||||||
33203 Issue_2574.cfg cpp/Issue_2574.cpp
|
|
||||||
33204 Issue_2582.cfg cpp/Issue_2582.cpp
|
|
||||||
|
|
||||||
33210 disable_nl_cont.cfg cpp/templates4.cpp
|
|
||||||
33211 disable_nl_cont.cfg cpp/pp_multi_comment.cpp
|
|
||||||
33212 disable_nl_cont.cfg cpp/pp-define-indent.cpp
|
|
||||||
33213 disable_nl_cont.cfg cpp/disable_macro.cpp
|
|
||||||
33214 Issue_2742.cfg cpp/Issue_2742.cpp
|
|
||||||
33215 Issue_3055.cfg cpp/Issue_3055.cpp
|
|
||||||
33216 Issue_3055.cfg cpp/Issue_3055-a.cpp
|
|
||||||
33217 empty.cfg cpp/Issue_3113.cpp
|
|
||||||
|
|
||||||
34001 nl_before_after.cfg cpp/nl_before_after.h
|
|
||||||
34002 indent_columns-3.cfg cpp/bug_i_793.cpp
|
|
||||||
34003 nl_max_blank_in_func-1.cfg cpp/nl_max_blank_in_func.cpp
|
|
||||||
34004 nl_max_blank_in_func-4.cfg cpp/nl_max_blank_in_func.cpp
|
|
||||||
34005 empty.cfg cpp/nl_max_blank_in_func.cpp
|
|
||||||
34006 empty.cfg cpp/bug_i_575.cpp
|
|
||||||
34007 indent_with_tabs-0.cfg cpp/bug_i_928.cpp
|
|
||||||
|
|
||||||
34100 empty.cfg cpp/bug_i_525.cpp
|
|
||||||
34101 empty.cfg cpp/bug_i_646.cpp
|
|
||||||
34105 bug_i_663.cfg cpp/bug_i_663.cpp
|
|
||||||
34108 bug_i_666.cfg cpp/bug_i_666.cpp
|
|
||||||
|
|
||||||
34112 sp_after_cast-r.cfg cpp/bug_i_889.cpp
|
|
||||||
34113 nl_before_func_body_def-1.cfg cpp/bug_902.cpp
|
|
||||||
34114 nl_before_func_body_def-2.cfg cpp/bug_902.cpp
|
|
||||||
34115 nl_before_func_body_def-2.cfg cpp/nl_before_func_body_def.cpp
|
|
||||||
34116 nl_before_func_body_def-2.cfg cpp/issue_2000.cpp
|
|
||||||
34117 extern_func.cfg cpp/extern_func.cpp
|
|
||||||
34118 Issue_2163.cfg cpp/Issue_2163.cpp
|
|
||||||
|
|
||||||
34120 align_assign_span-1.cfg cpp/bug_i_999.cpp
|
|
||||||
34121 bug_1717.cfg cpp/bug_1717.cpp
|
|
||||||
34122 Issue_2440.cfg cpp/Issue_2440.cpp
|
|
||||||
34123 Issue_2440_nl.cfg cpp/Issue_2440_nl.cpp
|
|
||||||
|
|
||||||
34130 nl_brace_fparen-f.cfg cpp/bug_i_1000.cpp
|
|
||||||
34131 nl_brace_fparen-r.cfg cpp/bug_i_1000.cpp
|
|
||||||
34132 new_op_a.cfg cpp/new_op.cpp
|
|
||||||
34133 new_op_f.cfg cpp/new_op.cpp
|
|
||||||
34134 new_op_r.cfg cpp/new_op.cpp
|
|
||||||
34135 new_op_paren_open_close.cfg cpp/new_op.cpp
|
|
||||||
34136 sp_balance_nested_parens.cfg cpp/sp_balance_nested_parens.cpp
|
|
||||||
|
|
||||||
34140 empty.cfg cpp/bug_1027.cpp
|
|
||||||
34141 empty.cfg cpp/bug_1005.cpp
|
|
||||||
34142 sp_before_byref-r.cfg cpp/I1112-1.cpp
|
|
||||||
34143 I1112-2.cfg cpp/I1112-2.cpp
|
|
||||||
34144 sp_before_ptr_star-r.cfg cpp/I1112-3.cpp
|
|
||||||
34145 i683.cfg cpp/i683.cpp
|
|
||||||
34146 sp_bool-f.cfg cpp/bug_1002.cpp
|
|
||||||
34147 sp_bool-r.cfg cpp/bug_1002.cpp
|
|
||||||
34148 nl_before_if_closing_paren-f.cfg cpp/bug_1139.cpp
|
|
||||||
34149 nl_before_if_closing_paren-r.cfg cpp/bug_1139.cpp
|
|
||||||
|
|
||||||
34150 empty.cfg cpp/bug_1032.cpp
|
|
||||||
34151 indent_else_if-t.cfg cpp/bug_666.cpp
|
|
||||||
34152 empty.cfg cpp/bug_1068.cpp
|
|
||||||
34153 nl_type_brace_init_lst-f.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34154 nl_type_brace_init_lst-r.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34155 nl_type_brace_init_lst_open-f.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34156 nl_type_brace_init_lst_open-r.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34157 nl_type_brace_init_lst_close-f.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34158 nl_type_brace_init_lst_close-r.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34159 sp_type_brace_init_lst-f.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
|
|
||||||
34160 sp_type_brace_init_lst-r.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34161 sp_inside_type_brace_init_lst-f.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34162 sp_inside_type_brace_init_lst-r.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34163 sp_after_type_brace_init_lst_open-f.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34164 sp_after_type_brace_init_lst_open-r.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34165 sp_before_type_brace_init_lst_close-f.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34166 sp_before_type_brace_init_lst_close-r.cfg cpp/type_brace_init_lst.cpp
|
|
||||||
34167 nl_func_call_args_multi_line_ignore_closures.cfg cpp/nl_func_call_args_multi_line_ignore_closures.cpp
|
|
||||||
34168 nl_type_brace_init_lst-r.cfg cpp/Issue_2910.cpp
|
|
||||||
34169 sp_inside_fparens-f.cfg cpp/init-list-call.cpp
|
|
||||||
|
|
||||||
34170 empty.cfg cpp/i1082.cpp
|
|
||||||
34171 empty.cfg cpp/i1181.cpp
|
|
||||||
34172 space_indent_columns-4.cfg cpp/i1165.cpp
|
|
||||||
34173 arith-vs-ptr.cfg cpp/i1464.cpp
|
|
||||||
34174 arith-vs-ptr.cfg cpp/i1466.cpp
|
|
||||||
34175 align_assign_span-1.cfg cpp/i1509.cpp
|
|
||||||
34176 align_assign_span-1.cfg cpp/i1509_bug_1112_correction.cpp
|
|
||||||
34177 sp_func_call_paren.cfg cpp/sp_func_call_paren.cpp
|
|
||||||
|
|
||||||
34180 bug_1402.cfg cpp/bug_1402.cpp
|
|
||||||
|
|
||||||
34190 bug_1003.cfg cpp/bug_1003.cpp
|
|
||||||
34191 empty.cfg cpp/comment-align-multiline.cpp
|
|
||||||
34192 mod_remove_extra_semicolon-t.cfg cpp/i1207.cpp
|
|
||||||
34193 empty.cfg cpp/i1218.cpp
|
|
||||||
34194 sp_arith_additive-f.cfg cpp/sp_arith_additive.cpp
|
|
||||||
34195 sp_arith_additive-r.cfg cpp/sp_arith_additive.cpp
|
|
||||||
34196 Issue_1460.cfg cpp/Issue_1460.h
|
|
||||||
34197 bug_1161.cfg cpp/bug_1161.cpp
|
|
||||||
34198 sp_dc.cfg cpp/bug_1249.cpp
|
|
||||||
34199 empty.cfg cpp/not_lambda.cpp
|
|
||||||
|
|
||||||
34200 i1536.cfg cpp/i1536.cpp
|
|
||||||
34201 mod_add_long_namespace_closebrace_comment-1.cfg cpp/i1565.cpp
|
|
||||||
34202 mod_add_long_namespace_closebrace_comment-1.cfg cpp/i1617.cpp
|
|
||||||
34203 i1516.cfg cpp/i1516.cpp
|
|
||||||
34204 align_func_params_span-1.cfg cpp/func_param_indent_leading_comma.cpp
|
|
||||||
34205 bug_1395.cfg cpp/bug_1395.cpp
|
|
||||||
34206 indent_semicolon_for_paren-t.cfg cpp/for_loop_head.cpp
|
|
||||||
34207 indent_first_for_expr-t.cfg cpp/for_loop_head.cpp
|
|
||||||
34208 nl_func_type_name-r.cfg cpp/conversion_operator.cpp
|
|
||||||
34209 nl-brAfter-fcallParen.cfg cpp/lambda_selfcalling.cpp
|
|
||||||
|
|
||||||
# TODO: Find relevant test cases for 'override'.
|
|
||||||
34210 empty.cfg cpp/override_virtual.cpp
|
|
||||||
34211 anonymous_enum.cfg cpp/anonymous_enum.cpp
|
|
||||||
|
|
||||||
34250 empty.cfg cpp/bug_1607.cpp
|
|
||||||
34251 bug_1649.cfg cpp/bug_1649.cpp
|
|
||||||
34252 nl_after_func_proto_group-3.cfg cpp/issue_2001.cpp
|
|
||||||
34253 nl_after_func_proto_group-3.cfg cpp/friends.cpp
|
|
||||||
34254 issue_1985.cfg cpp/issue_1985.cpp
|
|
||||||
34255 eat_blanks_after_codewidth.cfg cpp/eat_blanks_after_codewidth.cpp
|
|
||||||
34256 Issue_2836.cfg cpp/Issue_2836.cpp
|
|
||||||
|
|
||||||
34280 UNI-29935.cfg cpp/UNI-29935.cpp
|
|
||||||
|
|
||||||
34290 sp_type_brace_init_lst-f.cfg cpp/brace_brace_init_lst.cpp
|
|
||||||
34291 sp_type_brace_init_lst-r.cfg cpp/brace_brace_init_lst.cpp
|
|
||||||
34292 sp_inside_type_brace_init_lst-f.cfg cpp/brace_brace_init_lst.cpp
|
|
||||||
34293 sp_inside_type_brace_init_lst-r.cfg cpp/brace_brace_init_lst.cpp
|
|
||||||
34294 sp_after_type_brace_init_lst_open-f.cfg cpp/brace_brace_init_lst.cpp
|
|
||||||
34295 sp_after_type_brace_init_lst_open-r.cfg cpp/brace_brace_init_lst.cpp
|
|
||||||
34296 i1768.cfg cpp/i1768.cpp
|
|
||||||
34297 align_assign_decl_func-0.cfg cpp/align-assign-mixed.cpp
|
|
||||||
34298 align_assign_decl_func-1.cfg cpp/align-assign-mixed.cpp
|
|
||||||
34299 align_assign_decl_func-2.cfg cpp/align-assign-mixed.cpp
|
|
||||||
|
|
||||||
# __asm__
|
|
||||||
34300 bug_1236.cfg cpp/bug_1236.cpp
|
|
||||||
34301 nl_fdef_brace_cond-f.cfg cpp/nl_fdef_brace_cond-f.cpp
|
|
||||||
34302 nl_fdef_brace_cond-r.cfg cpp/nl_fdef_brace_cond-r.cpp
|
|
||||||
34303 nl_fdef_brace_cond-fr.cfg cpp/nl_fdef_brace_cond-fr.cpp
|
|
||||||
34304 nl_fdef_brace_cond-rf.cfg cpp/nl_fdef_brace_cond-rf.cpp
|
|
||||||
34305 issue_2124-1.cfg cpp/issue_2124-1.cpp
|
|
||||||
34306 issue_2124-2.cfg cpp/issue_2124-2.cpp
|
|
||||||
34307 2203.cfg cpp/2203.cpp
|
|
||||||
34308 enum_comment_wrap.cfg cpp/enum_comment_wrap.cpp
|
|
||||||
34309 issue_2209.cfg cpp/issue_2209-1.cpp
|
|
||||||
|
|
||||||
34310 issue_2209.cfg cpp/issue_2209-2.cpp
|
|
||||||
34311 Issue_2250.cfg cpp/Issue_2250.cpp
|
|
||||||
34312 Issue_2101.cfg cpp/Issue_2101.cpp
|
|
||||||
34313 Issue_2437.cfg cpp/Issue_2437.cpp
|
|
||||||
34314 Issue_2604.cfg cpp/Issue_2604.cpp
|
|
||||||
34315 align_func_proto_thresh_1.cfg cpp/align_func_proto_thresh.cpp
|
|
||||||
34316 align_func_proto_thresh_2.cfg cpp/align_func_proto_thresh.cpp
|
|
||||||
34317 align_func_proto_thresh_3.cfg cpp/align_func_proto_thresh.cpp
|
|
||||||
34318 align_assign_func_proto_1.cfg cpp/align_assign_func_proto.cpp
|
|
||||||
34319 align_func_proto_thresh_4.cfg cpp/align_func_proto_thresh2.cpp
|
|
||||||
|
|
||||||
34320 align_func_proto_thresh_5.cfg cpp/align_func_proto_thresh2.cpp
|
|
||||||
34321 bug_2285.cfg cpp/bug_2285.cpp
|
|
||||||
34322 issue_2623_1.cfg cpp/issue_2623.cpp
|
|
||||||
34323 issue_2623_2.cfg cpp/issue_2623.cpp
|
|
||||||
34324 issue_2623_3.cfg cpp/issue_2623.cpp
|
|
||||||
34325 Issue_3025.cfg cpp/Issue_3025.cpp
|
|
||||||
34326 Issue_3040.cfg cpp/Issue_3040.cpp
|
|
||||||
34327 Issue_3044.cfg cpp/Issue_3044.cpp
|
|
||||||
34328 Issue_3048.cfg cpp/Issue_3048.cpp
|
|
||||||
|
|
||||||
34330 Issue_3061_0nl.cfg cpp/Issue_3061_0nl.cpp
|
|
||||||
34331 Issue_3061_0nl.cfg cpp/Issue_3061_1nl.cpp
|
|
||||||
34332 Issue_3061_0nl.cfg cpp/Issue_3061_2nl.cpp
|
|
||||||
34333 Issue_3061_1nl.cfg cpp/Issue_3061_0nl.cpp
|
|
||||||
34334 Issue_3061_1nl.cfg cpp/Issue_3061_1nl.cpp
|
|
||||||
34335 Issue_3061_1nl.cfg cpp/Issue_3061_2nl.cpp
|
|
||||||
34336 Issue_3061_2nl.cfg cpp/Issue_3061_0nl.cpp
|
|
||||||
34337 Issue_3061_2nl.cfg cpp/Issue_3061_1nl.cpp
|
|
||||||
34338 Issue_3061_2nl.cfg cpp/Issue_3061_2nl.cpp
|
|
||||||
34339 Issue_3061_3nl.cfg cpp/Issue_3061_0nl.cpp
|
|
||||||
34340 Issue_3061_3nl.cfg cpp/Issue_3061_1nl.cpp
|
|
||||||
34341 Issue_3061_3nl.cfg cpp/Issue_3061_2nl.cpp
|
|
||||||
|
|
||||||
34350 indent_comma_brace.cfg cpp/indent_comma_brace_glob.cpp
|
|
||||||
34351 indent_comma_brace.cfg cpp/indent_comma_brace_func.cpp
|
|
||||||
|
|
||||||
# Adopt some UT tests
|
|
||||||
10000 empty.cfg cpp/621_this-spacing.cpp
|
|
||||||
10001 empty.cfg cpp/622_ifdef-indentation.cpp
|
|
||||||
10002 623_caret-spacing.cfg cpp/623_caret-spacing.cpp
|
|
||||||
10003 633_decl-in-func-typedef.cfg cpp/633_decl-in-func-typedef.cpp
|
|
||||||
10004 empty.cfg cpp/634_extern-c-no-block.cpp
|
|
||||||
10005 Uncrustify.Cpp.cfg cpp/define-indentation.cpp
|
|
||||||
10006 dont-detab-strings.cfg cpp/dont-detab-strings.cpp
|
|
||||||
10007 dont-process-defines.cfg cpp/dont-process-defines.cpp
|
|
||||||
10008 empty.cfg cpp/PR326_invalid-backslash-eol-csharp.cpp
|
|
||||||
10009 STUCK_macro-difficulties.cfg cpp/STUCK_macro-difficulties.cpp
|
|
||||||
|
|
||||||
10020 U02-Cpp.cfg cpp/macro_spaces.cpp
|
|
||||||
10021 U03-Cpp.cfg cpp/braces_align.cpp
|
|
||||||
10022 U04-Cpp.cfg cpp/foreach.cpp
|
|
||||||
10023 U05-Cpp.cfg cpp/for_auto.cpp
|
|
||||||
10024 U06-Cpp.cfg cpp/ifcomment.cpp
|
|
||||||
10025 U07-Cpp.cfg cpp/qtargs.cpp
|
|
||||||
10026 sp_before_ellipsis-r.cfg cpp/gcc_case_ellipsis.cpp
|
|
||||||
10027 Issue_3058.cfg cpp/Issue_3058.cpp
|
|
||||||
|
|
||||||
10047 U16-Cpp.cfg cpp/UNI-1334.cpp
|
|
||||||
10048 empty.cfg cpp/UNI-1335.cpp
|
|
||||||
|
|
||||||
10050 U18-Cpp.cfg cpp/UNI-1337.cpp
|
|
||||||
10052 empty.cfg cpp/UNI-1339.cpp
|
|
||||||
10053 UNI-1340.cfg cpp/UNI-1340.cpp
|
|
||||||
10054 UNI-1344.cfg cpp/UNI-1344.cpp
|
|
||||||
10056 UNI-1346.cfg cpp/UNI-1346.cpp
|
|
||||||
10057 UNI-1347.cfg cpp/UNI-1347.cpp
|
|
||||||
|
|
||||||
10060 UNI-1350.cfg cpp/UNI-1350.cpp
|
|
||||||
10062 UNI-1356.cfg cpp/UNI-1356.cpp
|
|
||||||
10063 UNI-1358.cfg cpp/UNI-1358.cpp
|
|
||||||
10069 empty.cfg cpp/UNI-1980.cpp
|
|
||||||
|
|
||||||
10070 U21-Cpp.cfg cpp/UNI-1981.cpp
|
|
||||||
10071 empty.cfg cpp/UNI-1983.cpp
|
|
||||||
10079 U23-Cpp.cfg cpp/UNI-9650.cpp
|
|
||||||
|
|
||||||
10080 UNI-10496.cfg cpp/UNI-10496.cpp
|
|
||||||
|
|
||||||
10100 issue_564.cfg cpp/issue_564.cpp
|
|
||||||
10101 issue_574.cfg cpp/issue_574.cpp
|
|
||||||
10102 issue_574-i-a.cfg cpp/issue_574.cpp
|
|
||||||
10103 issue_574-i-b.cfg cpp/issue_574.cpp
|
|
||||||
|
|
||||||
10566 empty.cfg cpp/issue_1752.cpp
|
|
||||||
|
|
||||||
11000 UNI-12046.cfg cpp/UNI-12046.cpp
|
|
||||||
|
|
||||||
20002 UNI-32657.cfg cpp/UNI-32657.cpp
|
|
||||||
|
|
||||||
20011 empty.cfg cpp/UNI-38381.cpp
|
|
||||||
|
|
||||||
60001 UNI-2650.cfg cpp/UNI-2650.cpp
|
|
||||||
60002 U25-Cpp.cfg cpp/UNI-16283.cpp
|
|
||||||
60003 U26-Cpp.cfg cpp/UNI-1288.cpp
|
|
||||||
60006 UNI-2049.cfg cpp/UNI-2049.cpp
|
|
||||||
60017 U27-Cpp.cfg cpp/UNI-2683.cpp
|
|
||||||
|
|
||||||
60022 U28-Cpp.cfg cpp/UNI-18439.cpp
|
|
||||||
60025 U29-Cpp.cfg cpp/UNI-19894.cpp
|
|
||||||
60027 U30-Cpp.cfg cpp/UNI-21506.cpp
|
|
||||||
60028 U31-Cpp.cfg cpp/UNI-21509.cpp
|
|
||||||
60029 empty.cfg cpp/UNI-21510.cpp
|
|
||||||
|
|
||||||
60030 U33-Cpp.cfg cpp/UNI-21727.cpp
|
|
||||||
60031 empty.cfg cpp/UNI-21728.cpp
|
|
||||||
60032 empty.cfg cpp/UNI-21729.cpp
|
|
||||||
60036 UNI-2680.cfg cpp/UNI-2680.cpp
|
|
||||||
60038 UNI-30088.cfg cpp/UNI-30088.cpp
|
|
||||||
60039 U36-Cpp.cfg cpp/UNI-30628.cpp
|
|
||||||
|
|
||||||
60042 UNI-18777.cfg cpp/UNI-18777.cpp
|
|
||||||
60043 nl_remove_extra_newlines-1.cfg cpp/i2033.cpp
|
|
||||||
60044 nl_fdef_brace-r__nl_collapse_empty_body-t.cfg cpp/i2116.cpp
|
|
||||||
60045 align_asterisk_after_type_cast.cfg cpp/align_asterisk_after_type_cast.cpp
|
|
||||||
60046 align_continuation_left_shift.cfg cpp/align_continuation_left_shift.cpp
|
|
||||||
60047 align_default_after_override.cfg cpp/align_default_after_override.cpp
|
|
||||||
60048 bug_2322.cfg cpp/bug_2322.cpp
|
|
||||||
60049 bug_2402.cfg cpp/bug_2402.cpp
|
|
||||||
|
|
||||||
60050 mod_remove_extra_semicolon-t.cfg cpp/semicolon-removal-after-ternary-operator.cpp
|
|
||||||
60051 bug_2371.cfg cpp/bug_2371.cpp
|
|
||||||
60052 bug_2433_1.cfg cpp/bug_2433_1.cpp
|
|
||||||
60053 bug_2433_2.cfg cpp/bug_2433_2.cpp
|
|
||||||
60054 interface-keyword-in-cpp.cfg cpp/interface-keyword-in-cpp.cpp
|
|
||||||
60055 issue_3116.cfg cpp/issue_3116.cpp
|
|
||||||
60056 issue_3116.cfg cpp/issue_3116-2.cpp
|
|
@ -1,68 +0,0 @@
|
|||||||
# d.test ===========
|
|
||||||
#
|
|
||||||
# Test cases specifically for the D language.
|
|
||||||
#
|
|
||||||
# Range: 40000 - 49999
|
|
||||||
# test.name config.file input.file output.file
|
|
||||||
|
|
||||||
40000 d.cfg d/HashMap.d
|
|
||||||
40001 d.cfg d/imports.d
|
|
||||||
40002 d.cfg d/volatile.d
|
|
||||||
40003 d.cfg d/volatile-1.d
|
|
||||||
40004 d.cfg d/volatile-2.d
|
|
||||||
40005 d.cfg d/volatile-3.d
|
|
||||||
40006 d.cfg d/Lexer.d
|
|
||||||
40007 d2.cfg d/Lexer.d
|
|
||||||
40010 d.cfg d/template.d
|
|
||||||
40011 d2.cfg d/template.d
|
|
||||||
40020 d.cfg d/funcfunc.d
|
|
||||||
40021 d.cfg d/tst01.d
|
|
||||||
40022 d-tst2.cfg d/tst02.d
|
|
||||||
40023 d.cfg d/bug-indent.d
|
|
||||||
40024 d3.cfg d/tst03.d
|
|
||||||
40025 d3a.cfg d/tst03.d
|
|
||||||
|
|
||||||
40026 empty.cfg d/wysiwyg_strings.d
|
|
||||||
40027 empty.cfg d/static_if_in_struct.d
|
|
||||||
|
|
||||||
40030 d.cfg d/delegate.d
|
|
||||||
40035 d.cfg d/enum.d
|
|
||||||
|
|
||||||
40040 sort_imports.cfg d/sort_import.d
|
|
||||||
|
|
||||||
40050 d.cfg d/strings.d
|
|
||||||
40051 d.cfg d/numbers.d
|
|
||||||
40052 d2.cfg d/numbers.d
|
|
||||||
|
|
||||||
40060 d.cfg d/casts.d
|
|
||||||
40061 d.cfg d/const.d
|
|
||||||
|
|
||||||
40070 d_sp_paren.cfg d/d_sp_paren.d
|
|
||||||
|
|
||||||
40080 d.cfg d/static_if.d
|
|
||||||
|
|
||||||
40090 libd.cfg d/square_indent_tab.d
|
|
||||||
|
|
||||||
40100 1438.cfg d/1438.d
|
|
||||||
|
|
||||||
40201 invariant.cfg d/invariant.d
|
|
||||||
|
|
||||||
40300 d.cfg d/extern_.d
|
|
||||||
|
|
||||||
40400 mod_full_brace_if_chain_only-t.cfg d/vbraces000.d
|
|
||||||
40401 empty.cfg d/vbraces001.d
|
|
||||||
40402 mod_full_brace_if_chain_only-t.cfg d/vbraces002.d
|
|
||||||
|
|
||||||
40403 empty.cfg d/template_use.d
|
|
||||||
|
|
||||||
40500 empty.cfg d/template_spacing000.d
|
|
||||||
40501 sp_after_type-r.cfg d/template_spacing001.d
|
|
||||||
40502 sp_after_type-f.cfg d/template_spacing001.d
|
|
||||||
40503 sp_after_type-a.cfg d/template_spacing001.d
|
|
||||||
40504 sp_after_type-r.cfg d/type_spacing000.d
|
|
||||||
40505 sp_after_type-f.cfg d/type_spacing000.d
|
|
||||||
40506 sp_after_type-a.cfg d/type_spacing000.d
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,298 +0,0 @@
|
|||||||
#ifndef HEADER_ASN1_H
|
|
||||||
#define HEADER_ASN1_H
|
|
||||||
|
|
||||||
#define V_ASN1_UNIVERSAL 0x00
|
|
||||||
#define V_ASN1_APPLICATION 0x40
|
|
||||||
#define V_ASN1_CONTEXT_SPECIFIC 0x80
|
|
||||||
#define V_ASN1_PRIVATE 0xc0
|
|
||||||
|
|
||||||
#define V_ASN1_CONSTRUCTED 0x20
|
|
||||||
#define V_ASN1_PRIMITIVE_TAG 0x1f
|
|
||||||
#define V_ASN1_PRIMATIVE_TAG 0x1f
|
|
||||||
|
|
||||||
#define V_ASN1_APP_CHOOSE -2 /* let the recipient choose */
|
|
||||||
#define V_ASN1_OTHER -3 /* used in ASN1_TYPE */
|
|
||||||
#define V_ASN1_ANY -4 /* used in ASN1 template code */
|
|
||||||
|
|
||||||
#define V_ASN1_NEG 0x100 /* negative flag */
|
|
||||||
|
|
||||||
#define V_ASN1_UNDEF -1
|
|
||||||
#define V_ASN1_EOC 0
|
|
||||||
#define V_ASN1_BOOLEAN 1 /**/
|
|
||||||
#define V_ASN1_INTEGER 2
|
|
||||||
#define V_ASN1_NEG_INTEGER (2 | V_ASN1_NEG)
|
|
||||||
#define V_ASN1_BIT_STRING 3
|
|
||||||
#define V_ASN1_OCTET_STRING 4
|
|
||||||
#define V_ASN1_NULL 5
|
|
||||||
#define V_ASN1_OBJECT 6 /* object identifier */
|
|
||||||
#define V_ASN1_OBJECT_DESCRIPTOR 7
|
|
||||||
#define V_ASN1_EXTERNAL 8 /* external / instance of */
|
|
||||||
#define V_ASN1_REAL 9
|
|
||||||
#define V_ASN1_ENUMERATED 10
|
|
||||||
#define V_ASN1_NEG_ENUMERATED (10 | V_ASN1_NEG)
|
|
||||||
#define V_ASN1_EMBEDDED_PDV 11
|
|
||||||
#define V_ASN1_UTF8STRING 12
|
|
||||||
#define V_ASN1_SEQUENCE 16
|
|
||||||
#define V_ASN1_SET 17
|
|
||||||
#define V_ASN1_NUMERICSTRING 18 /**/
|
|
||||||
#define V_ASN1_PRINTABLESTRING 19
|
|
||||||
#define V_ASN1_T61STRING 20
|
|
||||||
#define V_ASN1_TELETEXSTRING 20 /* alias */
|
|
||||||
#define V_ASN1_VIDEOTEXSTRING 21 /**/
|
|
||||||
#define V_ASN1_IA5STRING 22
|
|
||||||
#define V_ASN1_UTCTIME 23
|
|
||||||
#define V_ASN1_GENERALIZEDTIME 24 /**/
|
|
||||||
#define V_ASN1_GRAPHICSTRING 25 /**/
|
|
||||||
#define V_ASN1_ISO64STRING 26 /**/
|
|
||||||
#define V_ASN1_VISIBLESTRING 26 /* alias */
|
|
||||||
#define V_ASN1_GENERALSTRING 27 /**/
|
|
||||||
#define V_ASN1_UNIVERSALSTRING 28 /**/
|
|
||||||
#define V_ASN1_BMPSTRING 30
|
|
||||||
|
|
||||||
/* For use with d2i_ASN1_type_bytes() */
|
|
||||||
#define B_ASN1_NUMERICSTRING 0x0001
|
|
||||||
#define B_ASN1_PRINTABLESTRING 0x0002
|
|
||||||
#define B_ASN1_T61STRING 0x0004
|
|
||||||
#define B_ASN1_TELETEXSTRING 0x0004
|
|
||||||
#define B_ASN1_VIDEOTEXSTRING 0x0008
|
|
||||||
#define B_ASN1_IA5STRING 0x0010
|
|
||||||
#define B_ASN1_GRAPHICSTRING 0x0020
|
|
||||||
#define B_ASN1_ISO64STRING 0x0040
|
|
||||||
#define B_ASN1_VISIBLESTRING 0x0040
|
|
||||||
#define B_ASN1_GENERALSTRING 0x0080
|
|
||||||
#define B_ASN1_UNIVERSALSTRING 0x0100
|
|
||||||
#define B_ASN1_OCTET_STRING 0x0200
|
|
||||||
#define B_ASN1_BIT_STRING 0x0400
|
|
||||||
#define B_ASN1_BMPSTRING 0x0800
|
|
||||||
#define B_ASN1_UNKNOWN 0x1000
|
|
||||||
#define B_ASN1_UTF8STRING 0x2000
|
|
||||||
#define B_ASN1_UTCTIME 0x4000
|
|
||||||
#define B_ASN1_GENERALIZEDTIME 0x8000
|
|
||||||
#define B_ASN1_SEQUENCE 0x10000
|
|
||||||
|
|
||||||
/* For use with ASN1_mbstring_copy() */
|
|
||||||
#define MBSTRING_FLAG 0x1000
|
|
||||||
#define MBSTRING_UTF8 (MBSTRING_FLAG)
|
|
||||||
#define MBSTRING_ASC (MBSTRING_FLAG | 1)
|
|
||||||
#define MBSTRING_BMP (MBSTRING_FLAG | 2)
|
|
||||||
#define MBSTRING_UNIV (MBSTRING_FLAG | 4)
|
|
||||||
|
|
||||||
#define SMIME_OLDMIME 0x400
|
|
||||||
#define SMIME_CRLFEOL 0x800
|
|
||||||
#define SMIME_STREAM 0x1000
|
|
||||||
|
|
||||||
struct X509_algor_st;
|
|
||||||
DECLARE_STACK_OF(X509_ALGOR);
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_SET_OF(type) /* filled in by mkstack.pl */
|
|
||||||
#define IMPLEMENT_ASN1_SET_OF(type) /* nothing, no longer needed */
|
|
||||||
|
|
||||||
/* We MUST make sure that, except for constness, asn1_ctx_st and
|
|
||||||
* asn1_const_ctx are exactly the same. Fortunately, as soon as
|
|
||||||
* the old ASN1 parsing macros are gone, we can throw this away
|
|
||||||
* as well... */
|
|
||||||
typedef struct asn1_ctx_st
|
|
||||||
{
|
|
||||||
unsigned char *p; /* work char pointer */
|
|
||||||
int eos; /* end of sequence read for indefinite encoding */
|
|
||||||
int error; /* error code to use when returning an error */
|
|
||||||
int inf; /* constructed if 0x20, indefinite is 0x21 */
|
|
||||||
int tag; /* tag from last 'get object' */
|
|
||||||
int xclass; /* class from last 'get object' */
|
|
||||||
size_t slen; /* length of last 'get object' */
|
|
||||||
unsigned char * max; /* largest value of p allowed */
|
|
||||||
unsigned char * q; /* temporary variable */
|
|
||||||
unsigned char **pp; /* variable */
|
|
||||||
int line; /* used in error processing */
|
|
||||||
} ASN1_CTX;
|
|
||||||
|
|
||||||
typedef struct asn1_const_ctx_st
|
|
||||||
{
|
|
||||||
const unsigned char *p; /* work char pointer */
|
|
||||||
int eos; /* end of sequence read for indefinite encoding */
|
|
||||||
int error; /* error code to use when returning an error */
|
|
||||||
int inf; /* constructed if 0x20, indefinite is 0x21 */
|
|
||||||
int tag; /* tag from last 'get object' */
|
|
||||||
int xclass; /* class from last 'get object' */
|
|
||||||
size_t slen; /* length of last 'get object' */
|
|
||||||
const unsigned char * max; /* largest value of p allowed */
|
|
||||||
const unsigned char * q; /* temporary variable */
|
|
||||||
const unsigned char **pp; /* variable */
|
|
||||||
int line; /* used in error processing */
|
|
||||||
} ASN1_const_CTX;
|
|
||||||
|
|
||||||
/* These are used internally in the ASN1_OBJECT to keep track of
|
|
||||||
* whether the names and data need to be free()ed */
|
|
||||||
#define ASN1_OBJECT_FLAG_DYNAMIC 0x01 /* internal use */
|
|
||||||
#define ASN1_OBJECT_FLAG_CRITICAL 0x02 /* critical x509v3 object id */
|
|
||||||
#define ASN1_OBJECT_FLAG_DYNAMIC_STRINGS 0x04 /* internal use */
|
|
||||||
#define ASN1_OBJECT_FLAG_DYNAMIC_DATA 0x08 /* internal use */
|
|
||||||
typedef struct asn1_object_st
|
|
||||||
{
|
|
||||||
const char *sn, *ln;
|
|
||||||
int nid;
|
|
||||||
size_t length;
|
|
||||||
const unsigned char *data; /* data remains const after init */
|
|
||||||
int flags; /* Should we free this one */
|
|
||||||
} ASN1_OBJECT;
|
|
||||||
|
|
||||||
#define ASN1_STRING_FLAG_BITS_LEFT 0x08 /* Set if 0x07 has bits left value */
|
|
||||||
/* This indicates that the ASN1_STRING is not a real value but just a place
|
|
||||||
* holder for the location where indefinite length constructed data should
|
|
||||||
* be inserted in the memory buffer
|
|
||||||
*/
|
|
||||||
#define ASN1_STRING_FLAG_NDEF 0x010
|
|
||||||
|
|
||||||
/* This flag is used by the CMS code to indicate that a string is not
|
|
||||||
* complete and is a place holder for content when it had all been
|
|
||||||
* accessed. The flag will be reset when content has been written to it.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define ASN1_STRING_FLAG_CONT 0x020
|
|
||||||
|
|
||||||
/* This is the base type that holds just about everything :-) */
|
|
||||||
typedef struct asn1_string_st
|
|
||||||
{
|
|
||||||
size_t length;
|
|
||||||
int type;
|
|
||||||
unsigned char *data;
|
|
||||||
|
|
||||||
/* The value of the following field depends on the type being
|
|
||||||
* held. It is mostly being used for BIT_STRING so if the
|
|
||||||
* input data has a non-zero 'unused bits' value, it will be
|
|
||||||
* handled correctly */
|
|
||||||
long flags;
|
|
||||||
} ASN1_STRING;
|
|
||||||
|
|
||||||
/* ASN1_ENCODING structure: this is used to save the received
|
|
||||||
* encoding of an ASN1 type. This is useful to get round
|
|
||||||
* problems with invalid encodings which can break signatures.
|
|
||||||
*/
|
|
||||||
|
|
||||||
typedef struct ASN1_ENCODING_st
|
|
||||||
{
|
|
||||||
unsigned char *enc; /* DER encoding */
|
|
||||||
size_t len; /* Length of encoding */
|
|
||||||
int modified; /* set to 1 if 'enc' is invalid */
|
|
||||||
} ASN1_ENCODING;
|
|
||||||
|
|
||||||
/* Used with ASN1 LONG type: if a long is set to this it is omitted */
|
|
||||||
#define ASN1_LONG_UNDEF 0x7fffffffL
|
|
||||||
|
|
||||||
#define STABLE_FLAGS_MALLOC 0x01
|
|
||||||
#define STABLE_NO_MASK 0x02
|
|
||||||
#define DIRSTRING_TYPE \
|
|
||||||
(B_ASN1_PRINTABLESTRING | B_ASN1_T61STRING | B_ASN1_BMPSTRING | B_ASN1_UTF8STRING)
|
|
||||||
#define PKCS9STRING_TYPE (DIRSTRING_TYPE | B_ASN1_IA5STRING)
|
|
||||||
|
|
||||||
/* Declarations for template structures: for full definitions
|
|
||||||
* see asn1t.h
|
|
||||||
*/
|
|
||||||
typedef struct ASN1_TEMPLATE_st ASN1_TEMPLATE;
|
|
||||||
typedef struct ASN1_ITEM_st ASN1_ITEM;
|
|
||||||
typedef struct ASN1_TLC_st ASN1_TLC;
|
|
||||||
/* This is just an opaque pointer */
|
|
||||||
typedef struct ASN1_VALUE_st ASN1_VALUE;
|
|
||||||
|
|
||||||
/* Declare ASN1 functions: the implement macro in in asn1t.h */
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_FUNCTIONS(type) DECLARE_ASN1_FUNCTIONS_name(type, type)
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_ALLOC_FUNCTIONS(type) \
|
|
||||||
DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, type)
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_FUNCTIONS_name(type, name) \
|
|
||||||
DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name); \
|
|
||||||
DECLARE_ASN1_ENCODE_FUNCTIONS(type, name, name)
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_FUNCTIONS_fname(type, itname, name) \
|
|
||||||
DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name); \
|
|
||||||
DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name)
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name) \
|
|
||||||
type *d2i_##name(type **a, const unsigned char **in, size_t len); \
|
|
||||||
int i2d_##name(const type *a, unsigned char **out); \
|
|
||||||
DECLARE_ASN1_ITEM(itname)
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_ENCODE_FUNCTIONS_const(type, name) \
|
|
||||||
type *d2i_##name(type **a, const unsigned char **in, size_t len); \
|
|
||||||
int i2d_##name(const type *a, unsigned char **out); \
|
|
||||||
DECLARE_ASN1_ITEM(name)
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_NDEF_FUNCTION(name) \
|
|
||||||
int i2d_##name##_NDEF(const name * a, unsigned char **out)
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_FUNCTIONS_const(name) \
|
|
||||||
DECLARE_ASN1_ALLOC_FUNCTIONS(name); \
|
|
||||||
DECLARE_ASN1_ENCODE_FUNCTIONS_const(name, name)
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
|
|
||||||
type *name##_new(void); \
|
|
||||||
void name##_free(type *a)
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_PRINT_FUNCTION(stname) \
|
|
||||||
DECLARE_ASN1_PRINT_FUNCTION_fname(stname, stname)
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_PRINT_FUNCTION_fname(stname, fname) \
|
|
||||||
int fname##_print_ctx(BIO *out, const stname *x, int indent, \
|
|
||||||
const ASN1_PCTX * pctx)
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* WARNING WARNING WARNING
|
|
||||||
*
|
|
||||||
* uncrustify still introduces whitespace in here at some spots, but then
|
|
||||||
* one might ask how crazy we want to go regarding ## encumbered parsing?
|
|
||||||
* There's always the copout of INDENT-OFF markers for files like these,
|
|
||||||
* once you've got them 95% right through uncrustify and that extra 5%
|
|
||||||
* by hand ;-)
|
|
||||||
*/
|
|
||||||
#define TYPEDEF_D2I_OF(type) typedef type *d2i_of_##type (type **, const unsigned char **, size_t)
|
|
||||||
#define TYPEDEF_I2D_OF(type) typedef int i2d_of_##type (type *, unsigned char **)
|
|
||||||
#define TYPEDEF_I2D_OF_CONST(type) typedef int i2d_of_const_##type (const type *, unsigned char **) /* [i_a] */
|
|
||||||
#define TYPEDEF_D2I2D_OF(type) TYPEDEF_D2I_OF(type); TYPEDEF_I2D_OF(type); TYPEDEF_I2D_OF_CONST(type) /* [i_a] */
|
|
||||||
|
|
||||||
|
|
||||||
/* Macro to include ASN1_ITEM pointer from base type */
|
|
||||||
#define ASN1_ITEM_ref(iptr) (&(iptr##_it))
|
|
||||||
|
|
||||||
#define ASN1_ITEM_rptr(ref) (&(ref##_it))
|
|
||||||
|
|
||||||
#define DECLARE_ASN1_ITEM(name) \
|
|
||||||
extern const ASN1_ITEM name##_it;
|
|
||||||
|
|
||||||
|
|
||||||
#define ASN1_STRFLGS_RFC2253 \
|
|
||||||
(ASN1_STRFLGS_ESC_2253 | \
|
|
||||||
ASN1_STRFLGS_ESC_CTRL | \
|
|
||||||
ASN1_STRFLGS_ESC_MSB | \
|
|
||||||
ASN1_STRFLGS_UTF8_CONVERT | \
|
|
||||||
ASN1_STRFLGS_DUMP_UNKNOWN | \
|
|
||||||
ASN1_STRFLGS_DUMP_DER)
|
|
||||||
|
|
||||||
DECLARE_STACK_OF(ASN1_INTEGER);
|
|
||||||
DECLARE_ASN1_SET_OF(ASN1_INTEGER);
|
|
||||||
|
|
||||||
DECLARE_STACK_OF(ASN1_GENERALSTRING);
|
|
||||||
|
|
||||||
typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
|
|
||||||
|
|
||||||
DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY);
|
|
||||||
DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SET_ANY);
|
|
||||||
|
|
||||||
|
|
||||||
#define B_ASN1_DIRECTORYSTRING \
|
|
||||||
B_ASN1_PRINTABLESTRING | \
|
|
||||||
B_ASN1_TELETEXSTRING | \
|
|
||||||
B_ASN1_BMPSTRING | \
|
|
||||||
B_ASN1_UNIVERSALSTRING | \
|
|
||||||
B_ASN1_UTF8STRING
|
|
||||||
|
|
||||||
#define B_ASN1_DISPLAYTEXT \
|
|
||||||
B_ASN1_IA5STRING | \
|
|
||||||
B_ASN1_VISIBLESTRING | \
|
|
||||||
B_ASN1_BMPSTRING | \
|
|
||||||
B_ASN1_UTF8STRING
|
|
||||||
|
|
||||||
#endif // ifndef HEADER_ASN1_H
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
|||||||
whatever *find_node_for_address(whatever2 *foo,
|
|
||||||
thingy *bar,
|
|
||||||
whatever3 *(func_ptr)(
|
|
||||||
whatever4 *foo2,
|
|
||||||
thingy2 *bar2));
|
|
||||||
//3456789=123456789=123456789=123456789=123456789=12
|
|
@ -1 +0,0 @@
|
|||||||
void f(){}
|
|
@ -1,13 +0,0 @@
|
|||||||
class A
|
|
||||||
{
|
|
||||||
// crash (two parameter, 2nd string parameter has space)
|
|
||||||
void check(const QObject *object, const QStringList &strList = QStringList(QString(QLatin1String("one two"))));
|
|
||||||
// no crash (two parameter, 2nd string parameter has no space)
|
|
||||||
void check(const QObject *object, const QStringList &strList = QStringList(QString(QLatin1String("one"))));
|
|
||||||
// no crash (removed QLatin1String)
|
|
||||||
void check(const QObject *object, const QStringList &strList = QStringList(QString(("one two"))));
|
|
||||||
// no crash (removed QString(QLatin1String))
|
|
||||||
void check(const QObject *object, const QStringList &strList = QStringList());
|
|
||||||
// no crash (removed 1st parameter only)
|
|
||||||
void check(const QStringList &strList = QStringList(QString(QLatin1String("one two"))));
|
|
||||||
};
|
|
@ -1,6 +0,0 @@
|
|||||||
template <typename T>
|
|
||||||
struct foo {};
|
|
||||||
|
|
||||||
Q_DECLARE_METATYPE( foo<int> )
|
|
||||||
|
|
||||||
int bar( foo<int> );
|
|
@ -1,6 +0,0 @@
|
|||||||
template <typename T>
|
|
||||||
struct foo {};
|
|
||||||
|
|
||||||
Q_DECLARE_METATYPE(foo<int>)
|
|
||||||
|
|
||||||
int bar(foo<int>);
|
|
@ -1,6 +0,0 @@
|
|||||||
template <typename T>
|
|
||||||
struct foo {};
|
|
||||||
|
|
||||||
Q_DECLARE_METATYPE(foo<int> )
|
|
||||||
|
|
||||||
int bar(foo<int> );
|
|
@ -1,6 +0,0 @@
|
|||||||
template <typename T>
|
|
||||||
struct foo {};
|
|
||||||
|
|
||||||
Q_DECLARE_METATYPE(foo<int> )
|
|
||||||
|
|
||||||
int bar(foo<int> );
|
|
@ -1,8 +0,0 @@
|
|||||||
class Foo
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
Foo( int bar = 1 );
|
|
||||||
Foo( const Foo & ) = delete;
|
|
||||||
Foo &operator= ( const Foo & ) = delete;
|
|
||||||
~Foo();
|
|
||||||
};
|
|
@ -1,2 +0,0 @@
|
|||||||
a(, 1);
|
|
||||||
typedef SLIST_HEAD(, foo) foo_list_t;
|
|
@ -1,9 +0,0 @@
|
|||||||
void foo()
|
|
||||||
{
|
|
||||||
for( unsigned p = 0; p < np;
|
|
||||||
++p )
|
|
||||||
{
|
|
||||||
|
|
||||||
double* o = bar[p];
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
int & aa(int & x,int & b); // Sp Before Byref Func, Sp After Byref Func, Sp Before Byref, Sp After Byref
|
|
||||||
int aa(int & x,int &) // Sp Before Byref, Sp Before Unnamed Byref, Sp After Byref
|
|
||||||
{
|
|
||||||
b = aa(x,b);
|
|
||||||
c = aa(& y,& d); // Sp Addr
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
// test for bug # 633
|
|
||||||
typedef void (*func)();
|
|
||||||
typedef void (__stdcall *func)();
|
|
@ -1,6 +0,0 @@
|
|||||||
namespace hw { namespace stm32 {
|
|
||||||
|
|
||||||
class RTC {
|
|
||||||
};
|
|
||||||
|
|
||||||
}} // namespace hw::stm32
|
|
@ -1 +0,0 @@
|
|||||||
STDMETHOD(GetValues)(BSTR bsName, REFDATA** pData);
|
|
@ -1 +0,0 @@
|
|||||||
friend std::ostream& operator<<(std::ostream& os, const ScriptingObjectPtr& o);
|
|
@ -1,75 +0,0 @@
|
|||||||
methodCall([] {
|
|
||||||
Log();
|
|
||||||
});
|
|
||||||
|
|
||||||
funcCall(
|
|
||||||
match ( [ & ]( const ContentProps &props) {
|
|
||||||
return PairingCmpnt()
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
match( [ & ]( const ContentProps &props) {
|
|
||||||
return PairingCmpnt()
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
outerMethodCall(
|
|
||||||
methodCall(^{
|
|
||||||
// action
|
|
||||||
}, x)
|
|
||||||
);
|
|
||||||
|
|
||||||
outerMethodCall(
|
|
||||||
x,
|
|
||||||
methodCall(^{
|
|
||||||
// action
|
|
||||||
}, y)
|
|
||||||
);
|
|
||||||
|
|
||||||
options({
|
|
||||||
.cornerRadius = CGFLOAT_MAX,
|
|
||||||
});
|
|
||||||
|
|
||||||
mapToPtr([&](const LeftAddOn::Props &addOnProps) {
|
|
||||||
FSTheme *const theme = AK::getTheme();
|
|
||||||
});
|
|
||||||
|
|
||||||
mapToPtr(x, [&](const Props &addOnProps) {
|
|
||||||
FSTheme *const theme = AK::getTheme();
|
|
||||||
});
|
|
||||||
|
|
||||||
mapToPtr([&](const Props &addOnProps) {
|
|
||||||
FSTheme *const theme = AK::getTheme();
|
|
||||||
});
|
|
||||||
|
|
||||||
methodCall(
|
|
||||||
arg1,
|
|
||||||
arg2,
|
|
||||||
arg3
|
|
||||||
);
|
|
||||||
|
|
||||||
methodCall(arg1, arg2, arg3);
|
|
||||||
|
|
||||||
methodCall(
|
|
||||||
arg1, []{
|
|
||||||
variant.action.send(Cmpnt);
|
|
||||||
}, arg3
|
|
||||||
);
|
|
||||||
|
|
||||||
methodCall(
|
|
||||||
arg1, {
|
|
||||||
.x = 10,
|
|
||||||
},
|
|
||||||
arg3
|
|
||||||
);
|
|
||||||
|
|
||||||
methodCall({
|
|
||||||
.x = 10,
|
|
||||||
},
|
|
||||||
arg3);
|
|
||||||
|
|
||||||
methodCall(
|
|
||||||
arg1, {
|
|
||||||
.x = 10,
|
|
||||||
}
|
|
||||||
);
|
|
@ -1,6 +0,0 @@
|
|||||||
void Foo1(BarType& x, void BarFunc());
|
|
||||||
|
|
||||||
void Bar()
|
|
||||||
{
|
|
||||||
void BarFunc2(BarType& x);
|
|
||||||
}
|
|
@ -1,22 +0,0 @@
|
|||||||
int main()
|
|
||||||
{
|
|
||||||
int a0[][] = {{ 1 }};
|
|
||||||
unknown_type b0 = {{ 2 }};
|
|
||||||
auto c0 = unknown_type {{ 3 }};
|
|
||||||
auto d0 = func( {{ 3 }} );
|
|
||||||
auto e0 = func( unknown_type {{ 3 }} );
|
|
||||||
|
|
||||||
int a1[][] = { {1} };
|
|
||||||
unknown_type b1 = { {2} };
|
|
||||||
auto c1 = unknown_type { {3} };
|
|
||||||
auto d1 = func({ {3} });
|
|
||||||
auto e1 = func(unknown_type { {3} });
|
|
||||||
|
|
||||||
int a2[][] = {{1}};
|
|
||||||
unknown_type b2 = {{2}};
|
|
||||||
auto c2 = unknown_type {{3}};
|
|
||||||
auto d2 = func({{3}});
|
|
||||||
auto e2 = func(unknown_type {{3}});
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
@ -1,22 +0,0 @@
|
|||||||
int main()
|
|
||||||
{
|
|
||||||
int a0[][] = {{ 1 }};
|
|
||||||
unknown_type b0 = {{ 2 }};
|
|
||||||
auto c0 = unknown_type{{ 3 }};
|
|
||||||
auto d0 = func( {{ 3 }} );
|
|
||||||
auto e0 = func( unknown_type{{ 3 }} );
|
|
||||||
|
|
||||||
int a1[][] = { {1} };
|
|
||||||
unknown_type b1 = { {2} };
|
|
||||||
auto c1 = unknown_type{ {3} };
|
|
||||||
auto d1 = func({ {3} });
|
|
||||||
auto e1 = func(unknown_type{ {3} });
|
|
||||||
|
|
||||||
int a2[][] = {{1}};
|
|
||||||
unknown_type b2 = {{2}};
|
|
||||||
auto c2 = unknown_type{{3}};
|
|
||||||
auto d2 = func({{3}});
|
|
||||||
auto e2 = func(unknown_type{{3}});
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
@ -1,22 +0,0 @@
|
|||||||
int main()
|
|
||||||
{
|
|
||||||
int a0[][] = { { 1 }};
|
|
||||||
unknown_type b0 = { { 2 }};
|
|
||||||
auto c0 = unknown_type { { 3 }};
|
|
||||||
auto d0 = func( { { 3 }} );
|
|
||||||
auto e0 = func( unknown_type { { 3 }} );
|
|
||||||
|
|
||||||
int a1[][] = { { 1} };
|
|
||||||
unknown_type b1 = { { 2} };
|
|
||||||
auto c1 = unknown_type{ { 3} };
|
|
||||||
auto d1 = func({ { 3} });
|
|
||||||
auto e1 = func(unknown_type{ { 3} });
|
|
||||||
|
|
||||||
int a2[][] = { { 1}};
|
|
||||||
unknown_type b2 = { { 2}};
|
|
||||||
auto c2 = unknown_type{ { 3}};
|
|
||||||
auto d2 = func({ { 3}});
|
|
||||||
auto e2 = func(unknown_type{ { 3}});
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
@ -1,22 +0,0 @@
|
|||||||
int main()
|
|
||||||
{
|
|
||||||
int a0[][] = {{1 }};
|
|
||||||
unknown_type b0 = {{2 }};
|
|
||||||
auto c0 = unknown_type {{3 }};
|
|
||||||
auto d0 = func( {{3 }} );
|
|
||||||
auto e0 = func( unknown_type {{3 }} );
|
|
||||||
|
|
||||||
int a1[][] = {{1} };
|
|
||||||
unknown_type b1 = {{2} };
|
|
||||||
auto c1 = unknown_type{{3} };
|
|
||||||
auto d1 = func({{3} });
|
|
||||||
auto e1 = func(unknown_type{{3} });
|
|
||||||
|
|
||||||
int a2[][] = {{1}};
|
|
||||||
unknown_type b2 = {{2}};
|
|
||||||
auto c2 = unknown_type{{3}};
|
|
||||||
auto d2 = func({{3}});
|
|
||||||
auto e2 = func(unknown_type{{3}});
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
#include <AClass.h>
|
|
||||||
#include <SomeClass.h>
|
|
||||||
#include <TheClass.h>
|
|
||||||
#include <iostream>
|
|
||||||
#include <vector>
|
|
@ -1,10 +0,0 @@
|
|||||||
class C
|
|
||||||
{
|
|
||||||
float V
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return _v;
|
|
||||||
}
|
|
||||||
set { _v = value; } }
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
public unsafe struct QueryKeyNameCommand : IInputDeviceCommandInfo
|
|
||||||
{
|
|
||||||
public string ReadKeyName()
|
|
||||||
{
|
|
||||||
fixed(QueryKeyNameCommand* thisPtr = &this)
|
|
||||||
{
|
|
||||||
return StringHelpers.ReadStringFromBuffer(new IntPtr(thisPtr->nameBuffer), kMaxNameLength);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,32 +0,0 @@
|
|||||||
// should be ddd, eee, fff
|
|
||||||
#import "ddd"
|
|
||||||
#import "eee"
|
|
||||||
#import "fff"
|
|
||||||
|
|
||||||
#import "aaa"
|
|
||||||
#import "ccc"
|
|
||||||
// should be just bbb
|
|
||||||
#import "bbb"
|
|
||||||
|
|
||||||
#import "sort_import+internal.h"
|
|
||||||
#import "sort_import+public.h"
|
|
||||||
#import "sort_import.h"
|
|
||||||
|
|
||||||
#import <UIKit/UIKit.h>
|
|
||||||
#import "Action+Internal.h"
|
|
||||||
#import "Action+Public.h"
|
|
||||||
#import "Action.h"
|
|
||||||
|
|
||||||
#include "Test+Internal.h"
|
|
||||||
#include "Test.h"
|
|
||||||
|
|
||||||
#import "Something.h"
|
|
||||||
#import "Something_Internal.h"
|
|
||||||
#import "Something_Public.h"
|
|
||||||
|
|
||||||
#import <KKK>
|
|
||||||
#import "AAA"
|
|
||||||
#import "BBB.h"
|
|
||||||
#include "CCC.h"
|
|
||||||
#include "DDD"
|
|
||||||
#import "EEE.h"
|
|
@ -1 +0,0 @@
|
|||||||
CGFloat fontSize = floorf([font pointSize] * [self tileContentScale] + 0.5);
|
|
@ -1,42 +0,0 @@
|
|||||||
#import "FOOAddressBookManager.h"
|
|
||||||
#import <React/RCTBridge.h>
|
|
||||||
#import <React/RCTEventDispatcher.h>
|
|
||||||
|
|
||||||
/*
|
|
||||||
* #define RCT_EXPORT_METHOD(method) \
|
|
||||||
* - (void)__rct_export__##method { \
|
|
||||||
* __attribute__((used, section("__DATA,RCTExport"))) \
|
|
||||||
* static const char *__rct_export_entry__[] = { __func__, #method }; \
|
|
||||||
* } \
|
|
||||||
* - (void)method \
|
|
||||||
*/
|
|
||||||
|
|
||||||
@interface FOOAddressBook : NSObject
|
|
||||||
@end
|
|
||||||
|
|
||||||
@implementation FOOAddressBookManager
|
|
||||||
|
|
||||||
RCT_EXPORT_MODULE(FOOAddressBook)
|
|
||||||
|
|
||||||
RCT_EXPORT_METHOD(getAddresses:(NSDictionary *) data callback:(RCTResponseSenderBlock) callback)
|
|
||||||
{
|
|
||||||
NSMutableArray *addresses = [[FOOAddressBook sharedInstance] getAddresses:data];
|
|
||||||
if (addresses != nil)
|
|
||||||
callback(@[[NSNull null], addresses]);
|
|
||||||
else
|
|
||||||
callback(@[@"getAddresses returned nil."]);
|
|
||||||
}
|
|
||||||
|
|
||||||
RCT_EXPORT_METHOD(getStatus:(RCTResponseSenderBlock) callback)
|
|
||||||
{
|
|
||||||
callback(@[[NSNull null], [[FOOAddressBook sharedInstance] getStatus]]);
|
|
||||||
}
|
|
||||||
|
|
||||||
RCT_EXPORT_METHOD(requestAccess:(RCTResponseSenderBlock) callback)
|
|
||||||
{
|
|
||||||
[[FOOAddressBook sharedInstance] requestAccess:^(NSString *status) {
|
|
||||||
callback(@[[NSNull null], status]);
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
@end
|
|
@ -1,45 +0,0 @@
|
|||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
/*----------------------------------------------------------------*/
|
|
||||||
EXEC SQL INCLUDE SQLCA;
|
|
||||||
short sqlcode;
|
|
||||||
|
|
||||||
EXEC SQL BEGIN DECLARE SECTION;
|
|
||||||
int host_a;
|
|
||||||
double host_b;
|
|
||||||
char host_c;
|
|
||||||
EXEC SQL END DECLARE SECTION;
|
|
||||||
|
|
||||||
EXEC SQL DECLARE csr1 CURSOR FOR
|
|
||||||
SELECT a, b, c
|
|
||||||
FROM table1
|
|
||||||
WHERE x = :hostvar1;
|
|
||||||
|
|
||||||
/*----------------------------------------------------------------*/
|
|
||||||
void main(void)
|
|
||||||
{
|
|
||||||
hostvar1 = 42;
|
|
||||||
|
|
||||||
EXEC SQL OPEN csr1;
|
|
||||||
if (sqlcode < 0)
|
|
||||||
{
|
|
||||||
exit(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
while (rc >= 0 && rc != 100)
|
|
||||||
{
|
|
||||||
EXEC SQL FETCH csr1 INTO :host_a, :host_b, :host_c;
|
|
||||||
printf("Fetch %d, %lf, %s\n", host_a, host_b, host_c);
|
|
||||||
}
|
|
||||||
|
|
||||||
EXEC SQL CLOSE csr1;
|
|
||||||
}
|
|
||||||
|
|
||||||
void foo(void)
|
|
||||||
{
|
|
||||||
strcpy(demoquery1, "some SQL statement");
|
|
||||||
EXEC SQL prepare demo3id from :demoquery1;
|
|
||||||
/* a comment */
|
|
||||||
EXEC SQL declare demo3cursor cursor for demo3id;
|
|
||||||
}
|
|
@ -1,76 +0,0 @@
|
|||||||
/*******************************************************
|
|
||||||
**
|
|
||||||
** A sample program that demonstrates the use of Static embedded SQL.
|
|
||||||
** Before compiling this program, be sure you have created a table
|
|
||||||
** called video and inserted some tuples in it.
|
|
||||||
**
|
|
||||||
********************************************************/
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
/* sqlca: is the sql communications area. All error codes
|
|
||||||
* are returned from db2 in that structure which is filled
|
|
||||||
* each time an interaction with db2 takes place.
|
|
||||||
*/
|
|
||||||
|
|
||||||
EXEC SQL INCLUDE SQLCA; /* SQL communication area structure */
|
|
||||||
|
|
||||||
EXEC SQL BEGIN DECLARE SECTION; /* declare host variables */
|
|
||||||
char db_name[8]; /* database name */
|
|
||||||
char video_title[30]; /* title of the video */
|
|
||||||
short video_id; /* serial number */
|
|
||||||
char director[20]; /* director name */
|
|
||||||
EXEC SQL END DECLARE SECTION;
|
|
||||||
|
|
||||||
/* These lines are redundant here because the default
|
|
||||||
* action is to continue. They just show the kind of
|
|
||||||
* errors that could arise and one way to control them.
|
|
||||||
*/
|
|
||||||
|
|
||||||
EXEC SQL WHENEVER SQLWARNING CONTINUE; /* sqlca.sqlcode > 0 */
|
|
||||||
EXEC SQL WHENEVER SQLERROR CONTINUE; /* sqlca.sqlcode < 0 */
|
|
||||||
EXEC SQL WHENEVER NOT FOUND CONTINUE; /* sqlca.sqlcode = 100 */
|
|
||||||
/* sqlca.sqlcode = 0 (no error) */
|
|
||||||
|
|
||||||
void main()
|
|
||||||
{
|
|
||||||
strcpy(db_name, "csc343h");
|
|
||||||
|
|
||||||
/* C variables are preceded by a colon when they are passed to DB2 */
|
|
||||||
|
|
||||||
EXEC SQL CONNECT TO :db_name;
|
|
||||||
|
|
||||||
if (sqlca.sqlcode != 0)
|
|
||||||
{
|
|
||||||
printf("Connect failed!: reason %ld\n", sqlca.sqlcode);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* cursor delcaration. Have to declare a cursor each time you
|
|
||||||
* want tuples back from db2
|
|
||||||
*/
|
|
||||||
|
|
||||||
EXEC SQL DECLARE c1 CURSOR FOR
|
|
||||||
SELECT video_title
|
|
||||||
FROM video;
|
|
||||||
|
|
||||||
/* you have to open the cursor in order to get tuples back */
|
|
||||||
|
|
||||||
EXEC SQL OPEN c1;
|
|
||||||
|
|
||||||
do
|
|
||||||
{
|
|
||||||
/* fetch tuples from the cursor. This will execute the statement
|
|
||||||
* the cursor implements and will return the results */
|
|
||||||
|
|
||||||
EXEC SQL FETCH c1 into :video_title;
|
|
||||||
if (SQLCODE != 0)
|
|
||||||
{
|
|
||||||
break; /* SQLCODE refers to sqlca.sqlcode */
|
|
||||||
}
|
|
||||||
/* host variables should have ':' prefix when they are used in DB2 commands */
|
|
||||||
|
|
||||||
printf("%s\n", video_title);
|
|
||||||
} while (1);
|
|
||||||
EXEC SQL CLOSE c1;
|
|
||||||
EXEC SQL CONNECT RESET;
|
|
||||||
}
|
|
@ -1,8 +0,0 @@
|
|||||||
void foo()
|
|
||||||
{
|
|
||||||
for( unsigned p = 0; p < np;
|
|
||||||
++p )
|
|
||||||
{
|
|
||||||
double* o = bar[p];
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
\
|
|
||||||
#define CTOR(i, _) : \
|
|
||||||
T(X()), \
|
|
||||||
y() \
|
|
||||||
{ }
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
|||||||
int main()
|
|
||||||
{
|
|
||||||
int a0[][] = {{ 1 }};
|
|
||||||
unknown_type b0 = {{ 2 }};
|
|
||||||
auto c0 = unknown_type {{ 3 }};
|
|
||||||
auto d0 = func( {{ 3 }} );
|
|
||||||
auto e0 = func( unknown_type {{ 3 }} );
|
|
||||||
|
|
||||||
int a1[][] = { {1} };
|
|
||||||
unknown_type b1 = { {2} };
|
|
||||||
auto c1 = unknown_type{ {3} };
|
|
||||||
auto d1 = func({ {3} });
|
|
||||||
auto e1 = func(unknown_type{ {3} });
|
|
||||||
|
|
||||||
int a2[][] = {{1}};
|
|
||||||
unknown_type b2 = {{2}};
|
|
||||||
auto c2 = unknown_type{{3}};
|
|
||||||
auto d2 = func({{3}});
|
|
||||||
auto e2 = func(unknown_type{{3}});
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
int&aa(int&x,int&b); // Sp Before Byref Func, Sp After Byref Func, Sp Before Byref, Sp After Byref
|
|
||||||
int aa(int&x,int&) // Sp Before Byref, Sp Before Unnamed Byref, Sp After Byref
|
|
||||||
{
|
|
||||||
b = aa(x,b);
|
|
||||||
c = aa(&y,&d); // Sp Addr
|
|
||||||
}
|
|
@ -1,58 +0,0 @@
|
|||||||
methodCall([] {
|
|
||||||
Log();
|
|
||||||
});
|
|
||||||
|
|
||||||
funcCall(match ( [ & ]( const ContentProps &props) {
|
|
||||||
return PairingCmpnt()
|
|
||||||
}));
|
|
||||||
|
|
||||||
match( [ & ]( const ContentProps &props) {
|
|
||||||
return PairingCmpnt()
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
outerMethodCall(methodCall(^{
|
|
||||||
// action
|
|
||||||
}, x)
|
|
||||||
);
|
|
||||||
|
|
||||||
outerMethodCall(x, methodCall(^{
|
|
||||||
// action
|
|
||||||
}, y));
|
|
||||||
|
|
||||||
options({
|
|
||||||
.cornerRadius = CGFLOAT_MAX,
|
|
||||||
});
|
|
||||||
|
|
||||||
mapToPtr([&](const LeftAddOn::Props &addOnProps) {
|
|
||||||
FSTheme *const theme = AK::getTheme();
|
|
||||||
});
|
|
||||||
|
|
||||||
mapToPtr(x, [&](const Props &addOnProps) {
|
|
||||||
FSTheme *const theme = AK::getTheme();
|
|
||||||
});
|
|
||||||
|
|
||||||
mapToPtr([&](const Props &addOnProps) {
|
|
||||||
FSTheme *const theme = AK::getTheme();
|
|
||||||
});
|
|
||||||
|
|
||||||
methodCall(arg1, arg2,
|
|
||||||
arg3);
|
|
||||||
|
|
||||||
methodCall(arg1, arg2, arg3);
|
|
||||||
|
|
||||||
methodCall(arg1, []{
|
|
||||||
variant.action.send(Cmpnt);
|
|
||||||
}, arg3);
|
|
||||||
|
|
||||||
methodCall(arg1, {
|
|
||||||
.x = 10,
|
|
||||||
}, arg3);
|
|
||||||
|
|
||||||
methodCall({
|
|
||||||
.x = 10,
|
|
||||||
}, arg3);
|
|
||||||
|
|
||||||
methodCall(arg1, {
|
|
||||||
.x = 10,
|
|
||||||
});
|
|
@ -1,6 +0,0 @@
|
|||||||
template <typename T>
|
|
||||||
struct foo {};
|
|
||||||
|
|
||||||
Q_DECLARE_METATYPE(foo<int> )
|
|
||||||
|
|
||||||
int bar(foo<int> );
|
|
@ -1,43 +0,0 @@
|
|||||||
#
|
|
||||||
# Test cases specifically for the Java language.
|
|
||||||
#
|
|
||||||
# Range: 80000 - 89999
|
|
||||||
# test.name config.file input.file
|
|
||||||
|
|
||||||
80000 ben_099.cfg java/assert.java
|
|
||||||
80010 annotation.cfg java/annotation1.java
|
|
||||||
80011 empty.cfg java/annotation2.java
|
|
||||||
80012 nl_after_annotation-f.cfg java/annotation2.java
|
|
||||||
80013 nl_between_annotation-f.cfg java/annotation2.java
|
|
||||||
80014 annotation.cfg java/annotation2.java
|
|
||||||
80020 java_foreach.cfg java/foreach.java
|
|
||||||
80030 indent_var_def.cfg java/variable_aligns.java
|
|
||||||
80040 empty.cfg java/try.java
|
|
||||||
80050 jdbi-r.cfg java/double_brace.java
|
|
||||||
80051 jdbi-f.cfg java/double_brace.java
|
|
||||||
80060 java_synchronized_1.cfg java/synchronized.java
|
|
||||||
80061 java_synchronized_2.cfg java/synchronized.java
|
|
||||||
80062 sp_this_paren.cfg java/sp_this_paren.java
|
|
||||||
80063 empty.cfg java/i1121.java
|
|
||||||
80064 mod_add_long_class_closebrace_comment-1.cfg java/long_cl_cmt.java
|
|
||||||
80065 empty.cfg java/Java8DoubleColon.java
|
|
||||||
80066 sp_after_for_colon.cfg java/sp_after_for_colon.java
|
|
||||||
80067 doxy-javadoc-alignment.cfg java/doxy-javadoc-alignment.java
|
|
||||||
|
|
||||||
80100 align_same_func_call_params-t.cfg java/sf567.java
|
|
||||||
|
|
||||||
80200 sp_before_byref-r.cfg java/sp_before_byref.java
|
|
||||||
80201 template_angles.cfg java/generics.java
|
|
||||||
80202 aet.cfg java/generics_wildcard.java
|
|
||||||
80203 aet.cfg java/generics_return_type.java
|
|
||||||
80204 aet.cfg java/cast.java
|
|
||||||
80205 aet.cfg java/sp_after_angle.java
|
|
||||||
80206 aet.cfg java/annotation3.java
|
|
||||||
|
|
||||||
80300 Issue_670.cfg java/Issue_670.java
|
|
||||||
80301 issue_672.cfg java/issue_672.java
|
|
||||||
80302 Issue_1845.cfg java/Issue_1845.java
|
|
||||||
80303 Issue_1122.cfg java/Issue_1122.java
|
|
||||||
80304 Issue_1124-f.cfg java/Issue_1124.java
|
|
||||||
80305 Issue_1124-r.cfg java/Issue_1124.java
|
|
||||||
80306 leading-tabs-for-java-lambda.cfg java/leading-tabs-for-java-lambda.java
|
|
@ -1,180 +0,0 @@
|
|||||||
# Test cases specifically for the Objective C language.
|
|
||||||
#
|
|
||||||
# Range: 50000 - 59999
|
|
||||||
# test.name config.file input.file
|
|
||||||
|
|
||||||
# The .h file needs a language override
|
|
||||||
50001 oc1.cfg oc/Fraction.h OC
|
|
||||||
50002 oc2.cfg oc/Fraction.m
|
|
||||||
50003 oc2.cfg oc/main.m
|
|
||||||
50004 oc4.cfg oc/string.m
|
|
||||||
50005 oc5.cfg oc/Declarations.h OC
|
|
||||||
50006 oc6.cfg oc/exceptions.m
|
|
||||||
50007 oc7.cfg oc/misc.m
|
|
||||||
50008 oc8.cfg oc/protocol.m
|
|
||||||
50009 oc9.cfg oc/literals.mm
|
|
||||||
|
|
||||||
50010 sp_after_oc_return_type_add.cfg oc/return_type.m
|
|
||||||
50011 sp_after_oc_return_type_force.cfg oc/return_type.m
|
|
||||||
50012 sp_after_oc_return_type_remove.cfg oc/return_type.m
|
|
||||||
|
|
||||||
50014 sp_oc_classname_paren-r.cfg oc/sp_oc_classname_paren-r.m
|
|
||||||
50015 oc10.cfg oc/receiver.m
|
|
||||||
|
|
||||||
50016 oc11.cfg oc/ternary.m
|
|
||||||
50017 ternary_short.cfg oc/ternary.m
|
|
||||||
|
|
||||||
50018 indent_inside_ternary_operator.cfg oc/indent-inside-ternary-operator.m
|
|
||||||
|
|
||||||
50020 sp_after_oc_at_sel_add.cfg oc/selector.m
|
|
||||||
50021 sp_after_oc_at_sel_force.cfg oc/selector.m
|
|
||||||
50022 sp_after_oc_at_sel_remove.cfg oc/selector.m
|
|
||||||
|
|
||||||
50025 oc6.cfg oc/exceptions.m
|
|
||||||
50026 sp_after_throw_remove.cfg oc/exceptions.m
|
|
||||||
|
|
||||||
50030 sort_imports.cfg oc/sort_import.m
|
|
||||||
50031 mod_sort_incl_import_prioritize_filename.cfg oc/sort_import.m
|
|
||||||
50032 mod_sort_incl_import_ignore_extension.cfg oc/sort_import.m
|
|
||||||
50033 mod_sort_incl_import_prioritize_extensionless.cfg oc/sort_import.m
|
|
||||||
50034 mod_sort_incl_import_prioritize_angle_over_quotes.cfg oc/sort_import.m
|
|
||||||
50035 mod_sort_incl_import_grouping_enabled.cfg oc/sort_import_group.m
|
|
||||||
|
|
||||||
50040 objc_complex_method.cfg oc/complex_method.m
|
|
||||||
|
|
||||||
50050 objc_complex_method.cfg oc/real_world_file.m
|
|
||||||
|
|
||||||
50060 align_oc_msg_colon_span-1.cfg oc/oc-split.m
|
|
||||||
50061 bug_167.cfg oc/bug_167.m
|
|
||||||
|
|
||||||
50062 aet.cfg oc/issue_2631.m
|
|
||||||
|
|
||||||
50070 blocks.cfg oc/blocks.m
|
|
||||||
50071 sp_before_oc_block_caret_force.cfg oc/blocks.m
|
|
||||||
50072 sp_before_oc_block_caret_remove.cfg oc/blocks.m
|
|
||||||
50073 sp_after_oc_block_caret_add.cfg oc/blocks.m
|
|
||||||
50074 sp_after_oc_block_caret_force.cfg oc/blocks.m
|
|
||||||
50075 blocks.cfg oc/blocks.m
|
|
||||||
50076 sp_before_oc_block_caret_remove.cfg oc/blocks.m
|
|
||||||
|
|
||||||
50077 blocks.cfg oc/more_blocks.m
|
|
||||||
50078 sp_before_oc_block_caret_force.cfg oc/more_blocks.m
|
|
||||||
50079 sp_before_oc_block_caret_remove.cfg oc/more_blocks.m
|
|
||||||
50080 sp_after_oc_block_caret_add.cfg oc/more_blocks.m
|
|
||||||
50081 sp_after_oc_block_caret_force.cfg oc/more_blocks.m
|
|
||||||
50082 blocks.cfg oc/more_blocks.m
|
|
||||||
50083 sp_before_oc_block_caret_remove.cfg oc/more_blocks.m
|
|
||||||
50084 nl_brace_square.cfg oc/more_blocks.m
|
|
||||||
50085 nl_after_func_body-3.cfg oc/block_in_method.m
|
|
||||||
50086 issue_2643.cfg oc/block_in_method.m
|
|
||||||
50087 indent_oc_inside_msg_sel.cfg oc/indent_oc_inside_msg_sel.m
|
|
||||||
|
|
||||||
50090 oc12.cfg oc/kw.m
|
|
||||||
50091 issue_2656.cfg oc/block_in_method.m
|
|
||||||
|
|
||||||
50095 oc13.cfg oc/box.m
|
|
||||||
50100 bug_340.cfg oc/bug_340.m
|
|
||||||
|
|
||||||
50110 oc14.cfg oc/msg_align.m
|
|
||||||
50111 del_semicolon.cfg oc/ns_enum.m
|
|
||||||
50112 empty.cfg oc/ns_enum.m
|
|
||||||
50113 sp_enum_paren-r.cfg oc/ns_enum.m
|
|
||||||
|
|
||||||
50120 gh137.cfg oc/gh137.m
|
|
||||||
|
|
||||||
50200 sp_block_as_argument.cfg oc/more_blocks_2.m
|
|
||||||
50201 sp_block_as_argument.cfg oc/blocks_align.m
|
|
||||||
50202 sp_block_as_argument2.cfg oc/blocks_align.m
|
|
||||||
50203 sp_block_as_argument3.cfg oc/blocks_align.m
|
|
||||||
50204 sp_block_as_argument4.cfg oc/blocks_align.m
|
|
||||||
50205 sp_block_as_argument5.cfg oc/msg_align.m
|
|
||||||
50206 aet.cfg oc/issue_2727.m
|
|
||||||
50207 issue_3031.cfg oc/issue_3031.mm
|
|
||||||
|
|
||||||
50300 sp_after_send_oc_colon-f.cfg oc/msg.m
|
|
||||||
|
|
||||||
50400 oc16.cfg oc/for.m
|
|
||||||
|
|
||||||
50410 oc_cond_colon.cfg oc/oc_cond_colon.m OC+
|
|
||||||
50411 attribute_specifier_seqs.cfg oc/attribute_specifier_seqs.mm OC+
|
|
||||||
|
|
||||||
50500 oc17.cfg oc/code_placeholder.m
|
|
||||||
|
|
||||||
50510 gh293.a.cfg oc/gh293.m
|
|
||||||
50511 gh293.b.cfg oc/gh293.m
|
|
||||||
50512 sp_oc_catch.cfg oc/sp_oc_catch.m
|
|
||||||
50513 sp_oc_boxed.cfg oc/sp_oc_boxed.m
|
|
||||||
50514 indent_boxed.cfg oc/indent_boxed.m
|
|
||||||
50515 sp_oc_synchronized.cfg oc/sp_oc_synchronized.m
|
|
||||||
|
|
||||||
50600 nl_oc_block_brace-f.cfg oc/bug_i_477.m
|
|
||||||
50601 empty.cfg oc/bug_i_408.m
|
|
||||||
50602 bug_i_125-412.cfg oc/bug_i_125-412.m
|
|
||||||
50603 oc18.cfg oc/gh511.m
|
|
||||||
50604 objc_bug_497.cfg oc/bug_497.m
|
|
||||||
50605 empty.cfg oc/bug_404.m
|
|
||||||
50606 oc19.cfg oc/bug_1366.m
|
|
||||||
50607 aet-sp_after_oc_msg_receiver.cfg oc/sp_after_oc_msg_receiver.m
|
|
||||||
50608 aet.cfg oc/blocks_align2.m
|
|
||||||
50609 sp_arith-f.cfg oc/negative_value.m
|
|
||||||
50610 aet.cfg oc/nelem.m
|
|
||||||
50611 aet.cfg oc/for2.m
|
|
||||||
50612 aet.cfg oc/chunk_ends_type1.m
|
|
||||||
50613 aet.cfg oc/chunk_ends_type2.m
|
|
||||||
50614 aet.cfg oc/chunk_ends_type3.m
|
|
||||||
50615 aet.cfg oc/block_literal_protocol.m
|
|
||||||
50616 aet.cfg oc/oc_msg_in_pp.m
|
|
||||||
50617 aet.cfg oc/boxed_receiver.m
|
|
||||||
50618 aet-func_def.cfg oc/func_def.mm
|
|
||||||
50619 aet.cfg oc/cast.m
|
|
||||||
50620 aet.cfg oc/sp_after_angle.m
|
|
||||||
50621 aet.cfg oc/Fraction.h
|
|
||||||
50622 aet.cfg oc/c-cpp-oc-wrapper.c
|
|
||||||
50623 aet.cfg oc/extern-c-attribute.m
|
|
||||||
50624 aet.cfg oc/typeof.m
|
|
||||||
50625 aet-sp_inside_braces_oc_dict.cfg oc/sp_inside_braces_oc_dict.m
|
|
||||||
50626 aet.cfg oc/chunk_ends_type4.m
|
|
||||||
50627 aet.cfg oc/method_ends_semicolon.m
|
|
||||||
50628 aet.cfg oc/macro-close-brace.m
|
|
||||||
50629 aet.cfg oc/pp_bool.m
|
|
||||||
|
|
||||||
50630 nl_func_call_args_multi_line_ignore_closures.cfg oc/nl_func_call_args_multi_line_ignore_closures.m
|
|
||||||
|
|
||||||
50700 cmt_insert-0.cfg oc/cmt_insert.m
|
|
||||||
50701 cmt_insert-0.cfg oc/cmt_insert2.m
|
|
||||||
|
|
||||||
50800 obj-c-properties.cfg oc/properties.m
|
|
||||||
50801 empty.cfg oc/i1213.m
|
|
||||||
50802 obj-c-available.cfg oc/available.m
|
|
||||||
50803 indent_single_newline.cfg oc/indent_single_newline.m
|
|
||||||
|
|
||||||
50804 aet.cfg oc/issue_2629.m
|
|
||||||
50805 aet.cfg oc/issue_2724.m
|
|
||||||
|
|
||||||
50810 bug_841.cfg oc/bug_841.m
|
|
||||||
50811 oc_bug_1674.cfg oc/bug_1674.m
|
|
||||||
50812 oc_bug_1683.cfg oc/bug_1683.m
|
|
||||||
|
|
||||||
50813 sp_before_oc_proto_list_add.cfg oc/sp_before_oc_proto_list.m
|
|
||||||
50814 sp_before_oc_proto_list_force.cfg oc/sp_before_oc_proto_list.m
|
|
||||||
50815 sp_before_oc_proto_list_remove.cfg oc/sp_before_oc_proto_list.m
|
|
||||||
|
|
||||||
50816 issue_2675.cfg oc/issue_2675.m
|
|
||||||
50817 aet.cfg oc/issue_2722.m
|
|
||||||
|
|
||||||
50900 1927.cfg oc/1927.m
|
|
||||||
50901 Issue_2172.cfg oc/Issue_2172.m
|
|
||||||
50902 empty.cfg oc/Issue_2289.m
|
|
||||||
50903 Issue_681.cfg oc/Issue_681.oc
|
|
||||||
|
|
||||||
50904 double_angle_space_1.cfg oc/double_angle_space.m
|
|
||||||
50905 double_angle_space_2.cfg oc/double_angle_space.m
|
|
||||||
50906 double_angle_space_3.cfg oc/double_angle_space.m
|
|
||||||
|
|
||||||
#
|
|
||||||
# adopt tests from UT
|
|
||||||
10018 delete-space-oc.cfg oc/delete-space-oc.mm
|
|
||||||
10019 empty.cfg oc/func-param-wrap-oc.mm
|
|
||||||
10020 align-objc-like-xcode.cfg oc/align-objc-like-xcode.m
|
|
||||||
10021 double-indent-objc-dict.cfg oc/double-indent-objc-dict.m
|
|
||||||
10022 indent-objc-block.cfg oc/indent-objc-block.m
|
|
@ -1,24 +0,0 @@
|
|||||||
#
|
|
||||||
# Test cases specifically for the Pawn language.
|
|
||||||
#
|
|
||||||
# Range: 60000 - 69999
|
|
||||||
# test.name config.file input.file
|
|
||||||
|
|
||||||
60000 pawn.cfg pawn/functions.pawn
|
|
||||||
60001 pawn.cfg pawn/comment.p
|
|
||||||
60002 pawn.cfg pawn/traffic.p
|
|
||||||
60003 pawn.cfg pawn/tags.pawn
|
|
||||||
60004 pawn.cfg pawn/enum.pawn
|
|
||||||
60005 pawn.cfg pawn/unbraced.p
|
|
||||||
|
|
||||||
60010 pawn-escape.cfg pawn/str-escape.p
|
|
||||||
|
|
||||||
60020 pawn-escape.cfg pawn/switch-vsemi.sma
|
|
||||||
|
|
||||||
60030 amxmodx.cfg pawn/crusty_ex-1.sma
|
|
||||||
|
|
||||||
60040 amxmodx.cfg pawn/preproc.pawn
|
|
||||||
|
|
||||||
60050 mod_full_brace_function-f.cfg pawn/gh419.pawn
|
|
||||||
|
|
||||||
60100 Issue_2586.cfg pawn/Issue_2586.pawn
|
|
@ -1,15 +0,0 @@
|
|||||||
#
|
|
||||||
# Test cases specifically for the Vala language.
|
|
||||||
#
|
|
||||||
# Range: 70000 - 79999
|
|
||||||
# test.name config.file input.file
|
|
||||||
|
|
||||||
70000 ben_100.cfg vala/list.vala
|
|
||||||
70001 ben_101.cfg vala/advanced.vala
|
|
||||||
70010 ben_102.cfg vala/verbatim_str.vala
|
|
||||||
70011 ben_103.cfg vala/verbatim_str2.vala
|
|
||||||
70012 ben2.cfg vala/verbatim_str2.vala
|
|
||||||
70020 ben_104.cfg vala/preproc.vala
|
|
||||||
70287 ben_105.cfg vala/gh287.vala
|
|
||||||
70300 Issue_2090.cfg vala/Issue_2090.vala
|
|
||||||
70301 Issue_2270.cfg vala/Issue_2270.vala
|
|
@ -1,3 +1,71 @@
|
|||||||
|
Change highlights in uncrustify-0.74.0 (November 2021)
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
4714d5d673d5b9c8f45d70c179f508d60130b18a
|
||||||
|
Added : nl_before_struct Mar 12 2021
|
||||||
|
dbb2903a94668e147b588d3eebc3be917ac4ebca
|
||||||
|
Added : nl_before_ignore_after_case Jun 22 2021
|
||||||
|
e97b93418c03cde680d6fd46209d7e43c5e09bfe
|
||||||
|
Added : sp_before_ptr_star_trailing Jul 1 2021
|
||||||
|
Added : sp_after_ptr_star_trailing Jul 1 2021
|
||||||
|
dd5a7c3b2ab64b903e888a264693a9edb7a98ee5
|
||||||
|
Added : sp_sparen_paren Jul 19 2021
|
||||||
|
94941c2f9aa8952debab1f8257eb0625bc459392
|
||||||
|
Added : pp_indent_in_guard Jul 28 2021
|
||||||
|
84d3b9276c007642c4bb73ff562008253e4fe014
|
||||||
|
Added : indent_single_line_comments_before Jul 31 2021
|
||||||
|
Added : indent_single_line_comments_after Jul 31 2021
|
||||||
|
Removed : indent_sing_line_comments Jul 31 2021
|
||||||
|
0d956a006d64fddd4f8131e6a16a23f7e447cca3
|
||||||
|
Added : sp_after_ellipsis Jul 31 2021
|
||||||
|
40bbb979ecf7ad36128150f5540a462c890d5e2c
|
||||||
|
Added : mod_remove_duplicate_include Aug 15 2021
|
||||||
|
97d24f3a05a53521ff2ce94928534f4bab0cc0af
|
||||||
|
Added : sp_between_semi_for_empty Aug 22 2021
|
||||||
|
63109e6253387480b8bfe7f73a7f2949865fc380
|
||||||
|
Added : nl_before_brace_open Aug 27 2021
|
||||||
|
03c9ac261c9282b3cf5e92d69de70d6b4566d8e9
|
||||||
|
Added : cmt_trailing_single_line_c_to_cpp Sep 1 2021
|
||||||
|
1525722486dba45aa053f2c83e3015fa64880443
|
||||||
|
Added : sp_ellipsis_parameter_pack Sep 16 2021
|
||||||
|
Added : sp_parameter_pack_ellipsis Sep 16 2021
|
||||||
|
2e33ac4314dfbfc18c56ec694b0eba3e6a1318f5
|
||||||
|
Added : sp_byref_ellipsis Sep 21 2021
|
||||||
|
Added : sp_ptr_type_ellipsis Sep 21 2021
|
||||||
|
f19bf09cdce5822cf3d71065cb3900ea52f6e5c7
|
||||||
|
Added : indent_ctor_init_following Sep 30 2021
|
||||||
|
b1274c20bea3f8e2a8d6cd05cbb23c8d66f187a7
|
||||||
|
Added : sp_before_emb_cmt Oct 8 2021
|
||||||
|
Added : sp_num_after_emb_cmt Oct 8 2021
|
||||||
|
Added : sp_before_tr_cmt Oct 8 2021
|
||||||
|
Added : sp_num_before_emb_cmt Oct 8 2021
|
||||||
|
Added : sp_num_before_tr_cmt Oct 8 2021
|
||||||
|
Added : sp_after_emb_cmt Oct 8 2021
|
||||||
|
Removed : sp_before_tr_emb_cmt Oct 8 2021
|
||||||
|
Removed : sp_num_before_tr_emb_cmt Oct 8 2021
|
||||||
|
563d72fcae6e0aad6e5f0ff998992a48a6767986
|
||||||
|
Added : pp_include_at_level Oct 11 2021
|
||||||
|
28486dbadcc4d0ff9376776eb63f3c3bd800cf2d
|
||||||
|
Added : sp_return Oct 12 2021
|
||||||
|
86105064d13fc60d14cfd134a8c3d402e7d27492
|
||||||
|
Added : indent_comment_align_thresh Oct 13 2021
|
||||||
|
964db2ac20372c45621a55313cdfb1eeb8298800
|
||||||
|
Added : indent_comment Oct 18 2021
|
||||||
|
92b9047256ece8d9ace2da5c743be2b9cc2b54d8
|
||||||
|
Added : align_func_proto_amp_style Oct 23 2021
|
||||||
|
Added : align_func_proto_star_style Oct 23 2021
|
||||||
|
094c79e06f6ec3111684b37b77063cf7af658105
|
||||||
|
Added : indent_case_comment Oct 26 2021
|
||||||
|
7eb595caa38ced024a42ba1602d69e0387b8e3a1
|
||||||
|
Added : indent_switch_body Nov 3 2021
|
||||||
|
cf845deb008b45783ff94a1986131eb180fb54a8
|
||||||
|
Added : sp_inside_for_close Nov 6 2021
|
||||||
|
Added : sp_inside_for Nov 6 2021
|
||||||
|
Added : sp_inside_for_open Nov 6 2021
|
||||||
|
2caaa17866c3b421de7e28670e85c8f8dade5a77
|
||||||
|
Added : indent_ignore_label Nov 10 2021
|
||||||
|
d8436ef370027bcfd289b19037c39ffdaf0ad4ff
|
||||||
|
Added : sp_ptr_star_func_var Nov 15 2021
|
||||||
|
|
||||||
Change highlights in uncrustify-0.73.0 (May 2021)
|
Change highlights in uncrustify-0.73.0 (May 2021)
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
@ -0,0 +1,27 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.0.2)
|
||||||
|
|
||||||
|
set(MANIFEST "${CMAKE_CURRENT_BINARY_DIR}/install_manifest.txt")
|
||||||
|
|
||||||
|
if(NOT EXISTS ${MANIFEST})
|
||||||
|
message(FATAL_ERROR "Cannot find install manifest: ${MANIFEST}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
file(STRINGS ${MANIFEST} files)
|
||||||
|
foreach(file ${files})
|
||||||
|
if(EXISTS ${file} OR IS_SYMLINK ${file})
|
||||||
|
message(STATUS "Removing: ${file}")
|
||||||
|
|
||||||
|
execute_process(COMMAND rm -f ${file}
|
||||||
|
RESULT_VARIABLE result
|
||||||
|
OUTPUT_QUIET
|
||||||
|
ERROR_VARIABLE stderr
|
||||||
|
ERROR_STRIP_TRAILING_WHITESPACE
|
||||||
|
)
|
||||||
|
|
||||||
|
if(NOT ${result} EQUAL 0)
|
||||||
|
message(FATAL_ERROR "${stderr}")
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
message(STATUS "Does-not-exist: ${file}")
|
||||||
|
endif()
|
||||||
|
endforeach(file)
|
@ -1,3 +1,9 @@
|
|||||||
|
uncrustify-trinity (0.74.0-0debian11.0.0+0) unstable; urgency=medium
|
||||||
|
|
||||||
|
* TDE version of upstream 0.74.0
|
||||||
|
|
||||||
|
-- Michele Calgaro <michele.calgaro@yahoo.it> Wed, 19 May 2021 15:58:50 +0900
|
||||||
|
|
||||||
uncrustify-trinity (0.73.0-0debian11.0.0+2) unstable; urgency=medium
|
uncrustify-trinity (0.73.0-0debian11.0.0+2) unstable; urgency=medium
|
||||||
|
|
||||||
* Fix Python detection on CMake < 3.12.
|
* Fix Python detection on CMake < 3.12.
|
@ -1,2 +1,4 @@
|
|||||||
|
AUTHORS
|
||||||
README.md
|
README.md
|
||||||
|
NEWS
|
||||||
documentation/*
|
documentation/*
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
@ -0,0 +1,53 @@
|
|||||||
|
|
||||||
|
This file describes the purpose of the 'dump steps' command line option.
|
||||||
|
|
||||||
|
|
||||||
|
OVERVIEW
|
||||||
|
--------
|
||||||
|
The '-ds/--dump-steps' option instructs uncrustify to log a lot of debug information
|
||||||
|
throughout the formatting process, which can be very useful when trying to understand
|
||||||
|
why something is being formatted in the way it is. This is usually the case when the
|
||||||
|
expected results do not match with the actual ones.
|
||||||
|
|
||||||
|
|
||||||
|
COMPARISON WITH '-p' OPTION
|
||||||
|
---------------------------
|
||||||
|
While the '-p' option only prints the parsing information at the end of the process,
|
||||||
|
the '-ds' option will print the same information at many points in time, providing
|
||||||
|
extra depth to users and developers when troubleshooting an issue.
|
||||||
|
|
||||||
|
|
||||||
|
GENERATED FILES
|
||||||
|
---------------
|
||||||
|
Add '-ds FILE' to the command line options to enable the functionality.
|
||||||
|
This will create a number of files as follow:
|
||||||
|
|
||||||
|
- FILE_000.log: this file contains the list of the options used by uncrustify
|
||||||
|
- FILE_001.log: this file lists the parsing status after uncrustify has read the input file
|
||||||
|
and before starting the formatting process.
|
||||||
|
- FILE_002.log: this file lists the parsing status before uncrustify enters its first internal
|
||||||
|
while loop
|
||||||
|
- FILE_AAA.log - FILE_BBB.log: a variable number of files, depending on the progress of the
|
||||||
|
formatting process. Each file is printed at the end of one iteration of the
|
||||||
|
first internal while loop.
|
||||||
|
- FILE_BBB+1.log: this file lists the parsing status before uncrustify enters its second internal
|
||||||
|
while loop
|
||||||
|
- FILE_BBB+2.log - FILE_CCC.log: a variable number of files, depending on the progress of the
|
||||||
|
formatting process. Each file is printed at the end of one iteration of the
|
||||||
|
second internal while loop.
|
||||||
|
- FILE_CCC+1.log: this file lists the parsing status at the end of the process.
|
||||||
|
|
||||||
|
NOTE: by combining FILE_000.log and FILE_CCC+1.log, you will get the same content of the parsing
|
||||||
|
file obtained with the '-p' option.
|
||||||
|
|
||||||
|
|
||||||
|
USAGE
|
||||||
|
-----
|
||||||
|
Comparing each file with the previous one will help understanding why something is being formatted
|
||||||
|
the way it is. When debugging a formatting issue, this provides a quick way to restrict the
|
||||||
|
section of the code that should be investigated.
|
||||||
|
|
||||||
|
The first line of each file contains a brief descriptive string which can be used to quickly find the
|
||||||
|
point in the code where the file was created. Look for 'dump_step(dump_file, <descriptive string>)' in
|
||||||
|
src/uncrustify.cpp.
|
||||||
|
|
Before Width: | Height: | Size: 462 B After Width: | Height: | Size: 462 B |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
@ -0,0 +1,19 @@
|
|||||||
|
uncrustify is not a compiler.
|
||||||
|
|
||||||
|
Let have a look on:
|
||||||
|
|
||||||
|
# if A
|
||||||
|
int abc( int a, int b, int c)
|
||||||
|
{
|
||||||
|
// do something
|
||||||
|
# else
|
||||||
|
int abc( int a, int b)
|
||||||
|
{
|
||||||
|
// do something else
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
|
||||||
|
It will produce an error, because uncrustify doesn't evaluate the value of A.
|
||||||
|
uncrustify will read all the lines, a compiler only a part of it, depending on A.
|
||||||
|
|
||||||
|
uncrustify encounter two opening graces but only one closing brace.
|
@ -0,0 +1,19 @@
|
|||||||
|
The alignment at the sign '=' must be divided in different cases.
|
||||||
|
Case CT_ASSIGN
|
||||||
|
The most common case such as:
|
||||||
|
a = 1;
|
||||||
|
|
||||||
|
Case CT_ASSIGN_DEFAULT_ARG
|
||||||
|
The default value for an argument such as:
|
||||||
|
Foo( int Foo = 5 );
|
||||||
|
|
||||||
|
Case CT_ASSIGN_FUNC_PROTO
|
||||||
|
The function prototype modifier such as:
|
||||||
|
void* operator new(std::size_t) = delete;
|
||||||
|
Foo( const Foo & ) = default;
|
||||||
|
Foo( const Foo & ) = 0;
|
||||||
|
|
||||||
|
Introduce the new option align_assign_func_proto
|
||||||
|
|
||||||
|
Ref. #2170:
|
||||||
|
https://github.com/uncrustify/uncrustify/issues/2170
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "uncrustify",
|
"name": "uncrustify",
|
||||||
"version": "0.73.0",
|
"version": "0.74.0",
|
||||||
"description": "A highly configurable, easily modifiable source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA",
|
"description": "A highly configurable, easily modifiable source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA",
|
||||||
"main": "uncrustify",
|
"main": "uncrustify",
|
||||||
"scripts": {
|
"scripts": {
|
@ -0,0 +1,49 @@
|
|||||||
|
/**
|
||||||
|
* @file log_rules.h
|
||||||
|
* prototypes for log_rules.cpp
|
||||||
|
*
|
||||||
|
* @author Guy Maurel
|
||||||
|
* @license GPL v2+
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef LOG_RULES_H_INCLUDED
|
||||||
|
#define LOG_RULES_H_INCLUDED
|
||||||
|
|
||||||
|
#include "chunk_list.h"
|
||||||
|
#include "uncrustify.h"
|
||||||
|
|
||||||
|
using namespace uncrustify;
|
||||||
|
|
||||||
|
#if defined DEBUG
|
||||||
|
#define log_rule(rule) \
|
||||||
|
log_rule2(__func__, __LINE__, (rule), first, second); \
|
||||||
|
log_rule4((rule), first)
|
||||||
|
#else
|
||||||
|
#define log_rule(rule) \
|
||||||
|
log_rule2(__func__, __LINE__, (rule), first, second)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// if you need more debug informations, remove the comment at the next line
|
||||||
|
#define SUPER_LOG 1
|
||||||
|
#ifdef SUPER_LOG
|
||||||
|
#define log_rule_B(rule) \
|
||||||
|
log_rule3(LCURRENT, __func__, __LINE__, (rule))
|
||||||
|
#else
|
||||||
|
#define log_rule_B(rule) \
|
||||||
|
log_rule3(LCURRENT, __func__, (rule))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
void log_rule2(const char *func, size_t line, const char *rule, chunk_t *first, chunk_t *second);
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef SUPER_LOG
|
||||||
|
void log_rule3(log_sev_t sev, const char *func, size_t line, const char *rule);
|
||||||
|
|
||||||
|
#else
|
||||||
|
void log_rule3(log_sev_t sev, const char *func, const char *rule);
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
void log_rule4(const char *rule, chunk_t *first);
|
||||||
|
|
||||||
|
#endif /* LOG_RULES_H_INCLUDED */
|
@ -0,0 +1,68 @@
|
|||||||
|
/**
|
||||||
|
* @file parameter_pack_cleanup.cpp
|
||||||
|
*
|
||||||
|
* @author Guy Maurel
|
||||||
|
* @license GPL v2+
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "parameter_pack_cleanup.h"
|
||||||
|
|
||||||
|
#include "chunk_list.h"
|
||||||
|
|
||||||
|
|
||||||
|
void parameter_pack_cleanup(void)
|
||||||
|
{
|
||||||
|
LOG_FUNC_ENTRY();
|
||||||
|
|
||||||
|
chunk_t *pc = chunk_get_head();
|
||||||
|
|
||||||
|
while (pc != nullptr)
|
||||||
|
{
|
||||||
|
LOG_FMT(LTOK, "%s(%d): orig_line is %zu, orig_col is %zu, text() is '%s'\n",
|
||||||
|
__func__, __LINE__, pc->orig_line, pc->orig_col, pc->text());
|
||||||
|
|
||||||
|
// look for template
|
||||||
|
if (chunk_is_token(pc, CT_TEMPLATE)) // Issue #3309
|
||||||
|
{
|
||||||
|
chunk_t *template_end = chunk_get_next_type(pc, CT_SEMICOLON, pc->level);
|
||||||
|
|
||||||
|
// look for a parameter pack
|
||||||
|
while (pc != nullptr)
|
||||||
|
{
|
||||||
|
LOG_FMT(LTOK, "%s(%d): orig_line is %zu, orig_col is %zu, text() is '%s'\n",
|
||||||
|
__func__, __LINE__, pc->orig_line, pc->orig_col, pc->text());
|
||||||
|
|
||||||
|
if (chunk_is_token(pc, CT_PARAMETER_PACK))
|
||||||
|
{
|
||||||
|
chunk_t *parameter_pack = pc;
|
||||||
|
|
||||||
|
// look for a token with the same text
|
||||||
|
while (pc != nullptr)
|
||||||
|
{
|
||||||
|
LOG_FMT(LTOK, "%s(%d): orig_line is %zu, orig_col is %zu, text() is '%s'\n",
|
||||||
|
__func__, __LINE__, pc->orig_line, pc->orig_col, pc->text());
|
||||||
|
//pc = chunk_get_next(pc);
|
||||||
|
|
||||||
|
if (pc == template_end)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (strcmp(pc->text(), parameter_pack->text()) == 0)
|
||||||
|
{
|
||||||
|
set_chunk_type(pc, CT_PARAMETER_PACK);
|
||||||
|
}
|
||||||
|
pc = chunk_get_next(pc);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pc = chunk_get_next(pc);
|
||||||
|
|
||||||
|
if (pc == template_end)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pc = chunk_get_next(pc);
|
||||||
|
}
|
||||||
|
} // parameter_pack_cleanup
|
@ -0,0 +1,15 @@
|
|||||||
|
/**
|
||||||
|
* @file parameter_pack_cleanup.h
|
||||||
|
*
|
||||||
|
* @author Guy Maurel
|
||||||
|
* @license GPL v2+
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef PARAMETER_PACK_CLEANUP_H_INCLUDED
|
||||||
|
#define PARAMETER_PACK_CLEANUP_H_INCLUDED
|
||||||
|
|
||||||
|
#include "uncrustify_types.h"
|
||||||
|
|
||||||
|
void parameter_pack_cleanup(void);
|
||||||
|
|
||||||
|
#endif /* PARAMETER_PACK_CLEANUP_H_INCLUDED */
|
@ -0,0 +1,94 @@
|
|||||||
|
/**
|
||||||
|
* @file remove_duplicate_include.cpp
|
||||||
|
*
|
||||||
|
* @author Guy Maurel
|
||||||
|
* October 2015, 2016
|
||||||
|
* @license GPL v2+
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "remove_duplicate_include.h"
|
||||||
|
|
||||||
|
#include "chunk_list.h"
|
||||||
|
#include "uncrustify.h"
|
||||||
|
|
||||||
|
using std::vector;
|
||||||
|
|
||||||
|
|
||||||
|
void remove_duplicate_include(void)
|
||||||
|
{
|
||||||
|
LOG_FUNC_ENTRY();
|
||||||
|
|
||||||
|
vector<chunk_t *> includes;
|
||||||
|
|
||||||
|
chunk_t *preproc = nullptr;
|
||||||
|
chunk_t *pc = chunk_get_head();
|
||||||
|
|
||||||
|
while (pc != nullptr)
|
||||||
|
{
|
||||||
|
//LOG_FMT(LRMRETURN, "%s(%d): orig_line is %zu, orig_col is %zu, text() is '%s', type is %s, parent_type is %s\n",
|
||||||
|
// __func__, __LINE__, pc->orig_line, pc->orig_col, pc->text(),
|
||||||
|
// get_token_name(pc->type), get_token_name(pc->parent_type));
|
||||||
|
|
||||||
|
if (chunk_is_token(pc, CT_PREPROC))
|
||||||
|
{
|
||||||
|
preproc = pc;
|
||||||
|
}
|
||||||
|
else if (chunk_is_token(pc, CT_PP_INCLUDE))
|
||||||
|
{
|
||||||
|
chunk_t *next = chunk_get_next(pc);
|
||||||
|
|
||||||
|
//LOG_FMT(LRMRETURN, "%s(%d): orig_line is %zu, orig_col is %zu, text() is '%s', type is %s, parent_type is %s\n",
|
||||||
|
// __func__, __LINE__, next->orig_line, next->orig_col, next->text(),
|
||||||
|
// get_token_name(next->type), get_token_name(next->parent_type));
|
||||||
|
if (includes.empty())
|
||||||
|
{
|
||||||
|
includes.push_back(next);
|
||||||
|
// goto next newline
|
||||||
|
pc = chunk_get_next_nl(next);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//LOG_FMT(LRMRETURN, "%s(%d): size is %zu\n",
|
||||||
|
// __func__, __LINE__, includes.size());
|
||||||
|
// look for duplicate
|
||||||
|
auto ite = includes.end();
|
||||||
|
|
||||||
|
for (auto itc = includes.begin(); itc != ite; ++itc)
|
||||||
|
{
|
||||||
|
chunk_t *current = *itc;
|
||||||
|
|
||||||
|
//LOG_FMT(LRMRETURN, "%s(%d): next->text() is '%s'\n",
|
||||||
|
// __func__, __LINE__, next->text());
|
||||||
|
//LOG_FMT(LRMRETURN, "%s(%d): current->text() is '%s'\n",
|
||||||
|
// __func__, __LINE__, current->text());
|
||||||
|
if (std::strcmp(next->text(), current->text()) == 0)
|
||||||
|
{
|
||||||
|
// erase the statement
|
||||||
|
chunk_t *temp = pc;
|
||||||
|
chunk_t *comment = chunk_get_next(next);
|
||||||
|
chunk_t *eol = chunk_get_next_nl(next);
|
||||||
|
pc = chunk_get_prev(preproc);
|
||||||
|
chunk_del(preproc);
|
||||||
|
chunk_del(temp);
|
||||||
|
chunk_del(next);
|
||||||
|
|
||||||
|
if (comment != eol)
|
||||||
|
{
|
||||||
|
chunk_del(comment);
|
||||||
|
}
|
||||||
|
chunk_del(eol);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// goto next newline
|
||||||
|
pc = chunk_get_next_nl(next);
|
||||||
|
// and still look for duplicate
|
||||||
|
}
|
||||||
|
} // for (auto itc = includes.begin();
|
||||||
|
} // if (includes.empty())
|
||||||
|
} // else if (chunk_is_token(pc, CT_PP_INCLUDE))
|
||||||
|
// get the next token
|
||||||
|
pc = chunk_get_next(pc);
|
||||||
|
}
|
||||||
|
} // remove_duplicate_include
|
@ -0,0 +1,20 @@
|
|||||||
|
/**
|
||||||
|
* @file remove_duplicate_include.h
|
||||||
|
* prototypes for remove_duplicate_include.cpp
|
||||||
|
*
|
||||||
|
* @author Guy Maurel
|
||||||
|
* @license GPL v2+
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef REMOVE_DUPLICATE_INCLUDE_H_INCLUDED
|
||||||
|
#define REMOVE_DUPLICATE_INCLUDE_H_INCLUDED
|
||||||
|
|
||||||
|
#include "chunk_list.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Remove duplicate include
|
||||||
|
*/
|
||||||
|
void remove_duplicate_include(void);
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* REMOVE_DUPLICATE_INCLUDE_H_INCLUDED */
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,149 @@
|
|||||||
|
#
|
||||||
|
# Test cases specifically for the C# language.
|
||||||
|
#
|
||||||
|
# Range: 10000 - 19999
|
||||||
|
# test.name config.file input.file
|
||||||
|
|
||||||
|
10000 cs/mono.cfg cs/simple.cs
|
||||||
|
10001 cs/getset.cfg cs/getset.cs
|
||||||
|
10002 cs/ben_032.cfg cs/simple.cs
|
||||||
|
10003 cs/ben_033.cfg cs/region.cs
|
||||||
|
10010 cs/ben_034.cfg cs/var-member.cs
|
||||||
|
10011 common/indent_columns-3.cfg cs/strings.cs
|
||||||
|
10013 cs/625_where-constraints.cfg cs/625_where-constraints.cs
|
||||||
|
|
||||||
|
10020 common/region-0.cfg cs/region.cs
|
||||||
|
10021 common/region-1.cfg cs/region.cs
|
||||||
|
10022 common/region-2.cfg cs/region.cs
|
||||||
|
10023 common/region-3.cfg cs/region.cs
|
||||||
|
|
||||||
|
10030 common/sort_imports.cfg cs/sort_using.cs
|
||||||
|
10031 cs/mod_sort_using-t.cfg cs/bug_i_935.cs
|
||||||
|
10032 cs/sort_using_categ.cfg cs/sort_using_categ.cs
|
||||||
|
|
||||||
|
10040 cs/tcf.cfg cs/tcf.cs
|
||||||
|
10041 cs/tcf.cfg cs/gs.cs
|
||||||
|
10042 cs/ben_036.cfg cs/exception-filters.cs
|
||||||
|
|
||||||
|
10050 cs/cs_generics.cfg cs/generics.cs
|
||||||
|
|
||||||
|
10060 cs/ben_037.cfg cs/unsafe.cs
|
||||||
|
10065 cs/UNI-1975.cfg cs/UNI-1975.cs
|
||||||
|
|
||||||
|
10070 cs/ben_038.cfg cs/utf16le.cs
|
||||||
|
10071 cs/ben_038.cfg cs/utf16be.cs
|
||||||
|
10072 cs/ben_038.cfg cs/utf16le_no_bom.cs
|
||||||
|
10073 cs/ben_038.cfg cs/utf16be_no_bom.cs
|
||||||
|
10074 cs/UNI-2020.cfg cs/UNI-2020.cs
|
||||||
|
|
||||||
|
10080 common/ben_042.cfg cs/property.cs
|
||||||
|
|
||||||
|
10090 cs/ben_043.cfg cs/string_multi.cs
|
||||||
|
|
||||||
|
10100 common/empty.cfg cs/bug_600.cs
|
||||||
|
10101 cs/sf607.cfg cs/sf607.cs
|
||||||
|
|
||||||
|
10110 cs/mda_space_a.cfg cs/mdarray_space.cs
|
||||||
|
10111 cs/sp_after_comma-a.cfg cs/mdarray_space.cs
|
||||||
|
10112 cs/mda_space_c.cfg cs/mdarray_space.cs
|
||||||
|
|
||||||
|
10119 common/empty.cfg cs/preserveTabs.cs
|
||||||
|
10120 common/empty.cfg cs/cmt_backslash_eol.cs
|
||||||
|
|
||||||
|
10130 cs/sp_between_new_paren.cfg cs/sp_between_new_paren.cs
|
||||||
|
|
||||||
|
10140 cs/ben_044.cfg cs/remove_semi.cs
|
||||||
|
|
||||||
|
10150 cs/ben_045.cfg cs/operator-null-conditional.cs
|
||||||
|
10151 cs/sp_assign-a.cfg cs/operator_null-coalescing-assignment.cs
|
||||||
|
|
||||||
|
10200 common/empty.cfg cs/logger.cs
|
||||||
|
|
||||||
|
10300 common/empty.cfg cs/1822.cs
|
||||||
|
|
||||||
|
10628 common/empty.cfg cs/sf628.cs
|
||||||
|
10160 common/empty.cfg cs/delegate.cs
|
||||||
|
10161 cs/indent_cs_delegate_brace-t.cfg cs/delegate.cs
|
||||||
|
12001 cs/bug_620.cfg cs/bug_620.cs
|
||||||
|
12002 common/empty.cfg cs/nullable_prop.cs
|
||||||
|
12003 cs/ben_043.cfg cs/fncall_as_ctor_in_attr.cs
|
||||||
|
12004 cs/verbatim_strings.cfg cs/verbatim_strings.cs
|
||||||
|
12005 common/empty.cfg cs/bug_1591.cs
|
||||||
|
|
||||||
|
12101 cs/indent_using_block-f.cfg cs/bug_i_679.cs
|
||||||
|
|
||||||
|
12102 cs/mod_full_brace_nl_block_rem_mlcond-0.cfg cs/mod_full_brace_nl_block_rem_mlcond.cs
|
||||||
|
12103 cs/mod_full_brace_nl_block_rem_mlcond-1.cfg cs/mod_full_brace_nl_block_rem_mlcond.cs
|
||||||
|
12104 cs/bug_1637.cfg cs/bug_1637.cs
|
||||||
|
12105 cs/bug_1650.cfg cs/bug_1650.cs
|
||||||
|
12106 cs/bug_1650.cfg cs/UNI-40685.cs
|
||||||
|
12107 cs/mod_full_paren_if_bool.cfg cs/mod_full_paren_if_bool.cs
|
||||||
|
12108 cs/Issue_2705.cfg cs/Issue_2705.cs
|
||||||
|
|
||||||
|
# test the options sp_ with the value "ignore"
|
||||||
|
12200 cs/comma-cs-f.cfg cs/comma.cs
|
||||||
|
12201 cs/comma-cs-i.cfg cs/comma.cs
|
||||||
|
12202 cs/comma-cs-r.cfg cs/comma.cs
|
||||||
|
|
||||||
|
# Adopt some UT tests
|
||||||
|
10012 common/empty.cfg cs/621_this-spacing.cs
|
||||||
|
10014 common/empty.cfg cs/630_bad-new-init-semicolon-removal.cs
|
||||||
|
10015 cs/misc-failures.cfg cs/misc-failures.cs
|
||||||
|
10016 cs/new-constraint-paren-space.cfg cs/new-constraint-paren-space.cs
|
||||||
|
10018 common/empty.cfg cs/delete-space-oc.mm
|
||||||
|
10019 common/empty.cfg cs/func-param-wrap-oc.mm
|
||||||
|
10027 cs/U01-Cs.cfg cs/oneline_property.cs
|
||||||
|
10028 cs/U02-Cs.cfg cs/ifcolalign.cs
|
||||||
|
10029 cs/U03-Cs.cfg cs/when.cs
|
||||||
|
10033 cs/U11-Cpp.cfg cs/objc.mm
|
||||||
|
10034 cs/U12-Cpp.cfg cs/asm.h.mm
|
||||||
|
10035 cs/U13-Cpp.cfg cs/definesalign.h.mm
|
||||||
|
10036 cs/U14-Cpp.cfg cs/inttypes.h.mm
|
||||||
|
10039 cs/615_nested_usings.cfg cs/615_nested-usings.cs
|
||||||
|
10044 cs/U04-Cs.cfg cs/ifcomment.cs
|
||||||
|
10045 cs/UNI-1288.cfg cs/UNI-1288.cs
|
||||||
|
10046 cs/U15-Cpp.cfg cs/UNI-1333.mm
|
||||||
|
10051 cs/UNI-1338.cfg cs/UNI-1338.cs
|
||||||
|
10055 cs/U06-Cs.cfg cs/UNI-1345.cs
|
||||||
|
10066 cs/UNI-1977.cfg cs/UNI-1977.cs
|
||||||
|
10067 cs/UNI-1978.cfg cs/UNI-1978.cs
|
||||||
|
10075 cs/UNI-2021.cfg cs/UNI-2021.cs
|
||||||
|
10076 cs/UNI-1343.cfg cs/UNI-1343.cs
|
||||||
|
10077 cs/U09-Cs.cfg cs/UNI-1919.cs
|
||||||
|
10078 cs/U10-Cs.cfg cs/UNI-3484.cs
|
||||||
|
10102 cs/U24-Cpp.cfg cs/pp-ignore.mm
|
||||||
|
10103 cs/U11-Cs.cfg cs/UNI-2506.cs
|
||||||
|
10104 common/empty.cfg cs/UNI-2505.cs
|
||||||
|
11011 cs/620_getset-brace.cfg cs/620_getset-brace.cs
|
||||||
|
11030 cs/U08-Cpp.cfg cs/argtypes.mm
|
||||||
|
11031 cs/U09-Cpp.cfg cs/casting.mm
|
||||||
|
11032 cs/U10-Cpp.cfg cs/newlines.mm
|
||||||
|
11072 cs/U07-Cs.cfg cs/UNI-2007.cs
|
||||||
|
11073 cs/U08-Cs.cfg cs/UNI-2008.cs
|
||||||
|
20010 cs/UNI-32658.cfg cs/UNI-32658.cs
|
||||||
|
20011 cs/bug_1620.cfg cs/bug_1620.cs
|
||||||
|
|
||||||
|
60004 cs/UNI-2684.cfg cs/UNI-2684.cs
|
||||||
|
60005 cs/UNI-2685.cfg cs/UNI-2685.cs
|
||||||
|
60007 cs/UNI-3083.cfg cs/UNI-3083.cs
|
||||||
|
60008 cs/U-J.cfg cs/UNI-17253.cs
|
||||||
|
60009 cs/UNI-9917.cfg cs/UNI-9917.cs
|
||||||
|
60011 cs/UNI-11095.cfg cs/UNI-11095.mm
|
||||||
|
60012 cs/U13-Cs.cfg cs/UNI-12303.cs
|
||||||
|
60013 cs/UNI-13955.cfg cs/UNI-13955.cs
|
||||||
|
60015 cs/UNI-14131.cfg cs/UNI-14131.cs
|
||||||
|
60016 cs/UNI-11662.cfg cs/UNI-11662.cs
|
||||||
|
60018 common/UNI-18777.cfg cs/UNI-18777.cs
|
||||||
|
60019 common/empty.cfg cs/UNI-18780.cs
|
||||||
|
60020 cs/UNI-18829.cfg cs/UNI-18829.cs
|
||||||
|
60023 cs/UNI-18437.cfg cs/UNI-18437.cs
|
||||||
|
60024 cs/U15-Cs.cfg cs/UNI-19644.cs
|
||||||
|
60026 cs/UNI-19895.cfg cs/UNI-19895.cs
|
||||||
|
60033 cs/UNI-21730.cfg cs/UNI-21730.cs
|
||||||
|
60036 cs/UNI-11993.cfg cs/UNI-11993.cs
|
||||||
|
60037 cs/UNI-29933.cfg cs/UNI-29933.cs
|
||||||
|
60040 cs/UNI-30498_2.cfg cs/UNI-30498_2.cs
|
||||||
|
60041 cs/squeeze-paren-close-Option.cfg cs/squeeze-paren-close-Option.cs
|
||||||
|
60042 cs/indent-multistring-coulmn1.cfg cs/indent-multistring-coulmn1.cs
|
||||||
|
60044 cs/UNI-37241.cfg cs/UNI-37241.cs
|
||||||
|
60045 common/nl_before_after.cfg cs/add-nl-before-namespace.cs
|
@ -0,0 +1,435 @@
|
|||||||
|
#
|
||||||
|
# Test cases specifically for the C language.
|
||||||
|
#
|
||||||
|
# Range: 00000 - 09999
|
||||||
|
# test.name config.file input.file
|
||||||
|
|
||||||
|
|
||||||
|
# little general tests ====================================================
|
||||||
|
|
||||||
|
00000 common/indent_columns-3.cfg c/comment-indent.c
|
||||||
|
00001 c/cpp_to_c-1.cfg c/comment-indent.c
|
||||||
|
00002 c/cpp_to_c-2.cfg c/comment-indent.c
|
||||||
|
00003 c/cpp_to_c-3.cfg c/comment-indent.c
|
||||||
|
00004 c/indent-1.cfg c/switch.c
|
||||||
|
00005 c/ben_047.cfg c/cmt-align.c
|
||||||
|
00006 common/indent_columns-3.cfg c/comment-convert.c
|
||||||
|
00007 c/cpp_to_c-1.cfg c/comment-convert.c
|
||||||
|
00008 c/cpp_to_c-2.cfg c/comment-convert.c
|
||||||
|
00009 c/cpp_to_c-3.cfg c/comment-convert.c
|
||||||
|
|
||||||
|
|
||||||
|
# brace styles
|
||||||
|
|
||||||
|
00010 c/ben_048.cfg c/braces.c
|
||||||
|
00011 common/brace-allman.cfg c/braces.c
|
||||||
|
00012! c/brace-banner.cfg c/braces.c
|
||||||
|
00013 c/brace-gnu.cfg c/braces.c
|
||||||
|
00014 c/brace-kr.cfg c/braces.c
|
||||||
|
00015 c/brace-ws.cfg c/braces.c
|
||||||
|
00016 c/brace-ws2.cfg c/braces.c
|
||||||
|
|
||||||
|
00020 c/ben_049.cfg c/define-if-indent.c
|
||||||
|
00050 c/brace-remove-2.cfg c/brace-remove.c
|
||||||
|
00051 c/brace-remove-all.cfg c/brace-remove.c
|
||||||
|
00052 c/brace-remove-all.cfg c/brace-remove2.c
|
||||||
|
00053 c/nl_brace_test.cfg c/brace.c
|
||||||
|
00054 c/if_chain.cfg c/if_chain.c
|
||||||
|
00055 c/cgal.cfg c/braces-2.c
|
||||||
|
00056 c/brace-remove-all.cfg c/brace-remove3.c
|
||||||
|
00057 c/if_chain.cfg c/brace-remove3.c
|
||||||
|
00058 c/brace-kr-nobr.cfg c/if_chain.c
|
||||||
|
|
||||||
|
00060 c/ben_050.cfg c/braces-2.c
|
||||||
|
00061 c/ben_051.cfg c/braces-3.c
|
||||||
|
00062 c/ben_052.cfg c/braces-4.c
|
||||||
|
00065 c/ben_053.cfg c/braces-5.c
|
||||||
|
00066 c/ben_054.cfg c/vb-while.c
|
||||||
|
00067 c/ben_055.cfg c/vb-do.c
|
||||||
|
|
||||||
|
|
||||||
|
00068 c/ben_056.cfg c/bsnl.c
|
||||||
|
00069 c/ben_057.cfg c/vb-pp.c
|
||||||
|
|
||||||
|
00070 c/ben_058.cfg c/return-multi.c
|
||||||
|
00071 common/ben_042.cfg c/include_define.h
|
||||||
|
00072 common/star_pos-0.cfg c/align-proto.c
|
||||||
|
00073 common/empty.cfg c/nl_proto_endif.c
|
||||||
|
00074 c/clang-has_include.cfg c/clang-has_include.h
|
||||||
|
00076 c/1225.cfg c/1225.c
|
||||||
|
|
||||||
|
00081 c/else-if-1.cfg c/else-if.c
|
||||||
|
00082 c/else-if-2.cfg c/else-if.c
|
||||||
|
|
||||||
|
00091 c/cond-1.cfg c/cond.c
|
||||||
|
00092 common/indent_columns-3.cfg c/cond.c
|
||||||
|
00093 c/sp_cond_colon.cfg c/cond.c
|
||||||
|
|
||||||
|
00101 c/ben_061.cfg c/bugs-1.c
|
||||||
|
00102 c/space_indent_columns-3.cfg c/bugs-2.c
|
||||||
|
00103 c/ben_063.cfg c/bugs-3.c
|
||||||
|
00104 c/ben_064.cfg c/bugs-4.c
|
||||||
|
00105 c/ben_065.cfg c/bugs-5.c
|
||||||
|
00106 common/ben_011.cfg c/bugs-6.c
|
||||||
|
00107 common/ben_011.cfg c/bugs-7.c
|
||||||
|
00108 common/indent_columns-3.cfg c/bugs-8.c
|
||||||
|
|
||||||
|
00110 c/ben_069.cfg c/misc.c
|
||||||
|
00111 c/brace-kr-br.cfg c/misc.c
|
||||||
|
|
||||||
|
00120 c/sp_cmt_cpp_start-r.cfg c/sp_cmt_cpp_start.c
|
||||||
|
00121 common/sp_cmt_cpp_start-a.cfg c/sp_cmt_cpp_start.c
|
||||||
|
00122 common/sp_cmt_cpp_start_force.cfg c/sp_cmt_cpp_start.c
|
||||||
|
00123 c/cmt_reflow.cfg c/cmt_reflow.c
|
||||||
|
|
||||||
|
00130 c/ben_070.cfg c/minus-minus.c
|
||||||
|
00135 c/nepenthes.cfg c/br_cmt.c
|
||||||
|
|
||||||
|
00140 c/ben_071.cfg c/global-vars.c
|
||||||
|
00141 c/ben_072.cfg c/deref.c
|
||||||
|
00142 c/ben_073.cfg c/type-cast.c
|
||||||
|
00143 c/ben_074.cfg c/t3.in.c
|
||||||
|
00144 c/ben_075.cfg c/align-proto-vars.c
|
||||||
|
00145 c/ben_076.cfg c/vardefcol.c
|
||||||
|
|
||||||
|
|
||||||
|
# casts
|
||||||
|
|
||||||
|
00150 c/ben_077.cfg c/casts.c
|
||||||
|
00151 c/cast-sp-r.cfg c/casts.c
|
||||||
|
00152 c/cast-sp-a.cfg c/casts.c
|
||||||
|
00153 c/cast-type.cfg c/casts.c
|
||||||
|
00154 common/sp_after_cast.cfg c/casts.c
|
||||||
|
00155 c/ben_078.cfg c/cast_brace.c
|
||||||
|
|
||||||
|
|
||||||
|
# fcn indents
|
||||||
|
|
||||||
|
00160 c/indent_func_param.cfg c/fcn_indent.c
|
||||||
|
00161 c/indent_func_call_param.cfg c/fcn_indent.c
|
||||||
|
00162 c/indent_func_def_param.cfg c/fcn_indent.c
|
||||||
|
00163 c/indent_func_proto_param.cfg c/fcn_indent.c
|
||||||
|
00164 c/rdan.cfg c/fcn_indent_func_def_col1.c
|
||||||
|
00165 c/sp_func_call_user_inside_fparen.cfg c/sp_func_call_user_inside_fparen.c
|
||||||
|
|
||||||
|
00170 common/empty.cfg c/beautifier-off.c
|
||||||
|
00180 c/sf538.cfg c/lvalue.c
|
||||||
|
|
||||||
|
|
||||||
|
# switch & case stuff
|
||||||
|
|
||||||
|
00201 c/case-1.cfg c/case.c
|
||||||
|
00202 c/case-2.cfg c/case.c
|
||||||
|
00203 c/case-3.cfg c/case.c
|
||||||
|
00204 c/bug_1718.cfg c/bug_1718.c
|
||||||
|
00205 c/nl_before_return_false.cfg c/case-nl_before_return.c
|
||||||
|
00206 c/nl_before_return_true.cfg c/case-nl_before_return.c
|
||||||
|
00207 common/nl_before_ignore_after_case.cfg c/nl_before_ignore_after_case.c
|
||||||
|
|
||||||
|
|
||||||
|
# structure initializers
|
||||||
|
|
||||||
|
00301 c/ben_079.cfg c/align-struct-init.c
|
||||||
|
00302 c/ben_080.cfg c/one-liner-init.c
|
||||||
|
00303 c/1liner-split.cfg c/one-liner-init.c
|
||||||
|
00304 c/1liner-no-split.cfg c/one-liner-init.c
|
||||||
|
00305 c/ben_081.cfg c/one-liner-define.c
|
||||||
|
|
||||||
|
00310 common/empty.cfg c/sp_embed_comment.c
|
||||||
|
|
||||||
|
00320 c/rdan.cfg c/indent_first_bool_expr.c
|
||||||
|
|
||||||
|
|
||||||
|
# aligning tresholds
|
||||||
|
|
||||||
|
00401 common/align-1.cfg c/align-equ.c
|
||||||
|
00402 common/align-1.cfg c/align-var.c
|
||||||
|
00403 c/align-2.cfg c/align-var.c
|
||||||
|
00404 c/align-3.cfg c/align-var.c
|
||||||
|
00405 c/align-3.cfg c/bits.c
|
||||||
|
00406 c/bug_i_771.cfg c/bug_i_771.c
|
||||||
|
|
||||||
|
00411 c/align_typedef_gap-3_span-5.cfg c/align-typedef.c
|
||||||
|
00412 c/align_typedef_gap-3_span-5.cfg c/align-typedef.c
|
||||||
|
00413 c/align_typedef_func-1.cfg c/align-typedef.c
|
||||||
|
00414 c/align_typedef_func-2.cfg c/align-typedef.c
|
||||||
|
00415 c/align_stack.cfg c/align_stack.c
|
||||||
|
00416 c/align_sf_call_thresh_416.cfg c/align_sf_call_thresh_416.c
|
||||||
|
00417 c/align_sf_call_thresh_417.cfg c/align_sf_call_thresh_417.c
|
||||||
|
00418 c/align_sf_call_span_418.cfg c/align_sf_call_span_418.c
|
||||||
|
00419 c/align_sf_call_span_419.cfg c/align_sf_call_span_419.c
|
||||||
|
00420 c/Issue-2278.cfg c/Issue-2278.c
|
||||||
|
|
||||||
|
00421 c/nl_ds_struct_enum_cmt-t.cfg c/nl_ds_struct_enum.c
|
||||||
|
00422 c/nl_ds_struct_enum-2.cfg c/nl_ds_struct_enum.c
|
||||||
|
00423 c/bug_1702.cfg c/bug_1702.c
|
||||||
|
|
||||||
|
00430 common/empty.cfg c/paren-indent.c
|
||||||
|
00431 c/indent_paren_close-1.cfg c/paren-indent.c
|
||||||
|
00432 c/indent_paren_close-2.cfg c/paren-indent.c
|
||||||
|
|
||||||
|
00440 c/bug_489.cfg c/bug_489.c
|
||||||
|
|
||||||
|
00451 c/code_width-80.cfg c/enum_gallery.c
|
||||||
|
00452 c/nl_enum_own_lines-a.cfg c/enum_gallery.c
|
||||||
|
00453! c/nl_enum_own_lines-3.cfg c/enum_gallery.c
|
||||||
|
00454 c/nl_enum_own_lines-4.cfg c/enum_gallery.c
|
||||||
|
|
||||||
|
00461 c/align_func_proto_star_amp-1.cfg c/align_func_proto_star_amp.h
|
||||||
|
00462 c/align_func_proto_star_amp-2.cfg c/align_func_proto_star_amp.h
|
||||||
|
00463 c/align_func_proto_star_amp-3.cfg c/align_func_proto_star_amp.h
|
||||||
|
00464 c/align_func_proto_star_amp-4.cfg c/align_func_proto_star_amp.h
|
||||||
|
00465 c/align_func_proto_star_amp-5.cfg c/align_func_proto_star_amp.h
|
||||||
|
00466 c/align_func_proto_star_amp-6.cfg c/align_func_proto_star_amp.h
|
||||||
|
00467 c/align_func_proto_star_amp-7.cfg c/align_func_proto_star_amp.h
|
||||||
|
00468 c/align_func_proto_star_amp-8.cfg c/align_func_proto_star_amp.h
|
||||||
|
00469 c/align_func_proto_star_amp-9.cfg c/align_func_proto_star_amp.h
|
||||||
|
|
||||||
|
# boolean and comma positioning
|
||||||
|
|
||||||
|
00501 c/bool-pos-eol.cfg c/bool-pos.c
|
||||||
|
00502 c/bool-pos-sol.cfg c/bool-pos.c
|
||||||
|
00503 c/pos_compare-sol.cfg c/pos_compare.c
|
||||||
|
00504 c/pos_compare-eol.cfg c/pos_compare.c
|
||||||
|
00505 c/pos_conditional-l.cfg c/pos_conditional.c
|
||||||
|
00506 c/pos_conditional-t.cfg c/pos_conditional.c
|
||||||
|
00510 c/bool-pos-eol-break.cfg c/bool-pos.c
|
||||||
|
00511 c/bool-pos-sol-break.cfg c/bool-pos.c
|
||||||
|
00512 common/bool-pos-eol-force.cfg c/bool-pos.c
|
||||||
|
00513 c/bool-pos-sol-force.cfg c/bool-pos.c
|
||||||
|
00514 c/my_conf.cfg c/my_infile.c
|
||||||
|
|
||||||
|
00600 common/indent_columns-3.cfg c/dos.c
|
||||||
|
00601 common/indent_columns-3.cfg c/mac.c
|
||||||
|
00611 common/empty.cfg c/pp-space.c
|
||||||
|
00612 c/pp-indent-2.cfg c/pp-space.c
|
||||||
|
00613 c/pp_indent-a.cfg c/pp-space.c
|
||||||
|
00614 c/pp-space.cfg c/pp-space.c
|
||||||
|
00615 c/pp-indent-2.cfg c/pp-nest.c
|
||||||
|
00616 c/pp_if_indent-1.cfg c/pp-if-indent.c
|
||||||
|
00617 c/rdan.cfg c/pp-if-indent.c
|
||||||
|
00618 c/pp_if_indent-4.cfg c/pp-if-indent.c
|
||||||
|
00619 c/Issue_3169.cfg c/Issue_3169.c
|
||||||
|
|
||||||
|
00620 c/ben_083.cfg c/indent-assign.c
|
||||||
|
00621 c/nl_endif.cfg c/nl_endif.c
|
||||||
|
00622 c/indent_assign.cfg c/indent-off-after-assign.c
|
||||||
|
|
||||||
|
00631 c/nl_assign1.cfg c/nl_assign.c
|
||||||
|
00632 c/nl_assign2.cfg c/nl_assign.c
|
||||||
|
00633 c/nl_assign1.cfg c/bug_3156.c
|
||||||
|
|
||||||
|
# function def newlines
|
||||||
|
00701 common/func-def-1.cfg c/function-def.c
|
||||||
|
00702 common/func-def-2.cfg c/function-def.c
|
||||||
|
00703 common/func-def-3.cfg c/function-def.c
|
||||||
|
|
||||||
|
00710 c/add_long_closebrace_comment_1.cfg c/add_long_comment.c
|
||||||
|
|
||||||
|
# nl_after_semicolon and nl_after_open_brace
|
||||||
|
|
||||||
|
00721 c/nl_semicolon.cfg c/nl-semicolon.c
|
||||||
|
|
||||||
|
# function types
|
||||||
|
|
||||||
|
00801 c/ben_084.cfg c/fcn_type.c
|
||||||
|
00802 c/ben_085.cfg c/funcfunc.c
|
||||||
|
00803 c/sf537.cfg c/fcn_type.c
|
||||||
|
|
||||||
|
# code width
|
||||||
|
|
||||||
|
00901 c/width.cfg c/code_width.c
|
||||||
|
00902 common/width-2.cfg c/code_width.c
|
||||||
|
00903 c/width-3.cfg c/code_width.c
|
||||||
|
|
||||||
|
# pascal ptr_type
|
||||||
|
|
||||||
|
00910 c/pascal_ptr.cfg c/pascal_ptr.c
|
||||||
|
00911 c/empty_body.cfg c/pascal_ptr.c
|
||||||
|
|
||||||
|
01000 c/mod-paren.cfg c/mod-paren.c
|
||||||
|
01001 c/nl-comment.cfg c/nl-comment.c
|
||||||
|
01002 c/mod-paren2.cfg c/mod-paren.c
|
||||||
|
|
||||||
|
01005 c/mod_case_brace_add.cfg c/mod_case_brace.c
|
||||||
|
01006 common/mod_case_brace_rm.cfg c/mod_case_brace.c
|
||||||
|
01007 c/mod_move_case_brace.cfg c/mod_case_brace.c
|
||||||
|
01008 c/mod_case_brace_add.cfg c/Issue_3366.c
|
||||||
|
|
||||||
|
01011 common/del_semicolon.cfg c/semicolons.c
|
||||||
|
01012 c/ben_086.cfg c/semicolons.c
|
||||||
|
|
||||||
|
01015 common/empty.cfg c/paren_indent.c
|
||||||
|
01016 c/align_attr.cfg c/align_attr.c
|
||||||
|
|
||||||
|
01020 common/kw_subst.cfg c/kw_subst.c
|
||||||
|
01021 common/kw_subst3.cfg c/hello.c
|
||||||
|
01022 common/kw_subst3.cfg c/kw_subst.c
|
||||||
|
|
||||||
|
01030 c/cmt_indent_multi-f.cfg c/multi.h
|
||||||
|
|
||||||
|
01035 common/empty.cfg c/func_wrap.c
|
||||||
|
01036 common/sp_inside_fparen-f.cfg c/func_wrap.c
|
||||||
|
01037 c/type_wrap.cfg c/type_wrap.c
|
||||||
|
|
||||||
|
01040 c/newline_after_endif.cfg c/newline_after_endif.c
|
||||||
|
|
||||||
|
01050 c/func_call_user.cfg c/func_call_user.c
|
||||||
|
|
||||||
|
01060 common/empty.cfg c/backslash-newline-lex.c
|
||||||
|
|
||||||
|
01070 c/label_colon_nl_1.cfg c/various_colons.c
|
||||||
|
01071 c/label_colon_nl_2.cfg c/various_colons.c
|
||||||
|
|
||||||
|
01080 common/empty.cfg c/bug_1196.c
|
||||||
|
|
||||||
|
# big general tests
|
||||||
|
|
||||||
|
02000 c/ben_087.cfg c/i2c-core.c
|
||||||
|
02001 c/preproc-cleanup.cfg c/directfb.h
|
||||||
|
02002 common/ben2.cfg c/i2c-core.c
|
||||||
|
|
||||||
|
# clark's style - blank lines before and after flow control, indented comments
|
||||||
|
|
||||||
|
02100 common/clark.cfg c/i2c-core.c
|
||||||
|
02101 common/clark.cfg c/comment-indent.c
|
||||||
|
|
||||||
|
02200 c/xml-str.cfg c/xml.c
|
||||||
|
02201 c/xml-str.cfg c/align-string.c
|
||||||
|
|
||||||
|
02300 c/ben_088.cfg c/preproc-if.c
|
||||||
|
02301 common/d.cfg c/preproc-if.c
|
||||||
|
02302 c/cpp_to_c-1.cfg c/nl-cont.c
|
||||||
|
02303 c/cpp_to_c-1.cfg c/nl-cont2.c
|
||||||
|
|
||||||
|
02310 c/ben_089.cfg c/empty-for.c
|
||||||
|
02311 c/ben_090.cfg c/pragma.c
|
||||||
|
|
||||||
|
02315 c/pp_ret.cfg c/pp_ret.c
|
||||||
|
|
||||||
|
02320 c/nl_create_one_liner.cfg c/nl_create_one_liner.c
|
||||||
|
02325 common/sort_imports.cfg c/sort_include.c
|
||||||
|
|
||||||
|
02330 c/leave_one_liners.cfg c/one_liners.c
|
||||||
|
|
||||||
|
# some embedded sql stuff
|
||||||
|
|
||||||
|
02400 c/ben_091.cfg sql/mysql.sqc C
|
||||||
|
02401 c/ben_092.cfg sql/sta-select.sqc C
|
||||||
|
02402 c/issue_527.cfg sql/issue_527.sqc C
|
||||||
|
|
||||||
|
02410 c/pp_if_indent-0.cfg c/ifdef-indent.c
|
||||||
|
02411 c/pp_if_indent-1.cfg c/ifdef-indent.c
|
||||||
|
02412 c/pp_if_indent-2.cfg c/ifdef-indent.c
|
||||||
|
02413 c/pp_if_indent-3.cfg c/ifdef-indent.c
|
||||||
|
02414 c/nl_whole_file_ifdef.cfg c/whole_file_ifdef.c
|
||||||
|
02415 c/endif.cfg c/endif.c
|
||||||
|
02416 c/cmt_nl_end.cfg c/cmt_nl_end.c
|
||||||
|
|
||||||
|
02421 c/cmt_multi_check_last-f.cfg c/cmt_multi.c
|
||||||
|
02422 common/empty.cfg c/cmt_multi.c
|
||||||
|
02423 common/empty.cfg c/cmt_multi_utf8.c
|
||||||
|
|
||||||
|
02431 c/align_right_cmt_gap-1.cfg c/cmt_right_align.c
|
||||||
|
02432 c/space_indent_columns-3.cfg c/cmt_right_align.c
|
||||||
|
|
||||||
|
02440 common/empty.cfg c/string_utf8.c
|
||||||
|
02441 common/empty.cfg c/utf8-identifiers.c
|
||||||
|
|
||||||
|
02451 c/return-1.cfg c/nl_return_expr.c
|
||||||
|
02452 c/return-2.cfg c/nl_return_expr.c
|
||||||
|
02453 c/return-3.cfg c/nl_return_expr.c
|
||||||
|
02454 c/return-4.cfg c/nl_return_expr.c
|
||||||
|
|
||||||
|
02455 common/mod_paren_on_return-a.cfg c/macro-returns.c
|
||||||
|
02456 common/mod_paren_on_return-r.cfg c/macro-returns.c
|
||||||
|
02457 c/nl_before_return_true.cfg c/nl_before_return.c
|
||||||
|
|
||||||
|
02460 c/freebsd.cfg c/freebsd.c
|
||||||
|
|
||||||
|
02486 c/doxy-comment-no.cfg c/doxy-comment.c
|
||||||
|
02487 c/doxy-comment-yes.cfg c/doxy-comment.c
|
||||||
|
|
||||||
|
02501 c/ger.cfg c/custom_types_ssl.c
|
||||||
|
02502 c/custom_types_ssl.cfg c/custom_types_ssl.c
|
||||||
|
#02503 ger.cfg c/pp_concat_asn1.h
|
||||||
|
|
||||||
|
02504 c/align_keep_extra.cfg c/align_keep_extra.c
|
||||||
|
|
||||||
|
02510 c/ben_093.cfg c/asm.c
|
||||||
|
|
||||||
|
07630 c/indent-vbrace.cfg c/indent-vbrace.c
|
||||||
|
|
||||||
|
08399 c/ben_095.cfg c/gh399.c
|
||||||
|
|
||||||
|
09594 common/indent_columns-3.cfg c/sf594.c
|
||||||
|
09588 common/empty.cfg c/sf588.c
|
||||||
|
|
||||||
|
09601 c/sp_after_sparen.cfg c/sp_after_sparen.c
|
||||||
|
09602 common/bug_671.cfg c/bug_671.c
|
||||||
|
09603 c/indent_ternary_operator-1.cfg c/indent_ternary-1.c
|
||||||
|
09604 c/indent_ternary_operator-2.cfg c/indent_ternary-2.c
|
||||||
|
09605 common/sp_arith-f.cfg c/negative_value.c
|
||||||
|
09606 c/ptr-arith.cfg c/extern.c
|
||||||
|
09607 c/ptr-arith.cfg c/attribute.c
|
||||||
|
09608 common/aet-func_call_user.cfg c/func_call_user2.c
|
||||||
|
09609 c/Issue_2279.cfg c/Issue_2279.c
|
||||||
|
|
||||||
|
09610 c/force_tab_after_define-t.cfg c/bug_i_876.c
|
||||||
|
09611 common/space_indent_columns-4.cfg c/bug_i_222.c
|
||||||
|
09612 common/empty.cfg c/bug_1041.c
|
||||||
|
09613 common/empty.cfg c/i1413.c
|
||||||
|
09614 common/empty.cfg c/string_prefixes.c
|
||||||
|
09615 c/i1564.cfg c/i1564.c
|
||||||
|
09616 c/enum_comma_ifdef.cfg c/enum_comma_ifdef.c
|
||||||
|
09617 c/Issue_2360-a.cfg c/Issue_2360.c
|
||||||
|
09618 c/Issue_2360-b.cfg c/Issue_2360.c
|
||||||
|
09619 c/Issue_2411.cfg c/Issue_2411.c
|
||||||
|
|
||||||
|
09620 c/Issue_2640.cfg c/Issue_2640.c
|
||||||
|
09621 c/preproc-cleanup.cfg c/pp-before-func-def.c
|
||||||
|
09622 c/Issue_3356.cfg c/Issue_3356.c
|
||||||
|
|
||||||
|
10004 c/ben_094.cfg c/pragma_asm.c
|
||||||
|
10005 common/empty.cfg c/i1270.c
|
||||||
|
10006 c/bug_2331.cfg c/bug_2331.c
|
||||||
|
10007 c/indent_macro_brace-true.cfg c/indent-macro-brace.c
|
||||||
|
10008 c/indent_macro_brace-false.cfg c/indent-macro-brace.c
|
||||||
|
10009 common/empty.cfg c/return-compound-literal.c
|
||||||
|
|
||||||
|
10010 c/indent_compound_literal_return-false.cfg c/return-compound-literal.c
|
||||||
|
10011 c/indent_compound_literal_return-true.cfg c/return-compound-literal.c
|
||||||
|
10012 c/indent_sparen_extra-8.cfg c/sparen-indent.c
|
||||||
|
10013 common/empty.cfg c/sparen-indent.c
|
||||||
|
10014 common/indent_continue-8.cfg c/sparen-indent.c
|
||||||
|
10015 common/empty.cfg c/Issue_2845.h
|
||||||
|
10016 c/Issue_3233.cfg c/Issue_3233.c
|
||||||
|
10017 c/sp_sparen_paren-a.cfg c/double-sparen.c
|
||||||
|
10018 c/sp_sparen_paren-i.cfg c/double-sparen.c
|
||||||
|
10019 c/pp_indent_in_guard.cfg c/include-guard.h
|
||||||
|
10020 c/indent_single_line_comments_after.cfg c/single_line_comment_after.c
|
||||||
|
10021 common/sp_cparen_oparen-f.cfg c/parenthesized_indirect_call.c
|
||||||
|
10022 c/Issue_3269.cfg c/Issue_3269.c
|
||||||
|
10023 c/Issue_3272.cfg c/Issue_3272.h
|
||||||
|
10024 c/Issue_3274.cfg c/Issue_3274.c
|
||||||
|
10025 c/sp_between_semi_for_empty-r.cfg c/forever.c
|
||||||
|
10026 c/sp_between_semi_for_empty-i.cfg c/forever.c
|
||||||
|
10027 c/Issue_3327.cfg c/Issue_3327.c
|
||||||
|
10028 c/sp_emb_cmt-i.cfg c/Issue_3339.c
|
||||||
|
10029 c/sp_emb_cmt-f.cfg c/Issue_3339.c
|
||||||
|
10030 c/sp_emb_cmt-r.cfg c/Issue_3339.c
|
||||||
|
10031 c/sp_after_pointer_star-r.cfg c/Issue_3342.c
|
||||||
|
10032 c/sp_after_pointer_star-r.cfg c/Issue_3345.c
|
||||||
|
10033 c/pp_include_at_level-true.cfg c/Issue_3343.c
|
||||||
|
10034 c/pp_include_at_level-false.cfg c/Issue_3343.c
|
||||||
|
10035 c/indent_comment_align_thresh-0.cfg c/comment-indent.c
|
||||||
|
10036 c/Issue_3350.cfg c/comment-indent.c
|
||||||
|
10037 c/indent_case_comment-true.cfg c/Issue_3362.c
|
||||||
|
10038 c/indent_case_comment-false.cfg c/Issue_3362.c
|
||||||
|
10039 c/Issue_3370.cfg c/Issue_3370.c
|
||||||
|
10040 c/Issue_3377.cfg c/Issue_3377.c
|
||||||
|
10041 c/Issue_3351.cfg c/Issue_3351.c
|
||||||
|
10042 c/sp_ptr_star_func_var-i.cfg c/Issue_3376.c
|
||||||
|
10043 c/sp_ptr_star_func_var-a.cfg c/Issue_3376.c
|
||||||
|
10044 c/sp_ptr_star_func_var-r.cfg c/Issue_3376.c
|
||||||
|
10045 c/sp_ptr_star_func_var-f.cfg c/Issue_3376.c
|
@ -0,0 +1 @@
|
|||||||
|
cmt_insert_file_header = copyright-header.txt
|
@ -0,0 +1,2 @@
|
|||||||
|
// Copyright $(year)
|
||||||
|
|
@ -1 +1,2 @@
|
|||||||
|
input/I-3310.c
|
||||||
input/backup.h
|
input/backup.h
|
@ -0,0 +1,23 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
<title>Uncrustify: where do the Spaces options work</title>
|
||||||
|
</head>
|
||||||
|
<body lang="en-US">
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
|
<pre>
|
||||||
|
{<a title="1,REMOVE"><font color="red">M</font></a>
|
||||||
|
a<a title="2,sp_assign"><font color="red">M</font></a>=<a title="3,86,sp_assign"><font color="red">M</font></a>b<a title="4,87,93,sp_arith"><font color="red">M</font></a>+<a title="5,88,94,99,sp_arith"><font color="red">M</font></a>111<a title="6,89,95,100,104,sp_arith"><font color="red">M</font></a>-<a title="7,90,96,101,105,108,sp_arith"><font color="red">M</font></a>55<a title="8,91,97,102,106,109,111,sp_before_semi"><font color="red">M</font></a>;<a title="9,92,98,103,107,110,112,113,REMOVE"><font color="red">M</font></a>
|
||||||
|
}<a title="10,REMOVE"><font color="red">M</font></a>
|
||||||
|
template<a title="11,sp_before_angle"><font color="red">M</font></a><<a title="12,114,sp_inside_angle"><font color="red">M</font></a>typename<a title="13,115,123,ADD from add_space_table"><font color="red">M</font></a>...<a title="14,116,124,131,sp_ellipsis_parameter_pack"><font color="red">M</font></a>A<a title="15,117,125,132,138,sp_before_comma"><font color="red">M</font></a>,<a title="16,118,126,133,139,144,sp_after_comma"><font color="red">M</font></a>int<a title="17,119,127,134,140,145,149,sp_type_ellipsis"><font color="red">M</font></a>...<a title="18,120,128,135,141,146,150,153,FORCE"><font color="red">M</font></a>B<a title="19,121,129,136,142,147,151,154,156,sp_inside_angle"><font color="red">M</font></a>><a title="20,122,130,137,143,148,152,155,157,158,REMOVE"><font color="red">M</font></a>
|
||||||
|
struct<a title="21,ADD from add_space_table"><font color="red">M</font></a>foo1<a title="22,159,sp_after_type"><font color="red">M</font></a>:<a title="23,160,177,ADD from add_space_table"><font color="red">M</font></a>foo1<a title="24,161,178,194,sp_before_angle"><font color="red">M</font></a><<a title="25,162,179,195,210,sp_inside_angle"><font color="red">M</font></a>A<a title="26,163,180,196,211,225,sp_parameter_pack_ellipsis"><font color="red">M</font></a>...<a title="27,164,181,197,212,226,239,sp_before_comma"><font color="red">M</font></a>,<a title="28,165,182,198,213,227,240,252,sp_after_comma"><font color="red">M</font></a>(<a title="29,166,183,199,214,228,241,253,264,sp_inside_paren"><font color="red">M</font></a>sizeof<a title="30,167,184,200,215,229,242,254,265,275,sp_sizeof_ellipsis"><font color="red">M</font></a>...<a title="31,168,185,201,216,230,243,255,266,276,285,sp_sizeof_ellipsis_paren"><font color="red">M</font></a>(<a title="32,169,186,202,217,231,244,256,267,277,286,294,sp_inside_paren"><font color="red">M</font></a>A<a title="33,170,187,203,218,232,245,257,268,278,287,295,302,sp_inside_paren"><font color="red">M</font></a>)<a title="34,171,188,204,219,233,246,258,269,279,288,296,303,309,sp_arith"><font color="red">M</font></a>+<a title="35,172,189,205,220,234,247,259,270,280,289,297,304,310,315,sp_arith"><font color="red">M</font></a>B<a title="36,173,190,206,221,235,248,260,271,281,290,298,305,311,316,320,sp_inside_paren"><font color="red">M</font></a>)<a title="37,174,191,207,222,236,249,261,272,282,291,299,306,312,317,321,324,sp_paren_ellipsis"><font color="red">M</font></a>...<a title="38,175,192,208,223,237,250,262,273,283,292,300,307,313,318,322,325,327,sp_inside_angle"><font color="red">M</font></a>><a title="39,176,193,209,224,238,251,263,274,284,293,301,308,314,319,323,326,328,329,REMOVE"><font color="red">M</font></a>
|
||||||
|
{<a title="40,REMOVE"><font color="red">M</font></a>
|
||||||
|
foo1<a title="41,64,sp_func_class_paren"><font color="red">M</font></a>(<a title="42,65,330,sp_inside_fparens"><font color="red">M</font></a>)<a title="43,66,331,333,sp_fparen_brace"><font color="red">M</font></a>{<a title="44,67,332,334,335,REMOVE"><font color="red">M</font></a>
|
||||||
|
int<a title="45,68,sp_after_type"><font color="red">M</font></a>x<a title="46,69,336,sp_assign"><font color="red">M</font></a>=<a title="47,70,337,344,sp_assign"><font color="red">M</font></a>sizeof<a title="48,71,338,345,351,sp_sizeof_ellipsis"><font color="red">M</font></a>...<a title="49,72,339,346,352,357,sp_sizeof_ellipsis_paren"><font color="red">M</font></a>(<a title="50,73,340,347,353,358,362,sp_inside_paren"><font color="red">M</font></a>A<a title="51,74,341,348,354,359,363,366,sp_inside_paren"><font color="red">M</font></a>)<a title="52,75,342,349,355,360,364,367,369,sp_before_semi"><font color="red">M</font></a>;<a title="53,76,343,350,356,361,365,368,370,371,REMOVE"><font color="red">M</font></a>
|
||||||
|
bool<a title="54,77,sp_after_type"><font color="red">M</font></a>b<a title="55,78,372,sp_assign"><font color="red">M</font></a>=<a title="56,79,373,378,sp_assign"><font color="red">M</font></a>x<a title="57,80,374,379,383,sp_compare"><font color="red">M</font></a>><a title="58,81,375,380,384,387,sp_compare"><font color="red">M</font></a>1<a title="59,82,376,381,385,388,390,sp_before_semi"><font color="red">M</font></a>;<a title="60,83,377,382,386,389,391,392,REMOVE"><font color="red">M</font></a>
|
||||||
|
}<a title="61,84,REMOVE"><font color="red">M</font></a>
|
||||||
|
}<a title="62,sp_before_semi"><font color="red">M</font></a>;<a title="63,393,REMOVE"><font color="red">M</font></a>
|
||||||
|
</pre>
|
||||||
|
</body>
|
||||||
|
</html>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue