/external/python/cpython3/Lib/distutils/command/ |
D | bdist_wininst.py | 60 self.plat_name = None 78 if self.skip_build and self.plat_name: 82 bdist.plat_name = self.plat_name 127 install.plat_name = self.plat_name 145 plat_specifier = ".%s-%s" % (self.plat_name, target_version) 299 (fullname, self.plat_name, self.target_version)) 302 "%s.%s.exe" % (fullname, self.plat_name)) 354 if self.plat_name != 'win32' and self.plat_name[:3] == 'win': 355 sfix = self.plat_name[3:]
|
D | bdist.py | 83 self.plat_name = None 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 | 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 | bdist_dumb.py | 52 self.plat_name = None 94 self.plat_name)
|
D | build_ext.py | 109 self.plat_name = None 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)
|
D | bdist_msi.py | 127 self.plat_name = None 203 plat_specifier = ".%s-%s" % (self.plat_name, target_version) 736 base_name = "%s.%s-py%s.msi" % (fullname, self.plat_name, 739 base_name = "%s.%s.msi" % (fullname, self.plat_name)
|
D | install.py | 547 build_plat = self.distribution.get_command_obj('build').plat_name
|
/external/python/cpython2/Lib/distutils/command/ |
D | bdist_wininst.py | 66 self.plat_name = None 86 if self.skip_build and self.plat_name: 90 bdist.plat_name = self.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)) 357 if self.plat_name != 'win32' and self.plat_name[:3] == 'win': 358 sfix = self.plat_name[3:]
|
D | bdist.py | 86 self.plat_name = None 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 | 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 | bdist_dumb.py | 57 self.plat_name = None 99 self.plat_name)
|
D | build_ext.py | 111 self.plat_name = None 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)
|
D | bdist_msi.py | 128 self.plat_name = None 205 plat_specifier = ".%s-%s" % (self.plat_name, target_version) 737 base_name = "%s.%s-py%s.msi" % (fullname, self.plat_name, 740 base_name = "%s.%s.msi" % (fullname, self.plat_name)
|
D | install.py | 565 build_plat = self.distribution.get_command_obj('build').plat_name
|
/external/mesa3d/src/egl/main/ |
D | egldisplay.c | 83 const char *plat_name; in _eglGetNativePlatformFromEnv() local 86 plat_name = getenv("EGL_PLATFORM"); in _eglGetNativePlatformFromEnv() 88 if (!plat_name || !plat_name[0]) in _eglGetNativePlatformFromEnv() 89 plat_name = getenv("EGL_DISPLAY"); in _eglGetNativePlatformFromEnv() 90 if (!plat_name || !plat_name[0]) in _eglGetNativePlatformFromEnv() 94 if (strcmp(egl_platforms[i].name, plat_name) == 0) { in _eglGetNativePlatformFromEnv()
|
/external/python/cpython2/Lib/distutils/ |
D | msvc9compiler.py | 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/python/cpython3/Lib/distutils/ |
D | msvc9compiler.py | 336 self.plat_name = None 340 def initialize(self, plat_name=None): argument 343 if plat_name is None: 344 plat_name = get_platform() 347 if plat_name not in ok_plats: 364 if plat_name == get_platform() or plat_name == 'win32': 366 plat_spec = PLAT_TO_VCVARS[plat_name] 370 PLAT_TO_VCVARS[plat_name]
|
D | _msvccompiler.py | 223 self.plat_name = None 226 def initialize(self, plat_name=None): argument 229 if plat_name is None: 230 plat_name = get_platform() 232 if plat_name not in PLAT_TO_VCVARS: 237 plat_spec = PLAT_TO_VCVARS[plat_name]
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_build.py | 21 self.assertEqual(cmd.plat_name, get_platform()) 30 plat_spec = '.%s-%s' % (cmd.plat_name, sys.version[0:3])
|
D | test_bdist_dumb.py | 76 base = "%s.%s.zip" % (dist.get_fullname(), cmd.plat_name)
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_build.py | 21 self.assertEqual(cmd.plat_name, get_platform()) 30 plat_spec = '.%s-%d.%d' % (cmd.plat_name, *sys.version_info[:2])
|
D | test_bdist_dumb.py | 76 base = "%s.%s.zip" % (dist.get_fullname(), cmd.plat_name)
|
/external/u-boot/drivers/power/regulator/ |
D | regulator-uclass.c | 136 int regulator_get_by_platname(const char *plat_name, struct udevice **devp) in regulator_get_by_platname() argument 152 if (!uc_pdata || strcmp(plat_name, uc_pdata->name)) in regulator_get_by_platname() 158 debug("%s: can't find: %s, ret=%d\n", __func__, plat_name, ret); in regulator_get_by_platname()
|
/external/python/setuptools/setuptools/command/ |
D | bdist_egg.py | 92 self.plat_name = None 107 if self.plat_name is None: 108 self.plat_name = get_build_platform() 118 self.distribution.has_ext_modules() and self.plat_name
|