Lines Matching refs:arch
579 def addmanifest(self, root, mfile, arch, modechecks, exceptions):
594 # architecture. Assumption: if variant.arch is not an
598 if arch not in mfest.attributes.get("variant.arch", (arch,)):
641 # variant.arch, we look for the target architecture
654 if "variant.arch" in var and arch not in var["variant.arch"]:
667 def adddir(self, mdir, arch, modechecks, exceptions):
674 self.addmanifest(mdir, mfile, arch, modechecks, exceptions)
696 def __init__(self, files, arch):
700 self.readexceptionfile(fname, arch)
705 def readexceptionfile(self, efile, arch):
709 which have the value of the arch arg as a trailing
718 if arch in (exc[1:] or arch):
724 USAGE = """%s [-v] -a arch [-e exceptionfile]... [-L|-M [-X check]...] input_1 [input_2]
783 arch = None
800 if arch:
803 arch = arg
843 if not arch:
846 exceptions = ExceptionList(exceptionlists, arch)
851 manifesttree.adddir(mdir, arch, modechecks, exceptions)