Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/bindings/python/
H A Dpython-wrapper.swig29 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(
76 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(
164 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(
195 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(
355 auto pfunc = self.ResolveName<PythonCallable>(method_name);
424 auto pfunc = self.ResolveName<PythonCallable>(method_name);
525 auto pfunc = self.ResolveName<PythonCallable>("handle_stop");
562 auto pfunc = self.ResolveName<PythonCallable>(callee_name);
581 auto pfunc = self.ResolveName<PythonCallable>("num_children");
642 auto pfunc = self.ResolveName<PythonCallable>("get_child_index");
[all …]
/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/
H A DPythonDataObjectsTests.cpp93 PythonObject sys_module = m_main_module.ResolveName("sys"); in TEST_F()
100 PythonObject sys_path = m_sys_module.ResolveName("path"); in TEST_F()
101 PythonObject sys_version_info = m_sys_module.ResolveName("version_info"); in TEST_F()
109 PythonObject sys_version_info = m_sys_module.ResolveName("version_info"); in TEST_F()
119 PythonObject sys_version_info = m_sys_module.ResolveName("version_info"); in TEST_F()
120 PythonObject major_version_field = sys_version_info.ResolveName("major"); in TEST_F()
121 PythonObject minor_version_field = sys_version_info.ResolveName("minor"); in TEST_F()
134 PythonObject sys_path = m_main_module.ResolveName("sys.path"); in TEST_F()
139 As<long long>(m_main_module.ResolveName("sys.version_info.major")); in TEST_F()
142 As<long long>(m_main_module.ResolveName("sys.version_info.minor")); in TEST_F()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h276 PythonObject ResolveName(llvm::StringRef name) const;
278 template <typename T> T ResolveName(llvm::StringRef name) const {
279 return ResolveName(name).AsType<T>();
H A DPythonDataObjects.cpp212 return result.ResolveName(name.substr(dot_pos + 1)); in ResolveNameWithDictionary()
215 PythonObject PythonObject::ResolveName(llvm::StringRef name) const { in ResolveName() function in PythonObject
235 PythonObject parent = ResolveName(name.substr(0, dot_pos)); in ResolveName()
240 return parent.ResolveName(name.substr(dot_pos + 1)); in ResolveName()
H A DScriptInterpreterPython.cpp760 .ResolveName<PythonDictionary>(m_dictionary_name); in GetMaxPositionalArgumentsForCallable()
/llvm-project-15.0.7/llvm/tools/llvm-exegesis/
H A Dllvm-exegesis.cpp236 const auto ResolveName = [&MCInstrInfo](StringRef OpcodeName) -> unsigned { in getOpcodesOrDie() local
247 if (unsigned Opcode = ResolveName(OpcodeName)) in getOpcodesOrDie()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dresolve-directives.cpp220 Symbol *ResolveName(const parser::Name &);
426 ResolveName(&name); in Pre()
524 Symbol *ResolveName(const parser::Name *);
713 Symbol *AccAttributeVisitor::ResolveName(const parser::Name &name) { in ResolveName() function in Fortran::semantics::AccAttributeVisitor
724 if (!ResolveName(*optName)) { in Pre()
735 if (!ResolveName(*name)) { in Pre()
1496 Symbol *OmpAttributeVisitor::ResolveName(const parser::Name *name) { in ResolveName() function in Fortran::semantics::OmpAttributeVisitor
1508 if (ResolveName(&name)) { in ResolveOmpName()
H A Dresolve-names.cpp1000 const parser::Name *ResolveName(const parser::Name &);
1462 ResolveName(*parser::Unwrap<parser::Name>(x.name)); in Post()
4912 if (const auto *name{ResolveName(subrName)}) { in Post()
5109 if (ResolveName(pointeeName)) { in Pre()
6474 [=](const parser::Name &y) { return ResolveName(y); }, in ResolveDataRef()
6501 const parser::Name *DeclarationVisitor::ResolveName(const parser::Name &name) { in ResolveName() function in Fortran::semantics::DeclarationVisitor
7276 [&](const parser::Name &x) { ResolveName(x); }, in Post()
7285 [&](const parser::Name &x) { ResolveName(x); }, in Post()
7338 ResolveName(name); in Pre()
7359 if (auto *name{ResolveName(std::get<parser::Name>(x.t))}) { in Post()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DSymbolFile.h295 virtual const RegisterInfo *ResolveName(llvm::StringRef name) const = 0;
/llvm-project-15.0.7/lldb/source/Symbol/
H A DFuncUnwinders.cpp186 const RegisterInfo *ResolveName(llvm::StringRef name) const override { in ResolveName() function in __anon039eb58d0111::RegisterContextToInfo
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp560 return resolver.ResolveName(name); in ResolveRegister()