HomeSort by relevance Sort by last modified time
    Searched full:plat_name (Results 1 - 24 of 24) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
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])
test_bdist_dumb.py 76 base = "%s.%s.zip" % (dist.get_fullname(), cmd.plat_name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
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])
test_bdist_dumb.py 76 base = "%s.%s.zip" % (dist.get_fullname(), cmd.plat_name)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
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)
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
    [all...]
bdist_dumb.py 57 self.plat_name = None
81 ('plat_name', 'plat_name'),
99 self.plat_name)
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])
build_ext.py 112 self.plat_name = None
141 ('plat_name', 'plat_name'),
199 if self.plat_name == 'win32':
203 suffix = self.plat_name[4:]
316 if os.name == 'nt' and self.plat_name != get_platform():
317 self.compiler.initialize(self.plat_name)
    [all...]
bdist_msi.py 128 self.plat_name = None
162 ('plat_name', 'plat_name'),
205 plat_specifier = ".%s-%s" % (self.plat_name, target_version)
    [all...]
install.py 602 build_plat = self.distribution.get_command_obj('build').plat_name
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
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)
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
    [all...]
bdist_dumb.py 57 self.plat_name = None
81 ('plat_name', 'plat_name'),
99 self.plat_name)
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])
build_ext.py 112 self.plat_name = None
141 ('plat_name', 'plat_name'),
199 if self.plat_name == 'win32':
203 suffix = self.plat_name[4:]
316 if os.name == 'nt' and self.plat_name != get_platform():
317 self.compiler.initialize(self.plat_name)
    [all...]
bdist_msi.py 128 self.plat_name = None
162 ('plat_name', 'plat_name'),
205 plat_specifier = ".%s-%s" % (self.plat_name, target_version)
    [all...]
install.py 602 build_plat = self.distribution.get_command_obj('build').plat_name
  /external/chromium_org/third_party/mesa/src/src/egl/main/
egldisplay.c 88 const char *plat_name; local
91 plat_name = getenv("EGL_PLATFORM");
93 if (!plat_name || !plat_name[0])
94 plat_name = getenv("EGL_DISPLAY");
95 if (!plat_name || !plat_name[0])
99 if (strcmp(egl_platforms[i].name, plat_name) == 0) {
  /external/mesa3d/src/egl/main/
egldisplay.c 88 const char *plat_name; local
91 plat_name = getenv("EGL_PLATFORM");
93 if (!plat_name || !plat_name[0])
94 plat_name = getenv("EGL_DISPLAY");
95 if (!plat_name || !plat_name[0])
99 if (strcmp(egl_platforms[i].name, plat_name) == 0) {
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
egl_g3d.c 101 const char *plat_name = NULL; local
106 plat_name = "Windows";
112 plat_name = "X11";
118 plat_name = "wayland";
124 plat_name = "DRM";
130 plat_name = "FBDEV";
136 plat_name = "NULL";
142 plat_name = "Android";
152 _eglLog(_EGL_WARNING, "unsupported platform %s", plat_name);
  /external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d.c 101 const char *plat_name = NULL; local
106 plat_name = "Windows";
112 plat_name = "X11";
118 plat_name = "wayland";
124 plat_name = "DRM";
130 plat_name = "FBDEV";
136 plat_name = "NULL";
142 plat_name = "Android";
152 _eglLog(_EGL_WARNING, "unsupported platform %s", plat_name);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
msvc9compiler.py 345 # target platform (.plat_name is consistent with 'bdist')
346 self.plat_name = None
350 def initialize(self, plat_name=None):
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]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
msvc9compiler.py 345 # target platform (.plat_name is consistent with 'bdist')
346 self.plat_name = None
350 def initialize(self, plat_name=None):
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]
    [all...]

Completed in 892 milliseconds