Home
last modified time | relevance | path

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

/external/llvm-project/lldb/bindings/python/
Dpython-wrapper.swig58 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
107 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
210 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
245 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
277 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
343 auto pfunc = self.ResolveName<PythonCallable>(method_name);
391 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
411 auto callback_func = result.ResolveName<PythonCallable>("__callback__");
430 auto pfunc = self.ResolveName<PythonCallable>(method_name);
493 PythonModule::MainModule().ResolveName<PythonDictionary>(
[all …]
/external/llvm-project/lldb/unittests/ScriptInterpreter/Python/
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()
114 PythonObject major_version_field = version_info_type.ResolveName("major"); 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()
[all …]
/external/tensorflow/tensorflow/core/platform/cloud/
Dgcs_dns_cache.cc96 /* static */ std::vector<string> GcsDnsCache::ResolveName(const string& name) { in ResolveName() function in tensorflow::GcsDnsCache
150 all_addresses.push_back(ResolveName(name)); in ResolveNames()
Dgcs_dns_cache.h54 static std::vector<string> ResolveName(const string& name);
Dgcs_dns_cache_test.cc71 auto response = GcsDnsCache::ResolveName("www.googleapis.com"); in ResolveNameTest()
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DPythonDataObjects.h298 PythonObject ResolveName(llvm::StringRef name) const;
300 template <typename T> T ResolveName(llvm::StringRef name) const {
301 return ResolveName(name).AsType<T>();
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()
DScriptInterpreterPython.cpp860 .ResolveName<PythonDictionary>(m_dictionary_name); in GetMaxPositionalArgumentsForCallable()
/external/llvm-project/llvm/tools/llvm-exegesis/
Dllvm-exegesis.cpp228 const auto ResolveName = [&MCInstrInfo](StringRef OpcodeName) -> unsigned { in getOpcodesOrDie() local
239 if (unsigned Opcode = ResolveName(OpcodeName)) in getOpcodesOrDie()
/external/llvm-project/lldb/include/lldb/Symbol/
DSymbolFile.h283 virtual const RegisterInfo *ResolveName(llvm::StringRef name) const = 0;
/external/llvm-project/flang/lib/Semantics/
Dresolve-directives.cpp368 Symbol *ResolveName(const parser::Name *);
1046 Symbol *OmpAttributeVisitor::ResolveName(const parser::Name *name) { in ResolveName() function in Fortran::semantics::OmpAttributeVisitor
1058 if (ResolveName(&name)) { in ResolveOmpName()
Dresolve-names.cpp863 const parser::Name *ResolveName(const parser::Name &);
1309 ResolveName(*parser::Unwrap<parser::Name>(x.name)); in Post()
4111 if (const auto *name{ResolveName(subrName)}) { in Post()
4234 if (ResolveName(pointeeName)) { in Pre()
5502 [=](const parser::Name &y) { return ResolveName(y); }, in ResolveDataRef()
5528 const parser::Name *DeclarationVisitor::ResolveName(const parser::Name &name) { in ResolveName() function in Fortran::semantics::DeclarationVisitor
6215 [&](const parser::Name &x) { ResolveName(x); }, in Post()
6224 [&](const parser::Name &x) { ResolveName(x); }, in Post()
6266 ResolveName(name); in Pre()
6287 if (auto *name{ResolveName(std::get<parser::Name>(x.t))}) { in Post()
[all …]
/external/llvm-project/lldb/source/Symbol/
DFuncUnwinders.cpp186 const RegisterInfo *ResolveName(llvm::StringRef name) const override { in ResolveName() function in __anon8d095cf40111::RegisterContextToInfo
/external/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
DSymbolFileBreakpad.cpp425 return resolver.ResolveName(name); in ResolveRegister()