HomeSort by relevance Sort by last modified time
    Searched refs:modules (Results 226 - 250 of 578) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ihooks.py 4 different mechanisms involved in loading modules independently.
10 effect of different __import__ hacks, like loading modules from URLs
18 by standard modules os and os.path. It should be used as the base
25 built-in and frozen modules are searched instead.
102 doesn't deal with checking sys.modules -- all it provides is
185 def modules_dict(self): return sys.modules
210 By defining suitable hooks, you might be able to load modules from
348 self.modules = self.loader.modules_dict()
364 if name in self.modules:
365 return self.modules[name] # Fast pat
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test___all__.py 31 # Silent fail here seems the best route since some modules
35 if not hasattr(sys.modules[modname], "__all__"):
47 all = set(sys.modules[modname].__all__)
65 # Blacklisted modules and packages
103 # most test modules (and avoiding the auto-executing ones).
114 print('Following modules have no __all__ and have been ignored:',
116 print('Following modules failed to be imported:', failed_imports)
test_imgfile.py 34 ourname = sys.modules[__name__].__file__
test_pkg.py 57 # delete all modules concerning the tested hierarchy
59 modules = [name for name in sys.modules
61 for name in modules:
62 del sys.modules[name]
  /device/asus/grouper/
BoardConfigCommon.mk 16 # This file sets variables that control the way modules are built
52 #WIFI_DRIVER_MODULE_PATH := "/system/lib/modules/bcm4329.ko"
  /external/chromium/net/base/
cert_database.h 110 // Get all modules.
111 // If |need_rw| is true, only writable modules will be returned.
112 void ListModules(CryptoModuleList* modules, bool need_rw) const;
cert_database_nss.cc 132 void CertDatabase::ListModules(CryptoModuleList* modules, bool need_rw) const {
133 modules->clear();
148 modules->push_back(CryptoModule::CreateFromHandle(slot_element->slot));
  /external/chromium_org/net/cert/
nss_cert_database.h 116 // Get all modules.
117 // If |need_rw| is true, only writable modules will be returned.
119 void ListModules(CryptoModuleList* modules, bool need_rw) const;
  /external/chromium_org/tools/telemetry/telemetry/
__init__.py 39 m = sys.modules[__name__]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/
__init__.py 99 if modname in sys.modules:
100 # reload modules with duplicate names
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/
__init__.py 99 if modname in sys.modules:
100 # reload modules with duplicate names
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email_torture.py 121 mod = sys.modules[__name__]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 34 ourname = sys.modules[__name__].__file__
test_pkg.py 57 # delete all modules concerning the tested hierarchy
59 modules = [name for name in sys.modules
61 for name in modules:
62 del sys.modules[name]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py 8 This package contains the following modules:
77 modules containing both a SAX parser and a create_parser function."""
84 if parser_name in sys.modules:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email_torture.py 121 mod = sys.modules[__name__]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py 8 This package contains the following modules:
77 modules containing both a SAX parser and a create_parser function."""
84 if parser_name in sys.modules:
  /build/core/
main.mk 419 # Bring in all modules that need to be built.
460 # Change CUSTOM_MODULES to include only modules that were
462 # modules as a side-effect. Do this after including ONE_SHOT_MAKEFILE
463 # so that the modules will be installed in the same place they
465 CUSTOM_MODULES := $(sort $(call get-tagged-modules,$(ALL_MODULE_TAGS)))
526 # just bare module names. Leave unknown modules alone in case
535 # Define dependencies for modules that require other modules.
541 # BUG: the system image won't know to depend on modules that are
542 # brought in as requirements of other modules
    [all...]
  /development/scripts/app_engine_server/gae_shell/
shell.py 26 The logging, os, sys, db, and users modules are imported automatically.
87 If the global is not picklable (e.g. modules, classes, and functions), or if
239 old_main = sys.modules.get('__main__')
241 sys.modules['__main__'] = statement_module
295 sys.modules['__main__'] = old_main
  /development/tools/idegen/src/com/android/idegen/
IntellijProject.java 40 private static final String MODULES_TEMPLATE_FILE_NAME = "modules.xml";
75 // Second phase, build aggregate modules.
81 // Third phase, replace individual modules with aggregated modules
82 Iterable<Module> modules = cache.getModules(); local
83 for (Module mod : modules) {
88 for (Module mod : modules) {
151 modulesContent = modulesContent.replace("@MODULES@", sb.toString());
153 File out = new File(projectIdeaDir, "modules.xml");
  /device/generic/goldfish/opengl/
common.mk 1 # This top-level build file is included by all modules that implement
26 # Internal list of all declared modules (used for sanity checking)
46 $(eval _emugl_$(_emugl_HOST)modules += $(_emugl_MODULE))\
102 $(if $(filter $(_emugl_$(_emugl_HOST)modules),$(_emugl_MODULE)),\
125 # $1: list of modules to import
134 $(if $(filter-out $(_emugl_$(_emugl_HOST)modules),$1),\
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32toolhelp_unittest.cc 285 talk_base::ModuleEnumerator modules(processes.current().th32ProcessID);
287 while (modules.Next()) {
288 if (!name.compare(modules.current().szModule)) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 87 # create a Node list of the replacement modules
120 modules = []
135 modules.append(change[0])
148 for module in modules:
193 # Renaming and star imports are not supported for these modules.
197 self.cannot_convert(node, "This module is now multiple modules")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 87 # create a Node list of the replacement modules
120 modules = []
135 modules.append(change[0])
148 for module in modules:
193 # Renaming and star imports are not supported for these modules.
197 self.cannot_convert(node, "This module is now multiple modules")
  /sdk/emulator/opengl/
common.mk 1 # This top-level build file is included by all modules that implement
27 # Internal list of all declared modules (used for sanity checking)
48 $(eval _emugl_$(_emugl_HOST)modules += $(_emugl_MODULE))\
104 $(if $(filter $(_emugl_$(_emugl_HOST)modules),$(_emugl_MODULE)),\
127 # $1: list of modules to import
136 $(if $(filter-out $(_emugl_$(_emugl_HOST)modules),$1),\

Completed in 974 milliseconds

1 2 3 4 5 6 7 8 91011>>