Lines Matching refs:exceptions
458 def adddir(self, proto, exceptions):
470 if path not in exceptions:
478 exceptions.remove(path)
504 def addprotolist(self, protolist, exceptions):
529 if pline[1] in exceptions:
530 exceptions.remove(pline[1])
579 def addmanifest(self, root, mfile, arch, modechecks, exceptions):
658 if modechecks is not None and path not in exceptions:
667 def adddir(self, mdir, arch, modechecks, exceptions):
674 self.addmanifest(mdir, mfile, arch, modechecks, exceptions)
846 exceptions = ExceptionList(exceptionlists, arch)
847 originalexceptions = exceptions.copy()
851 manifesttree.adddir(mdir, arch, modechecks, exceptions)
863 prototree.adddir(pdir, exceptions)
869 protolist.addprotolist(plist, exceptions)
874 if verbose and exceptions:
876 for exc in sorted(exceptions):
880 usedexceptions = originalexceptions.difference(exceptions)