Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig426 auto pfunc = self.ResolveName<PythonCallable>(method_name);
513 auto pfunc = self.ResolveName<PythonCallable>(method_name);
576 PythonModule::MainModule().ResolveName<PythonDictionary>(
601 auto callback_func = result.ResolveName<PythonCallable>("handle_stop");
643 auto pfunc = self.ResolveName<PythonCallable>("handle_stop");
688 auto pfunc = self.ResolveName<PythonCallable>(callee_name);
713 auto pfunc = self.ResolveName<PythonCallable>("num_children");
753 auto pfunc = self.ResolveName<PythonCallable>("get_child_at_index");
783 auto pfunc = self.ResolveName<PythonCallable>("get_child_index");
979 auto pfunc = self.ResolveName<PythonCallable>("__call__");
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h298 PythonObject ResolveName(llvm::StringRef name) const;
300 template <typename T> T ResolveName(llvm::StringRef name) const {
301 return ResolveName(name).AsType<T>();
H A DPythonDataObjects.cpp209 return result.ResolveName(name.substr(dot_pos + 1)); in ResolveNameWithDictionary()
212 PythonObject PythonObject::ResolveName(llvm::StringRef name) const { in ResolveName() function in PythonObject
232 PythonObject parent = ResolveName(name.substr(0, dot_pos)); in ResolveName()
237 return parent.ResolveName(name.substr(dot_pos + 1)); in ResolveName()
H A DScriptInterpreterPython.cpp889 .ResolveName<PythonDictionary>(m_dictionary_name); in GetMaxPositionalArgumentsForCallable()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolFile.h284 virtual const RegisterInfo *ResolveName(llvm::StringRef name) const = 0;
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DFuncUnwinders.cpp186 const RegisterInfo *ResolveName(llvm::StringRef name) const override { in ResolveName() function in __anon32bf4b910111::RegisterContextToInfo
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp424 return resolver.ResolveName(name); in ResolveRegister()