Lines Matching refs:exceptions
478 def adddir(self, proto, exceptions): argument
490 if path not in exceptions:
498 exceptions.remove(path)
524 def addprotolist(self, protolist, exceptions): argument
549 if pline[1] in exceptions:
550 exceptions.remove(pline[1])
598 def addmanifest(self, root, mfile, arch, modechecks, exceptions): argument
681 if modechecks is not None and path not in exceptions:
690 def adddir(self, mdir, arch, modechecks, exceptions): argument
697 self.addmanifest(mdir, mfile, arch, modechecks, exceptions)
869 exceptions = ExceptionList(exceptionlists, arch)
870 originalexceptions = exceptions.copy()
874 manifesttree.adddir(mdir, arch, modechecks, exceptions)
886 prototree.adddir(pdir, exceptions)
892 protolist.addprotolist(plist, exceptions)
897 if verbose and exceptions:
899 for exc in sorted(exceptions):
903 usedexceptions = originalexceptions.difference(exceptions)