Lines Matching refs:globs
77 directive = Directive(who='*', globs=[])
79 (who, globs) = line.split(' ', 1)
80 globs_list = [glob for glob in globs.split(' ') if glob]
81 directive = Directive(who=who, globs=globs_list)
83 directive = Directive(who=line, globs=[])
147 globs = collections.OrderedDict()
150 for glob in directive.globs or ['**']:
151 if glob not in globs:
152 globs[glob] = []
153 if directive.who not in globs[glob]:
154 globs[glob].append(directive.who)
156 sorted_globs = sorted(globs.keys(),
161 who_add = globs[glob_add]
178 def add_parent_to_globs(parent, globs, globs_dir): argument
184 for gglob, gglob_who in globs.items():
194 globs[os.path.relpath(f, start=globs_dir)] = who
198 add_parent_to_globs(owners.parent, globs, globs_dir)
215 globs = expand_directives(head.dir, head.directives) variable
216 add_parent_to_globs(head.parent, globs, head.dir)
217 for glob, owners in globs.items():