Lines Matching refs:exceptions
456 def adddir(self, proto, exceptions): argument
468 if path not in exceptions:
476 exceptions.remove(path)
502 def addprotolist(self, protolist, exceptions): argument
527 if pline[1] in exceptions:
528 exceptions.remove(pline[1])
577 def addmanifest(self, root, mfile, arch, modechecks, exceptions): argument
656 if modechecks is not None and path not in exceptions:
665 def adddir(self, mdir, arch, modechecks, exceptions): argument
672 self.addmanifest(mdir, mfile, arch, modechecks, exceptions)
844 exceptions = ExceptionList(exceptionlists, arch)
845 originalexceptions = exceptions.copy()
849 manifesttree.adddir(mdir, arch, modechecks, exceptions)
861 prototree.adddir(pdir, exceptions)
867 protolist.addprotolist(plist, exceptions)
872 if verbose and exceptions:
874 for exc in sorted(exceptions):
878 usedexceptions = originalexceptions.difference(exceptions)