/external/lzma/CPP/Windows/ |
D | DLL.h | 23 HMODULE _module; variable 27 CLibrary(): _module(NULL) {}; in CLibrary() 30 operator HMODULE() const { return _module; } in HMODULE() 31 HMODULE* operator&() { return &_module; } 32 bool IsLoaded() const { return (_module != NULL); } in IsLoaded() 37 _module = m; in Attach() 41 HMODULE m = _module; in Detach() 42 _module = NULL; in Detach() 49 FARPROC GetProc(LPCSTR procName) const { return My_GetProcAddress(_module, procName); } in GetProc()
|
D | DLL.cpp | 18 if (_module == 0) in Free() 20 if (!::FreeLibrary(_module)) in Free() 22 _module = 0; in Free() 33 _module = ::LoadLibraryEx(fs2fas(path), NULL, flags); in LoadEx() 38 _module = ::LoadLibraryExW(fs2us(path), NULL, flags); in LoadEx() 40 return (_module != NULL); in LoadEx() 50 _module = ::LoadLibrary(fs2fas(path)); in Load() 55 _module = ::LoadLibraryW(fs2us(path)); in Load() 57 return (_module != NULL); in Load()
|
/external/ImageMagick/Magick++/lib/ |
D | CoderInfo.cpp | 26 _module(), in CoderInfo() 39 _module(coder_._module), in CoderInfo() 52 _module(), in CoderInfo() 78 _module=std::string(magickInfo->module); in CoderInfo() 99 _module=coder_._module; in operator =() 142 return(_module); in module()
|
/external/python/cpython3/Lib/ |
D | warnings.py | 462 self._module = sys.modules['warnings'] if module is None else module 469 if self._module is not sys.modules['warnings']: 470 args.append("module=%r" % self._module) 478 self._filters = self._module.filters 479 self._module.filters = self._filters[:] 480 self._module._filters_mutated() 481 self._showwarning = self._module.showwarning 482 self._showwarnmsg_impl = self._module._showwarnmsg_impl 485 self._module._showwarnmsg_impl = log.append 488 self._module.showwarning = self._module._showwarning_orig [all …]
|
/external/python/cpython2/Lib/ |
D | warnings.py | 352 self._module = sys.modules['warnings'] if module is None else module 359 if self._module is not sys.modules['warnings']: 360 args.append("module=%r" % self._module) 368 self._filters = self._module.filters 369 self._module.filters = self._filters[:] 370 self._showwarning = self._module.showwarning 375 self._module.showwarning = showwarning 383 self._module.filters = self._filters 384 self._module.showwarning = self._showwarning
|
/external/kmod/libkmod/python/kmod/ |
D | kmod.pyx | 23 cimport module as _module namespace 24 import module as _module namespace 69 mod = _module.Module() 85 mod = _module.Module() 91 cdef _module.Module mod = _module.Module()
|
/external/swiftshader/third_party/LLVM/tools/lto/ |
D | LTOModule.cpp | 85 : _module(m), _target(t) in LTOModule() 178 return _module->getTargetTriple().c_str(); in getTargetTriple() 182 _module->setTargetTriple(triple); in setTargetTriple() 617 const std::string &inlineAsm = _module->getModuleInlineAsm(); in addAsmGlobalSymbols() 678 for (Module::iterator f = _module->begin(); f != _module->end(); ++f) { in ParseSymbols() 686 for (Module::global_iterator v = _module->global_begin(), in ParseSymbols() 687 e = _module->global_end(); v != e; ++v) { in ParseSymbols() 699 for (Module::alias_iterator i = _module->alias_begin(), in ParseSymbols() 700 e = _module->alias_end(); i != e; ++i) { in ParseSymbols()
|
D | LTOModule.h | 71 llvm::Module * getLLVVMModule() { return _module.get(); } in getLLVVMModule() 114 llvm::OwningPtr<llvm::Module> _module; member
|
/external/protobuf/python/google/protobuf/internal/ |
D | api_implementation.cc | 80 static struct PyModuleDef _module = { variable 101 PyObject *module = PyModule_Create(&_module); in INITFUNC()
|
/external/libxcam/xcore/ |
D | drm_display.cpp | 62 : _module(NULL) in DrmDisplay() 80 _module = strndup (module, XCAM_MAX_STR_SIZE); in DrmDisplay() 82 _module = strndup (DEFAULT_DRM_DEVICE, XCAM_MAX_STR_SIZE); in DrmDisplay() 92 _fd = drmOpen (_module, DEFAULT_DRM_BUSID); in DrmDisplay() 101 XCAM_LOG_ERROR ("failed to open drm device %s", XCAM_STR (_module)); in DrmDisplay() 116 if (_module) in ~DrmDisplay() 117 xcam_free (_module); in ~DrmDisplay()
|
D | drm_display.h | 74 return _module; in get_module_name() 135 char *_module; variable
|
/external/python/dateutil/dateutil/test/ |
D | _common.py | 27 if self._showwarning is not self._module.showwarning: 28 super_showwarning = self._module.showwarning 38 self._module.showwarning = showwarning
|
/external/libchrome/third_party/jinja2/ |
D | asyncsupport.py | 117 if self._module is not None: 118 return self._module 119 self._module = rv = await self.make_module_async()
|
D | environment.py | 981 t._module = None 1087 if self._module is not None: 1088 return self._module 1089 self._module = rv = self.make_module()
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/include/ |
D | cext.h | 58 #define EXT_DEFINE_VAR CONCATENATE(var, CONCATENATE(EXT_MODULE, _module)) 99 CONCATENATE(struct, CONCATENATE(EXT_MODULE, _module))
|
/external/chromium-trace/catapult/devil/docs/ |
D | markdown.md | 67 ### load\_module\_from\_path 80 ### md\_module
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/include/ |
D | cext.h | 58 #define EXT_DEFINE_VAR CONCATENATE(var, CONCATENATE(EXT_MODULE, _module)) 118 CONCATENATE(struct, CONCATENATE(EXT_MODULE, _module))
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | CoderInfo.h | 82 std::string _module; variable
|
/external/skqp/infra/bots/recipe_modules/vars/ |
D | api.py | 32 str(self.m.bot_update._module.PACKAGE_REPO_ROOT),
|
/external/python/setuptools/pkg_resources/_vendor/ |
D | six.py | 118 _module = self._resolve() 119 value = getattr(_module, attr)
|
/external/python/six/ |
D | six.py | 118 _module = self._resolve() 119 value = getattr(_module, attr)
|
/external/python/setuptools/setuptools/_vendor/ |
D | six.py | 118 _module = self._resolve() 119 value = getattr(_module, attr)
|
/external/scapy/scapy/modules/ |
D | six.py | 123 _module = self._resolve() 124 value = getattr(_module, attr)
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_shader.c | 104 VkShaderModule _module, in radv_DestroyShaderModule() argument 108 RADV_FROM_HANDLE(radv_shader_module, module, _module); in radv_DestroyShaderModule()
|
/external/python/cpython3/Lib/importlib/ |
D | _bootstrap.py | 308 self._module = module 316 sys.modules[self._spec.name] = self._module
|