Lines Matching refs:arch
130 def __init__(self, version, arch):
137 if arch == self.ARCH_64BIT:
139 elif arch == self.ARCH_32BIT:
142 if arch == self.ARCH_64BIT:
147 self.arch = arch
164 def registryKeyAvailable (root, arch, name):
166 key = _winreg.OpenKey(root, name, 0, _winreg.KEY_READ | arch)
175 if nativeArch == self.ARCH_32BIT and self.arch == self.ARCH_64BIT:
178 arch = _winreg.KEY_WOW64_32KEY if nativeArch == self.ARCH_64BIT else 0
194 if VSProjectGenerator.registryKeyAvailable(root, arch, name):