Lines Matching full:ignore
69 parser.add_argument('-i', '--ignore', dest='ignore', action='store',
71 help="ignore files matching this Python regex "
101 "'--force' if you\nwant to ignore this warning and "
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)
264 """Set signal handler to ignore SIGINT."""
268 def find_sims(symbol, ignore, defined=[]): argument
282 arglist.append((part, ignore))
307 def check_symbols(ignore): argument
309 and a list of referencing files as value. Files matching %ignore are not
313 return check_symbols_helper(pool, ignore)
320 def check_symbols_helper(pool, ignore): argument
332 if ignore and not re.match(ignore, gitfile):
334 # add source files that do not match the ignore pattern
345 arglist.append((part, ignore))
413 symbols. Note, @args is a tuple of a list of files and the @ignore
416 ignore = args[1]
423 if ignore and re.match(ignore, kfile):
424 # do not collect references for files that match the ignore pattern
446 line = line.split("#")[0] # ignore comments
455 # ignore content of help messages
468 # ignore numeric values