Lines Matching refs:methods
270 def has_method_in_file(test_path, methods): argument
286 _methods = set(re.sub(r'\[\S+\]', '', x) for x in methods)
308 methods)[0], methods)
314 _methods = set(re.sub(r'\/.*', '', x) for x in methods)
321 def extract_test_path(output, methods=None): argument
344 if not methods or match_obj.group('method_name') in methods:
347 elif not methods or has_method_in_file(test, methods):
458 def run_find_cmd(ref_type, search_dir, target, methods=None): argument
506 return extract_test_path(out, methods)
509 def find_class_file(search_dir, class_name, is_native_test=False, methods=None): argument
528 return run_find_cmd(ref_type, search_dir, class_name, methods)
901 def get_cc_filter(class_name, methods): argument
912 if methods:
913 sorted_methods = sorted(list(methods))
1092 methods = {match[1] for match in matches}
1093 logging.debug('Available methods: %s', methods)
1094 return methods
1108 methods = set()
1119 methods.update([match[2]])
1128 return classes, methods, para_classes
1161 methods = set()
1172 methods.update({match[1] for match in matches})
1175 return methods