Lines Matching refs:ignore
107 if args.ignore:
109 re.match(args.ignore, "this/is/just/a/test.c")
124 sims = find_sims(args.sim, args.ignore)
153 undefined_a, _ = check_symbols(args.ignore)
157 undefined_b, defined = check_symbols(args.ignore)
177 undefined, defined = check_symbols(args.ignore)
186 sims = find_sims(symbol, args.ignore, defined)
268 def find_sims(symbol, ignore, defined=[]): argument
282 arglist.append((part, ignore))
307 def check_symbols(ignore): argument
313 return check_symbols_helper(pool, ignore)
320 def check_symbols_helper(pool, ignore): argument
332 if ignore and not re.match(ignore, gitfile):
345 arglist.append((part, ignore))
416 ignore = args[1]
423 if ignore and re.match(ignore, kfile):