| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
| bz2_codec.py | 11 import bz2 # this codec needs the optional bz2 module ! namespace 91 ### encodings module API
|
| zlib_codec.py | 10 import zlib # this codec needs the optional zlib module ! namespace 91 ### encodings module API
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_pickle.py | 22 module = pickle variable in class:PickleTests
|
| /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
| test_mock.py | 33 """Tests for mock module.""" 40 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
|
| /external/chromium_org/chrome_frame/crash_reporting/ |
| vectored_handler_unittest.cc | 60 // Start address of our module. 134 // Exception in a loading module, we are on the stack. 146 HMODULE module = ::LoadLibrary(kCrashDllName); local 147 EXPECT_EQ(NULL, module); 153 // Exception in an unloading module, we are on the stack/ 157 module = ::LoadLibrary(kCrashDllName); 162 EXPECT_TRUE(module != NULL); 166 ::FreeLibrary(module); 205 // Start address of our module.
|
| /external/chromium_org/content/browser/ |
| power_save_blocker_win.cc | 33 HMODULE module = GetModuleHandle(L"kernel32.dll"); local 35 GetProcAddress(module, "PowerCreateRequest")); 37 GetProcAddress(module, "PowerSetRequest")); 71 HMODULE module = GetModuleHandle(L"kernel32.dll"); local 74 GetProcAddress(module, "PowerClearRequest"));
|
| /external/chromium_org/sandbox/win/src/ |
| app_container.cc | 97 HMODULE module = GetModuleHandle(kKerneldllName); local 99 GetProcAddress(module, "AppContainerRegisterSid")); 123 HMODULE module = GetModuleHandle(kKerneldllName); local 125 GetProcAddress(module, "AppContainerUnregisterSid")); 153 HMODULE module = GetModuleHandle(kKerneldllName); local 155 GetProcAddress(module, "AppContainerLookupMoniker")); 157 GetProcAddress(module, "AppContainerFreeMemory"));
|
| process_mitigations.cc | 38 HMODULE module = ::GetModuleHandleA("kernel32.dll"); local 44 ::GetProcAddress(module, "SetDefaultDllDirectories")); 76 ::GetProcAddress(module, "SetProcessDEPPolicy")); 114 ::GetProcAddress(module, "SetProcessMitigationPolicy"));
|
| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
| __init__.py | 33 from base import Port # It's possible we don't need to export this virtual baseclass outside the module. namespace
|
| /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
| objfmt.h | 3 * \brief YASM object format module interface. 39 const struct yasm_objfmt_module *module; member in struct:yasm_objfmt_base 43 /** Object format module interface. */ 83 * Module-level implementation of yasm_objfmt_create(). 91 /** Module-level implementation of yasm_objfmt_output(). 97 /** Module-level implementation of yasm_objfmt_destroy(). 102 /** Module-level implementation of yasm_objfmt_add_default_section(). 107 /** Module-level implementation of yasm_objfmt_init_new_section(). 112 /** Module-level implementation of yasm_objfmt_section_switch(). 120 /** Module-level implementation of yasm_objfmt_get_special_sym() [all...] |
| preproc.h | 3 * \brief YASM preprocessor module interface. 39 const struct yasm_preproc_module *module; member in struct:yasm_preproc_base 43 /** YASM preprocesor module interface. */ 52 * Module-level implementation of yasm_preproc_create(). 69 /** Module-level implementation of yasm_preproc_destroy(). 74 /** Module-level implementation of yasm_preproc_get_line(). 79 /** Module-level implementation of yasm_preproc_get_included_file(). 85 /** Module-level implementation of yasm_preproc_add_include_file(). 90 /** Module-level implementation of yasm_preproc_predefine_macro(). 95 /** Module-level implementation of yasm_preproc_undefine_macro() [all...] |
| /external/chromium_org/tools/memory_watcher/ |
| preamble_patcher.h | 129 // Patches a named function imported from the named module using 137 // @param module_name The name of the module from which the function 138 // is being imported. Note that the patch will fail if this module 160 "You must specify a module name and function name."); 163 HMODULE module = ::GetModuleHandle(module_name); local 164 ASSERT1(module != NULL); 165 if (!module) { 166 ASSERT(false, "Invalid module name."); 169 FARPROC existing_function = ::GetProcAddress(module, function_name);
|
| /frameworks/base/services/jni/ |
| com_android_server_LightsService.cpp | 51 static light_device_t* get_device(hw_module_t* module, char const* name) 55 err = module->methods->open(module, name, &device); 66 hw_module_t* module; local 71 err = hw_get_module(LIGHTS_HARDWARE_MODULE_ID, (hw_module_t const**)&module); 74 = get_device(module, LIGHT_ID_BACKLIGHT); 76 = get_device(module, LIGHT_ID_KEYBOARD); 78 = get_device(module, LIGHT_ID_BUTTONS); 80 = get_device(module, LIGHT_ID_BATTERY); 82 = get_device(module, LIGHT_ID_NOTIFICATIONS) [all...] |
| /frameworks/compile/mclinker/lib/CodeGen/ |
| MCLinker.cpp | 15 #include <mcld/Module.h> 31 #include <llvm/IR/Module.h> 192 mcld::Module& pModule, 208 bool MCLinker::doInitialization(llvm::Module &pM) 223 bool MCLinker::doFinalization(llvm::Module &pM) 280 mcld::Module& module = pBuilder.getModule(); local 284 module.getScript().directories()));
|
| /frameworks/native/libs/ui/ |
| GraphicBufferAllocator.cpp | 41 hw_module_t const* module; local 42 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module); 43 ALOGE_IF(err, "FATAL: can't find the %s module", GRALLOC_HARDWARE_MODULE_ID); 45 gralloc_open(module, &mAllocDev);
|
| /hardware/libhardware/modules/gralloc/ |
| gralloc.cpp | 52 int fb_device_open(const hw_module_t* module, const char* name, 55 static int gralloc_device_open(const hw_module_t* module, const char* name, 58 extern int gralloc_lock(gralloc_module_t const* module, 63 extern int gralloc_unlock(gralloc_module_t const* module, 66 extern int gralloc_register_buffer(gralloc_module_t const* module, 69 extern int gralloc_unregister_buffer(gralloc_module_t const* module, 85 name: "Graphics Memory Allocator Module", 108 dev->common.module); 161 dev->common.module); 184 gralloc_module_t* module = reinterpret_cast<gralloc_module_t*> local 260 gralloc_module_t* module = reinterpret_cast<gralloc_module_t*>( local [all...] |
| /packages/apps/Camera/src/com/android/camera/ |
| CameraActivity.java | 168 private void openModule(CameraModule module, boolean canReuse) { 169 module.init(this, mFrame, canReuse && canReuseScreenNail()); 171 module.onResumeBeforeSuper(); 172 module.onResumeAfterSuper(); 175 private void closeModule(CameraModule module) { 176 module.onPauseBeforeSuper(); 177 module.onPauseAfterSuper();
|
| /development/ndk/platforms/android-3/include/linux/mtd/ |
| map.h | 69 struct module *module; member in struct:mtd_chip_driver
|
| /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/ |
| LoginModuleUtilsTest.java | 18 package org.apache.harmony.auth.tests.module; 26 import org.apache.harmony.auth.module.LoginModuleUtils;
|
| /external/apache-harmony/auth/src/test/java/unix/org/apache/harmony/auth/module/ |
| UnixLoginModuleTest.java | 21 package org.apache.harmony.auth.module; 32 import org.apache.harmony.auth.module.UnixLoginModule;
|
| /external/apache-http/src/org/apache/http/util/ |
| VersionInfo.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/util/VersionInfo.java $ 43 * Instances of this class provide version information for a single module 66 public final static String PROPERTY_MODULE = "info.module"; 74 /** The module from the version info. */ 91 * @param module the module, or <code>null</code> 96 protected VersionInfo(String pckg, String module, 104 infoModule = (module != null) ? module : UNAVAILABLE; 113 * The package name identifies the module or informal unit 288 String module = null; local [all...] |
| /external/chromium/chrome/browser/accessibility/ |
| browser_accessibility_win_unittest.cc | 55 // ATL needs a pointer to a COM module. 56 static CComModule module; local 57 _pAtlModule = &module;
|
| renderer_accessibility_browsertest.cc | 67 // ATL needs a pointer to a COM module. 68 static CComModule module; local 69 _pAtlModule = &module;
|
| /external/chromium/chrome/browser/ |
| enumerate_modules_model_unittest_win.cc | 25 ModuleEnumerator::Module test_case; 26 ModuleEnumerator::Module expected; 59 ModuleEnumerator::Module test = kNormalizationTestCases[i].test_case; 62 ModuleEnumerator::Module expected = kNormalizationTestCases[i].expected; 78 const ModuleEnumerator::Module kStandardModule = 81 const ModuleEnumerator::Module kStandardModuleNoDescription = 84 const ModuleEnumerator::Module kStandardModuleNoSignature = 103 ModuleEnumerator::Module test_case; 198 ModuleEnumerator::Module test = kMatchineEntryList[i].test_case; 230 ModuleEnumerator::Module module local [all...] |
| platform_util_win.cc | 201 FilePath module; local 203 if (PathService::Get(base::FILE_MODULE, &module)) { 205 !InstallUtil::IsPerUserInstall(module.value().c_str());
|