Home
last modified time | relevance | path

Searched refs:AddModule (Results 1 – 18 of 18) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/postmortem/minidump-new/
DTestMiniDumpUUID.py331 self.assertEqual(modules[0], self.target.AddModule(
333 self.assertEqual(modules[1], self.target.AddModule(
338 self.target.AddModule(
341 self.target.AddModule(
352 self.assertEqual(modules[0], self.target.AddModule(
354 self.assertEqual(modules[1], self.target.AddModule(
359 self.target.AddModule(
362 self.target.AddModule(
373 self.assertEqual(modules[0], self.target.AddModule(
375 self.assertEqual(modules[1], self.target.AddModule(
[all …]
/external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
Dproject.py167 g.AddModule(m)
199 g.AddModule(cur)
219 def AddModule(self, m): member in _Graph
/external/llvm-project/lldb/include/lldb/API/
DSBTarget.h286 bool AddModule(lldb::SBModule &module);
288 lldb::SBModule AddModule(const char *path, const char *triple,
291 lldb::SBModule AddModule(const char *path, const char *triple,
294 lldb::SBModule AddModule(const SBModuleSpec &module_spec);
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangModulesDeclVendor.h57 virtual bool AddModule(const SourceModule &module,
DClangModulesDeclVendor.cpp89 bool AddModule(const SourceModule &module, ModuleVector *exported_modules,
225 bool ClangModulesDeclVendorImpl::AddModule(const SourceModule &module, in AddModule() function in ClangModulesDeclVendorImpl
379 if (!AddModule(imported_module, &exported_modules, error_stream)) in AddModulesForCompileUnit()
DClangExpressionParser.cpp138 if (!m_decl_vendor.AddModule(module, &exported_modules, m_error_stream)) in moduleImport()
/external/llvm-project/lldb/bindings/interface/
DSBTarget.i360 AddModule (lldb::SBModule &module);
363 AddModule (const char *path,
368 AddModule (const char *path,
374 AddModule (const SBModuleSpec &module_spec);
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dsimple_orc_jit.h82 llvm::Error AddModule(llvm::orc::ThreadSafeModule module);
Dsimple_orc_jit.cc220 llvm::Error SimpleOrcJIT::AddModule(llvm::orc::ThreadSafeModule module) { in AddModule() function in xla::cpu::SimpleOrcJIT
Dcpu_compiler.cc789 cantFail((*jit)->AddModule(std::move(thread_safe_module))); in RunBackend()
/external/llvm-project/lldb/source/API/
DSBTarget.cpp1576 lldb::SBModule SBTarget::AddModule(const char *path, const char *triple, in AddModule() function in SBTarget
1578 LLDB_RECORD_METHOD(lldb::SBModule, SBTarget, AddModule, in AddModule()
1582 return LLDB_RECORD_RESULT(AddModule(path, triple, uuid_cstr, nullptr)); in AddModule()
1585 lldb::SBModule SBTarget::AddModule(const char *path, const char *triple, in AddModule() function in SBTarget
1587 LLDB_RECORD_METHOD(lldb::SBModule, SBTarget, AddModule, in AddModule()
1615 lldb::SBModule SBTarget::AddModule(const SBModuleSpec &module_spec) { in AddModule() function in SBTarget
1616 LLDB_RECORD_METHOD(lldb::SBModule, SBTarget, AddModule, in AddModule()
1627 bool SBTarget::AddModule(lldb::SBModule &module) { in AddModule() function in SBTarget
1628 LLDB_RECORD_METHOD(bool, SBTarget, AddModule, (lldb::SBModule &), module); in AddModule()
2589 LLDB_REGISTER_METHOD(lldb::SBModule, SBTarget, AddModule, in RegisterMethods()
[all …]
/external/llvm/bindings/go/llvm/
Dexecutionengine.go149 func (ee ExecutionEngine) AddModule(m Module) { C.LLVMAddModule(ee.C, m.C) } func
/external/llvm-project/llvm/bindings/go/llvm/
Dexecutionengine.go148 func (ee ExecutionEngine) AddModule(m Module) { C.LLVMAddModule(ee.C, m.C) } func
/external/llvm-project/lldb/examples/python/
Dsymbolication.py375 self.module = target.AddModule(None, None, uuid_str)
381 self.module = target.AddModule(
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DPythonDataObjects.cpp802 return AddModule("builtins"); in BuiltinsModule()
804 return AddModule("__builtin__"); in BuiltinsModule()
808 PythonModule PythonModule::MainModule() { return AddModule("__main__"); } in MainModule()
810 PythonModule PythonModule::AddModule(llvm::StringRef module) { in AddModule() function in PythonModule
DPythonDataObjects.h594 static PythonModule AddModule(llvm::StringRef module);
/external/llvm-project/lldb/docs/use/
Dsymbolication.rst264 …module = target.AddModule ("/usr/lib/system/libsystem_c.dylib", triple, None, "/build/server/a/lib…
266 …module = target.AddModule ("/usr/lib/system/libsystem_dnssd.dylib", triple, None, "/build/server/b…
268 …module = target.AddModule ("/usr/lib/system/libsystem_kernel.dylib", triple, None, "/build/server/…
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbtest.py2003 shlib_module = target.AddModule(local_shlib_path, None, None, None)