/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
H A D | test_install.py | 1 """Tests for distutils.command.install."""
8 from distutils.command.install import install
namespace 31 cmd = install(dist)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/ |
H A D | install_lib.py | 4 (install all Python modules)."""
23 description = "install all Python modules (extensions and pure Python)"
41 ('install-dir=', 'd', "directory to install to"),
42 ('build-dir=','b', "build directory (where to install from)"),
56 # let the 'install' command dictate our installation directory
65 # Get all the information we need to install pure Python modules
66 # from the umbrella 'install' command -- build (source) directory,
67 # install (target) directory, and whether to compile .py files.
68 self.set_undefined_options('install',
113 def install(self): member in class:install_lib [all...] |
H A D | install.py | 1 """distutils.command.install
3 Implements the Distutils 'install' command."""
94 class install (Command):
class in inherits:Command 96 description = "install everything from build directory"
105 "(Unix only) home directory to install under"),
107 "install in user site-package '%s'" % USER_SITE),
110 ('install-base=', None,
112 ('install-platbase=', None,
116 "install everything relative to this alternate root directory"),
119 ('install [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
H A D | gettext.py | 29 # Barry Warsaw integrated these modules, wrote the .install() API and code,
54 'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
244 def install(self, unicode=False, names=None):
member in class:NullTranslations 495 def install(domain, localedir=None, unicode=False, codeset=None, names=None):
function 497 t.install(unicode, names)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
H A D | gettext.py | 29 # Barry Warsaw integrated these modules, wrote the .install() API and code,
54 'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
242 def install(self, unicode=False, names=None):
member in class:NullTranslations 492 def install(domain, localedir=None, unicode=False, codeset=None, names=None):
function 494 t.install(unicode, names)
|
H A D | imputil.py | 33 def install(self, namespace=vars(__builtin__)):
member in class:ImportManager 41 # Record the previous import hook, then install our own.
624 ImportManager().install()
|
H A D | ihooks.py | 35 provides interfaces to install and uninstall itself instead of the
49 would also do wise to install a different version of reload().
62 "BasicModuleImporter","ModuleImporter","install","uninstall"]
382 def install(self):
member in class:BasicModuleImporter 547 def install(importer = None):
function 550 current_importer.install()
|
/device/linaro/hikey/wpan/uim/ |
H A D | uim.c | 283 * on receiving a notification from the ST KIM driver to install the line 286 int st_uart_config(unsigned char install) argument 298 if (install == '1') { 476 unsigned char install; local 519 err = read(st_fd, &install, 1); 523 if ((err > 0) && install == '1') { 524 UIM_DBG("install set previously..."); 525 st_uart_config(install); 553 err = read(st_fd, &install, 1); 554 UIM_DBG("read %c from install \ [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/ |
H A D | expatbuilder.py | 163 self.install(self._parser)
174 def install(self, parser):
member in class:ExpatBuilder 555 self._builder.install(parser)
732 def install(self, parser):
member in class:Namespaces 734 ExpatBuilder.install(self, parser)
888 def install(self, parser):
member in class:InternalSubsetExtractor
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/ |
H A D | expatbuilder.py | 163 self.install(self._parser)
174 def install(self, parser):
member in class:ExpatBuilder 555 self._builder.install(parser)
732 def install(self, parser):
member in class:Namespaces 734 ExpatBuilder.install(self, parser)
888 def install(self, parser):
member in class:InternalSubsetExtractor
|