Home
last modified time | relevance | path

Searched refs:ResolveName (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig29 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(
76 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(
103 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(
296 auto pfunc = self.ResolveName<PythonCallable>(method_name);
334 auto pfunc = self.ResolveName<PythonCallable>(method_name);
397 auto pfunc = self.ResolveName<PythonCallable>(method_name);
498 auto pfunc = self.ResolveName<PythonCallable>("handle_stop");
535 auto pfunc = self.ResolveName<PythonCallable>(callee_name);
554 auto pfunc = self.ResolveName<PythonCallable>("num_children");
615 auto pfunc = self.ResolveName<PythonCallable>("get_child_index");
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h289 PythonObject ResolveName(llvm::StringRef name) const;
291 template <typename T> T ResolveName(llvm::StringRef name) const {
292 return ResolveName(name).AsType<T>();
H A DPythonDataObjects.cpp215 return result.ResolveName(name.substr(dot_pos + 1)); in ResolveNameWithDictionary()
218 PythonObject PythonObject::ResolveName(llvm::StringRef name) const { in ResolveName() function in PythonObject
238 PythonObject parent = ResolveName(name.substr(0, dot_pos)); in ResolveName()
243 return parent.ResolveName(name.substr(dot_pos + 1)); in ResolveName()
H A DScriptInterpreterPython.cpp773 .ResolveName<PythonDictionary>(m_dictionary_name); in GetMaxPositionalArgumentsForCallable()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h107 PythonModule::MainModule().ResolveName<python::PythonDictionary>( in CreatePluginObject()
173 .ResolveName("dict") in CreatePluginObject()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolFile.h364 virtual const RegisterInfo *ResolveName(llvm::StringRef name) const = 0;
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DFuncUnwinders.cpp186 const RegisterInfo *ResolveName(llvm::StringRef name) const override { in ResolveName() function in __anonac1ed6530111::RegisterContextToInfo
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp555 return resolver.ResolveName(name); in ResolveRegister()