Lines Matching refs:globs
78 directive = Directive(who='*', globs=[])
80 (who, globs) = line.split(' ', 1)
81 globs_list = [glob for glob in globs.split(' ') if glob]
82 directive = Directive(who=who, globs=globs_list)
84 directive = Directive(who=line, globs=[])
150 globs = collections.OrderedDict()
153 for glob in directive.globs or ['**']:
154 if glob not in globs:
155 globs[glob] = []
156 if directive.who not in globs[glob]:
157 globs[glob].append(directive.who)
160 globs.keys(),
165 who_add = globs[glob_add]
182 def add_parent_to_globs(parent, globs, globs_dir): argument
188 for gglob, gglob_who in globs.items():
198 globs[os.path.relpath(f, start=globs_dir)] = who
202 add_parent_to_globs(owners.parent, globs, globs_dir)
219 globs = expand_directives(head.dir, head.directives) variable
220 add_parent_to_globs(head.parent, globs, head.dir)
221 for glob, owners in globs.items():