Searched refs:_imp (Results 1 – 21 of 21) sorted by relevance
/third_party/python/Lib/importlib/ |
D | _bootstrap.py | 185 _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__.py | 12 import _imp # Just the builtin component, NOT the full Python module 19 _bootstrap._setup(sys, _imp)
|
D | _bootstrap_external.py | 26 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()
|
D | util.py | 15 import _imp 24 return _imp.source_hash(_RAW_MAGIC_NUMBER, source_bytes)
|
/third_party/boost/libs/smart_ptr/example/ |
D | shared_ptr_example2.cpp | 19 example::example() : _imp( new implementation ) {} in example() 22 { std::cout << "use_count() is " << _imp.use_count() << "\n"; } in do_something()
|
D | shared_ptr_example2.hpp | 29 boost::shared_ptr< implementation > _imp; // hide implementation details member in example
|
D | scoped_ptr_example.hpp | 27 boost::scoped_ptr< implementation > _imp; // hide implementation details member in example
|
D | scoped_ptr_example.cpp | 19 example::example() : _imp( new implementation ) {} in example()
|
/third_party/python/Lib/ |
D | zipimport.py | 20 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(
|
D | imp.py | 9 from _imp import (lock_held, acquire_lock, release_lock, 14 from _imp import create_dynamic
|
D | sysconfig.py | 484 import _imp 488 vars['EXT_SUFFIX'] = _imp.extension_suffixes()[0]
|
/third_party/curl/lib/ |
D | CMakeLists.txt | 125 # 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/ |
D | Makefile.Watcom | 18 TARGETS = $(LIBNAME).dll $(LIBNAME)_imp.lib $(LIBNAME).lib 150 @%append $^@ option res=$(RESOURCE), implib=$(LIBNAME)_imp.lib
|
/third_party/boost/boost/math/policies/ |
D | policy.hpp | 126 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/ |
D | test_imp.py | 16 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')
|
D | test_fork1.py | 4 import _imp as imp
|
D | test_sysconfig.py | 410 import _imp 414 self.assertEqual(vars['EXT_SUFFIX'], _imp.extension_suffixes()[0])
|
/third_party/python/Modules/ |
D | config.c.in | 42 {"_imp", PyInit__imp},
|
/third_party/python/Lib/test/test_importlib/ |
D | test_threaded_import.py | 8 import _imp as imp
|
/third_party/python/Lib/distutils/ |
D | sysconfig.py | 12 import _imp
|
/third_party/python/Misc/ |
D | HISTORY | 5232 - 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
|