/external/python/cpython3/Lib/test/test_importlib/ |
D | test_lazy.py | 62 def new_module(self, source_code=None): member in LazyLoaderTests 94 module = self.new_module() 99 module = self.new_module() 106 module = self.new_module() 113 module = self.new_module() 119 module = self.new_module() 124 module = self.new_module() 132 module = self.new_module() 138 module = self.new_module()
|
/external/cronet/base/profiler/ |
D | module_cache.cc | 70 std::unique_ptr<const Module> new_module = CreateModuleForAddress(address); in GetModuleForAddress() local 71 if (!new_module && auxiliary_module_provider_) in GetModuleForAddress() 72 new_module = auxiliary_module_provider_->TryCreateModuleForAddress(address); in GetModuleForAddress() 73 if (!new_module) in GetModuleForAddress() 76 const auto result = native_modules_.insert(std::move(new_module)); in GetModuleForAddress()
|
D | native_unwinder_android.cc | 277 auto new_module = std::make_unique<NonElfModule>(map_info); in EmitDexFrame() local 278 module = new_module.get(); in EmitDexFrame() 279 module_cache()->AddCustomNativeModule(std::move(new_module)); in EmitDexFrame()
|
/external/tensorflow/tensorflow/core/ir/importexport/tests/roundtrip/ |
D | verify_roundtrip.cc | 77 auto new_module = in main() local 79 if (!new_module) { in main() 83 module = std::move(new_module); in main()
|
/external/tensorflow/tensorflow/python/autograph/impl/ |
D | conversion_test.py | 51 tf_like = imp.new_module('tensorflow_foo') 61 allowlisted_mod = imp.new_module('test_allowlisted_call')
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | rng_bit_generator_expander.cc | 92 TF_ASSIGN_OR_RETURN(auto new_module, HloModule::CreateFromProto( in GetGeneratorComputation() 96 module->DeepCloneComputation(new_module->entry_computation(), &context); in GetGeneratorComputation()
|
D | bitcast_dtypes_expander.cc | 110 TF_ASSIGN_OR_RETURN(auto new_module, HloModule::CreateFromProto( in ExpandInstruction() 114 module->DeepCloneComputation(new_module->entry_computation(), &context); in ExpandInstruction()
|
D | hlo_module_group_test.cc | 220 auto new_module = CreateNewVerifiedModule(); in TEST_F() local 221 group.ReplaceModule(0, std::move(new_module)); in TEST_F()
|
D | rng_expander.cc | 118 TF_ASSIGN_OR_RETURN(auto new_module, HloModule::CreateFromProto( in GetComputationForRng() 122 return module->DeepCloneComputation(new_module->entry_computation(), in GetComputationForRng()
|
D | cholesky_expander.cc | 254 TF_ASSIGN_OR_RETURN(auto new_module, HloModule::CreateFromProto( in ExpandInstruction() 258 module->DeepCloneComputation(new_module->entry_computation(), &context); in ExpandInstruction()
|
/external/tensorflow/tensorflow/python/autograph/core/ |
D | converter_testing.py | 33 allowlisted_mod = imp.new_module('allowlisted_module_for_testing') 76 modified_ag = imp.new_module('fake_autograph')
|
D | converter_test.py | 45 fake_ag = imp.new_module('fake_ag')
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | get_compiler_ir.cc | 172 std::unique_ptr<xla::HloModule> new_module, in GetCompilerIr() 181 return new_module->ToProto().SerializeAsString(); in GetCompilerIr() 183 return new_module->ToString(opts); in GetCompilerIr()
|
/external/python/cffi/cffi/ |
D | _cffi_include.h | 234 PyObject *module, *o_arg, *new_module; in _cffi_init() local 250 new_module = PyObject_CallMethod( in _cffi_init() 255 return new_module; in _cffi_init()
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | inspect_utils_test.py | 305 qux = imp.new_module('quxmodule') 306 bar = imp.new_module('barmodule') 334 mod = imp.new_module(mod_name) 361 mod = imp.new_module('mod_{}'.format(i))
|
/external/tensorflow/tensorflow/python/util/ |
D | deprecation.py | 673 def deprecate_moved_module(deprecated_name, new_module, deletion_version): argument 702 deprecated_name, new_module.__name__, deletion_version) 703 return getattr(new_module, name)
|
/external/selinux/gui/ |
D | modulesPage.py | 75 self.new_button.connect("clicked", self.new_module) 120 def new_module(self, args): member in modulesPage
|
/external/python/cpython2/Lib/ |
D | ihooks.py | 163 def new_module(self, name): return imp.new_module(name) member in Hooks 181 d[name] = m = self.new_module(name)
|
/external/python/cpython2/Lib/test/ |
D | test_pdb.py | 256 mod = imp.new_module('module_to_skip')
|
D | test_importlib.py | 82 module = imp.new_module(import_name)
|
D | test_pkgutil.py | 97 mod = sys.modules.setdefault(fullname, imp.new_module(fullname))
|
/external/tensorflow/tensorflow/python/tools/api/generator/ |
D | create_python_api_test.py | 48 sys.modules[_MODULE_NAME] = imp.new_module(_MODULE_NAME)
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | cudnn_vectorize_convolutions.cc | 81 TF_ASSIGN_OR_RETURN(auto new_module, in BuilderToHloComputation() 86 return dest_module->DeepCloneComputation(new_module->entry_computation(), in BuilderToHloComputation()
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_urllib.py | 52 new_module, members = change
|
/external/grpc-grpc/tools/buildgen/ |
D | mako_renderer.py | 42 plugin_module = imp.new_module(base)
|