Home
last modified time | relevance | path

Searched refs:ResolveNameWithDictionary (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig70 … auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>(python_function_name, dict);
125 … auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>(python_function_name, dict);
183 pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>(python_function_name, dict);
228 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>(python_class_name,dict);
263 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>(python_class_name, dict);
295 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>(python_class_name, dict);
361 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>(python_class_name, dict);
475 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>(python_class_name, dict);
579 PythonObject::ResolveNameWithDictionary<PythonCallable>(
1009 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>(python_class_name, dict);
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h289 static PythonObject ResolveNameWithDictionary(llvm::StringRef name,
293 static T ResolveNameWithDictionary(llvm::StringRef name,
295 return ResolveNameWithDictionary(name, dict).AsType<T>();
H A DPythonDataObjects.cpp197 PythonObject::ResolveNameWithDictionary(llvm::StringRef name, in ResolveNameWithDictionary() function in PythonObject
H A DScriptInterpreterPython.cpp890 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>( in GetMaxPositionalArgumentsForCallable()