Home
last modified time | relevance | path

Searched refs:_imp (Results 1 – 21 of 21) sorted by relevance

/third_party/python/Lib/importlib/
D_bootstrap.py185 _imp.acquire_lock()
199 _imp.acquire_lock()
207 _imp.release_lock()
211 _imp.release_lock()
266 if not _imp.is_frozen(fullname):
750 if _imp.is_builtin(fullname):
776 return _call_with_frames_removed(_imp.create_builtin, spec)
781 _call_with_frames_removed(_imp.exec_builtin, module)
828 if _imp.is_frozen(fullname):
843 return cls if _imp.is_frozen(fullname) else None
[all …]
D__init__.py12 import _imp # Just the builtin component, NOT the full Python module
19 _bootstrap._setup(sys, _imp)
D_bootstrap_external.py26 import _imp
374 EXTENSION_SUFFIXES = _imp.extension_suffixes()
676 _imp._fix_co_filename(code, source_path)
989 if (_imp.check_hash_based_pycs != 'never' and
991 _imp.check_hash_based_pycs == 'always')):
993 source_hash = _imp.source_hash(
1023 source_hash = _imp.source_hash(source_bytes)
1177 _imp.create_dynamic, spec)
1184 _bootstrap._call_with_frames_removed(_imp.exec_dynamic, module)
1661 extensions = ExtensionFileLoader, _imp.extension_suffixes()
Dutil.py15 import _imp
24 return _imp.source_hash(_RAW_MAGIC_NUMBER, source_bytes)
/third_party/boost/libs/smart_ptr/example/
Dshared_ptr_example2.cpp19 example::example() : _imp( new implementation ) {} in example()
22 { std::cout << "use_count() is " << _imp.use_count() << "\n"; } in do_something()
Dshared_ptr_example2.hpp29 boost::shared_ptr< implementation > _imp; // hide implementation details member in example
Dscoped_ptr_example.hpp27 boost::scoped_ptr< implementation > _imp; // hide implementation details member in example
Dscoped_ptr_example.cpp19 example::example() : _imp( new implementation ) {} in example()
/third_party/python/Lib/
Dzipimport.py20 import _imp # for check_hash_based_pycs
646 if (_imp.check_hash_based_pycs != 'never' and
647 (check_source or _imp.check_hash_based_pycs == 'always')):
650 source_hash = _imp.source_hash(
Dimp.py9 from _imp import (lock_held, acquire_lock, release_lock,
14 from _imp import create_dynamic
Dsysconfig.py484 import _imp
488 vars['EXT_SUFFIX'] = _imp.extension_suffixes()[0]
/third_party/curl/lib/
DCMakeLists.txt125 # Add "_imp" as a suffix before the extension to avoid conflicting with
127 set_target_properties(${LIB_NAME} PROPERTIES IMPORT_SUFFIX "_imp.lib")
/third_party/node/deps/cares/
DMakefile.Watcom18 TARGETS = $(LIBNAME).dll $(LIBNAME)_imp.lib $(LIBNAME).lib
150 @%append $^@ option res=$(RESOURCE), implib=$(LIBNAME)_imp.lib
/third_party/boost/boost/math/policies/
Dpolicy.hpp126 template <class T> struct is_##name##_imp\
133 …ublic boost::integral_constant<bool, ::boost::math::policies::detail::is_##name##_imp<T>::value>{};
141 template <class T> struct is_##name##_imp\
148 …ublic boost::integral_constant<bool, ::boost::math::policies::detail::is_##name##_imp<T>::value>{};
161 template <class T> struct is_##name##_imp\
167 … public boost::integral_constant<bool, ::boost::math::policies::detail::is_##name##_imp<T>::value>\
183 template <class T> struct is_##name##_imp\
189 … public boost::integral_constant<bool, ::boost::math::policies::detail::is_##name##_imp<T>::value>\
/third_party/python/Lib/test/
Dtest_imp.py16 import _imp
349 self.assertEqual(_imp.source_hash(42, b'hi'), b'\xc6\xe7Z\r\x03:}\xab')
350 self.assertEqual(_imp.source_hash(43, b'hi'), b'\x85\x9765\xf8\x9a\x8b9')
Dtest_fork1.py4 import _imp as imp
Dtest_sysconfig.py410 import _imp
414 self.assertEqual(vars['EXT_SUFFIX'], _imp.extension_suffixes()[0])
/third_party/python/Modules/
Dconfig.c.in42 {"_imp", PyInit__imp},
/third_party/python/Lib/test/test_importlib/
Dtest_threaded_import.py8 import _imp as imp
/third_party/python/Lib/distutils/
Dsysconfig.py12 import _imp
/third_party/python/Misc/
DHISTORY5232 - Issue #16880: Do not assume _imp.load_dynamic() is defined in the imp module.
7886 - Issue #13959: Add imp.py and rename the built-in module to _imp, allowing for