Lines Matching +full:re +full:-
2 # SPDX-License-Identifier: GPL-2.0
9 import re
14 parser.add_argument("-v", "--verbose", action="store_true",
27 match = re.match(macro_pattern, macro_line)
29 macro_def = re.sub(macro_pattern, '', macro_line)
42 if (re.match(fp_pattern, macro_def)):
54 print(f"Argument {arg} is not used in function-line macro {identifier}")
66 macro = re.sub(comment_pattern1, '', macro)
67 macro = re.sub(comment_pattern2, '', macro)
88 cond_compile -= 1
91 macro = re.match(macro_pattern, line)
94 while macro[-1] == '\\':
95 macro = macro[0:-1]