Lines Matching full:ignore
19 ignore ioctl VIDIOC_ENUM_FMT
46 1. Ignore rules:
48 ignore <type> <symbol>`
68 On ignore and replace rules, <type> can be:
78 ignore define __LINUX_MEDIA_H
79 ignore ioctl VIDIOC_ENUM_FMT
154 self.ignore = []
173 # ignore rules
174 match = re.match(r"^ignore\s+(\w+)\s+(\S+)", line)
177 self.ignore.append((ln, match.group(1), match.group(2)))
196 Process exceptions file with rules to ignore or replace references.
199 # Handle ignore rules
200 for ln, c_type, symbol in self.ignore: