Lines Matching refs:f
59 with open(file, 'r', encoding='utf-8') as f:
60 data = f.read().replace('\n', '')
80 with open(file, 'r', encoding='utf-8') as f:
81 data = f.read().replace('\n', '')
103 for f in files:
104 if fnmatch.fnmatch(f, glob):
105 yield os.path.join(path, f)
108 for f in path_args:
109 if os.path.isdir(f):
110 for filename in glob_without_symlinks(f, "*.c"):
113 yield f
129 for f in files_to_parse(args.cfile):
130 compat_ignore_list.extend(parse_compatibles_to_ignore(f))
132 for f in files_to_parse(args.cfile):
133 compat_list = parse_compatibles(f, compat_ignore_list)
134 print_compat(f, compat_list)