| /external/python/cpython2/Lib/distutils/command/ |
| D | bdist_wininst.py | 66 self.plat_name = None 86 if self.skip_build and self.plat_name: 87 # If build is skipped and plat_name is overridden, bdist will 88 # not see the correct 'plat_name' - so set that up manually. 90 bdist.plat_name = self.plat_name 108 ('plat_name', 'plat_name'), 137 install.plat_name = self.plat_name 155 plat_specifier = ".%s-%s" % (self.plat_name, target_version) 316 (fullname, self.plat_name, self.target_version)) 319 "%s.%s.exe" % (fullname, self.plat_name)) [all …]
|
| D | bdist.py | 86 self.plat_name = None 94 # have to finalize 'plat_name' before 'bdist_base' 95 if self.plat_name is None: 97 self.plat_name = get_platform() 99 self.plat_name = self.get_finalized_command('build').plat_name 107 'bdist.' + self.plat_name)
|
| D | bdist_dumb.py | 57 self.plat_name = None 81 ('plat_name', 'plat_name'), 99 self.plat_name)
|
| D | build.py | 65 self.plat_name = None 71 if self.plat_name is None: 72 self.plat_name = get_platform() 82 plat_specifier = ".%s-%s" % (self.plat_name, sys.version[0:3])
|
| D | build_ext.py | 111 self.plat_name = None 140 ('plat_name', 'plat_name'), 198 if self.plat_name == 'win32': 202 suffix = self.plat_name[4:] 314 if os.name == 'nt' and self.plat_name != get_platform(): 315 self.compiler.initialize(self.plat_name)
|
| /external/python/setuptools/setuptools/_distutils/command/ |
| D | bdist_wininst.py | 71 self.plat_name = None 89 if self.skip_build and self.plat_name: 90 # If build is skipped and plat_name is overridden, bdist will 91 # not see the correct 'plat_name' - so set that up manually. 93 bdist.plat_name = self.plat_name 111 ('plat_name', 'plat_name'), 138 install.plat_name = self.plat_name 156 plat_specifier = ".%s-%s" % (self.plat_name, target_version) 312 (fullname, self.plat_name, self.target_version)) 315 "%s.%s.exe" % (fullname, self.plat_name)) [all …]
|
| D | bdist.py | 83 self.plat_name = None 91 # have to finalize 'plat_name' before 'bdist_base' 92 if self.plat_name is None: 94 self.plat_name = get_platform() 96 self.plat_name = self.get_finalized_command('build').plat_name 104 'bdist.' + self.plat_name)
|
| D | bdist_dumb.py | 52 self.plat_name = None 76 ('plat_name', 'plat_name'), 94 self.plat_name)
|
| D | build.py | 66 self.plat_name = None 73 if self.plat_name is None: 74 self.plat_name = get_platform() 84 plat_specifier = ".%s-%d.%d" % (self.plat_name, *sys.version_info[:2])
|
| D | build_ext.py | 110 self.plat_name = None 141 ('plat_name', 'plat_name'), 208 if self.plat_name == 'win32': 212 suffix = self.plat_name[4:] 313 if os.name == 'nt' and self.plat_name != get_platform(): 314 self.compiler.initialize(self.plat_name)
|
| /external/python/cpython3/Lib/distutils/command/ |
| D | bdist.py | 78 self.plat_name = None 86 # have to finalize 'plat_name' before 'bdist_base' 87 if self.plat_name is None: 89 self.plat_name = get_platform() 91 self.plat_name = self.get_finalized_command('build').plat_name 99 'bdist.' + self.plat_name)
|
| D | bdist_dumb.py | 52 self.plat_name = None 76 ('plat_name', 'plat_name'), 94 self.plat_name)
|
| D | build.py | 66 self.plat_name = None 73 if self.plat_name is None: 74 self.plat_name = get_platform() 84 plat_specifier = ".%s-%d.%d" % (self.plat_name, *sys.version_info[:2])
|
| D | build_ext.py | 109 self.plat_name = None 140 ('plat_name', 'plat_name'), 209 if self.plat_name == 'win32': 213 suffix = self.plat_name[4:] 314 if os.name == 'nt' and self.plat_name != get_platform(): 315 self.compiler.initialize(self.plat_name)
|
| /external/python/cpython2/Lib/distutils/tests/ |
| D | test_build.py | 20 # if not specified, plat_name gets the current platform 21 self.assertEqual(cmd.plat_name, get_platform()) 30 plat_spec = '.%s-%s' % (cmd.plat_name, sys.version[0:3])
|
| /external/python/setuptools/setuptools/_distutils/tests/ |
| D | test_build.py | 20 # if not specified, plat_name gets the current platform 21 self.assertEqual(cmd.plat_name, get_platform()) 30 plat_spec = '.%s-%d.%d' % (cmd.plat_name, *sys.version_info[:2])
|
| /external/python/cpython3/Lib/distutils/tests/ |
| D | test_build.py | 21 # if not specified, plat_name gets the current platform 22 self.assertEqual(cmd.plat_name, get_platform()) 31 plat_spec = '.%s-%d.%d' % (cmd.plat_name, *sys.version_info[:2])
|
| /external/mesa3d/src/egl/main/ |
| D | egldisplay.c | 95 const char *plat_name; in _eglGetNativePlatformFromEnv() local 101 plat_name = getenv("EGL_PLATFORM"); in _eglGetNativePlatformFromEnv() 103 if (!plat_name || !plat_name[0]) in _eglGetNativePlatformFromEnv() 104 plat_name = getenv("EGL_DISPLAY"); in _eglGetNativePlatformFromEnv() 105 if (!plat_name || !plat_name[0]) in _eglGetNativePlatformFromEnv() 109 if (strcmp(egl_platforms[i].name, plat_name) == 0) { in _eglGetNativePlatformFromEnv()
|
| /external/python/cpython3/Lib/distutils/ |
| D | msvc9compiler.py | 334 # target platform (.plat_name is consistent with 'bdist') 335 self.plat_name = None 339 def initialize(self, plat_name=None): argument 342 if plat_name is None: 343 plat_name = get_platform() 346 if plat_name not in ok_plats: 363 if plat_name == get_platform() or plat_name == 'win32': 365 plat_spec = PLAT_TO_VCVARS[plat_name] 369 PLAT_TO_VCVARS[plat_name]
|
| D | _msvccompiler.py | 203 # target platform (.plat_name is consistent with 'bdist') 204 self.plat_name = None 207 def initialize(self, plat_name=None): argument 210 if plat_name is None: 211 plat_name = get_platform() 213 if plat_name not in PLAT_TO_VCVARS: 218 plat_spec = PLAT_TO_VCVARS[plat_name]
|
| /external/python/setuptools/setuptools/_distutils/ |
| D | msvc9compiler.py | 332 # target platform (.plat_name is consistent with 'bdist') 333 self.plat_name = None 337 def initialize(self, plat_name=None): argument 342 if plat_name is None: 343 plat_name = get_platform() 346 if plat_name not in ok_plats: 363 if plat_name == get_platform() or plat_name == 'win32': 365 plat_spec = PLAT_TO_VCVARS[plat_name] 369 PLAT_TO_VCVARS[plat_name]
|
| D | _msvccompiler.py | 207 # target platform (.plat_name is consistent with 'bdist') 208 self.plat_name = None 211 def initialize(self, plat_name=None): argument 214 if plat_name is None: 215 plat_name = get_platform() 217 if plat_name not in PLAT_TO_VCVARS: 222 plat_spec = PLAT_TO_VCVARS[plat_name]
|
| /external/python/cpython2/Lib/distutils/ |
| D | msvc9compiler.py | 345 # target platform (.plat_name is consistent with 'bdist') 346 self.plat_name = None 350 def initialize(self, plat_name=None): argument 353 if plat_name is None: 354 plat_name = get_platform() 357 if plat_name not in ok_plats: 375 if plat_name == get_platform() or plat_name == 'win32': 377 plat_spec = PLAT_TO_VCVARS[plat_name] 381 PLAT_TO_VCVARS[plat_name]
|
| /external/cronet/third_party/re2/src/python/ |
| D | setup.py | 74 bdist_wheel['plat_name'] = os.environ['PLAT_NAME']
|
| /external/python/setuptools/setuptools/command/ |
| D | bdist_egg.py | 85 self.plat_name = None 100 if self.plat_name is None: 101 self.plat_name = get_build_platform() 111 self.distribution.has_ext_modules() and self.plat_name
|