Searched refs:check_name_camel (Results 1 – 2 of 2) sorted by relevance
/external/llvm-project/clang-tools-extra/clang-tidy/ |
D | add_new_check.py | 21 def adapt_cmake(module_path, check_name_camel): argument 26 cpp_file = check_name_camel + '.cpp' 50 def write_header(module_path, module, namespace, check_name, check_name_camel): argument 52 filename = os.path.join(module_path, check_name_camel) + '.h' 56 + check_name_camel.upper() + '_H') 97 'check_name': check_name_camel, 104 def write_implementation(module_path, module, namespace, check_name_camel): argument 105 filename = os.path.join(module_path, check_name_camel) + '.cpp' 150 """ % {'check_name': check_name_camel, 156 def adapt_module(module_path, module, check_name, check_name_camel): argument [all …]
|
D | rename_check.py | 102 def adapt_cmake(module_path, check_name_camel): argument 107 cpp_file = check_name_camel + '.cpp' 130 def adapt_module(module_path, module, check_name, check_name_camel): argument 141 check_decl = (' CheckFactories.registerCheck<' + check_name_camel + 149 if match.group(1) > check_name_camel: 151 f.write(('#include "' + check_name_camel + '.h"\n').encode()) 154 f.write(('#include "' + check_name_camel + '.h"\n').encode()) 162 if match and match.group(1) > check_name_camel: 230 check_name_camel = args.check_class_name 232 check_name_camel = (''.join(map(lambda elem: elem.capitalize(), [all …]
|