Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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>(
190 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(
221 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(
243 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(
285 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(
339 auto pfunc = self.ResolveName<PythonCallable>(method_name);
381 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(
396 auto callback_func = result.ResolveName<PythonCallable>("__callback__");
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h288 PythonObject ResolveName(llvm::StringRef name) const;
290 template <typename T> T ResolveName(llvm::StringRef name) const {
291 return ResolveName(name).AsType<T>();
H A DPythonDataObjects.cpp211 return result.ResolveName(name.substr(dot_pos + 1)); in ResolveNameWithDictionary()
214 PythonObject PythonObject::ResolveName(llvm::StringRef name) const { in ResolveName() function in PythonObject
234 PythonObject parent = ResolveName(name.substr(0, dot_pos)); in ResolveName()
239 return parent.ResolveName(name.substr(dot_pos + 1)); in ResolveName()
H A DScriptInterpreterPython.cpp764 .ResolveName<PythonDictionary>(m_dictionary_name); in GetMaxPositionalArgumentsForCallable()
/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/
H A Dllvm-exegesis.cpp292 const auto ResolveName = [&State](StringRef OpcodeName) -> unsigned { in getOpcodesOrDie() local
305 if (unsigned Opcode = ResolveName(OpcodeName)) in getOpcodesOrDie()
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DSymbolFile.h340 virtual const RegisterInfo *ResolveName(llvm::StringRef name) const = 0;
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DFuncUnwinders.cpp186 const RegisterInfo *ResolveName(llvm::StringRef name) const override { in ResolveName() function in __anon0c9333940111::RegisterContextToInfo
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp562 return resolver.ResolveName(name); in ResolveRegister()