Lines Matching full:ignore
68 parser.add_argument('-i', '--ignore', dest='ignore', action='store',
70 help="ignore files matching this Python regex "
100 "'--force' if you\nwant to ignore this warning and "
109 if args.ignore:
111 re.match(args.ignore, "this/is/just/a/test.c")
126 sims = find_sims(args.sim, args.ignore)
155 undefined_a, _ = check_symbols(args.ignore)
159 undefined_b, defined = check_symbols(args.ignore)
179 undefined, defined = check_symbols(args.ignore)
188 sims = find_sims(symbol, args.ignore, defined)
266 """Set signal handler to ignore SIGINT."""
270 def find_sims(symbol, ignore, defined=[]): argument
284 arglist.append((part, ignore))
309 def check_symbols(ignore): argument
311 and a list of referencing files as value. Files matching %ignore are not
315 return check_symbols_helper(pool, ignore)
322 def check_symbols_helper(pool, ignore): argument
334 if ignore and re.match(ignore, gitfile):
336 # add source files that do not match the ignore pattern
347 arglist.append((part, ignore))
415 symbols. Note, @args is a tuple of a list of files and the @ignore
418 ignore = args[1]
425 if ignore and re.match(ignore, kfile):
426 # do not collect references for files that match the ignore pattern
447 line = line.split("#")[0] # ignore comments
463 # ignore numeric values