Home
last modified time | relevance | path

Searched refs:GetItem (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxList.cpp132 ValueObjectSP GetItem(size_t idx);
223 ValueObjectSP AbstractListFrontEnd::GetItem(size_t idx) { in GetItem() function in AbstractListFrontEnd
266 ValueObjectSP current_sp = GetItem(idx); in GetChildAtIndex()
359 ValueObjectSP current_sp = GetItem(idx); in GetChildAtIndex()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp693 auto item = GetItem(key); in GetItemForKey()
702 PythonDictionary::GetItem(const PythonObject &key) const { in GetItem() function in PythonDictionary
713 Expected<PythonObject> PythonDictionary::GetItem(const Twine &key) const { in GetItem() function in PythonDictionary
1477 auto f = As<PythonCallable>(globals.GetItem("main")); in Init()
H A DPythonDataObjects.h577 llvm::Expected<PythonObject> GetItem(const PythonObject &key) const;
578 llvm::Expected<PythonObject> GetItem(const llvm::Twine &key) const;
H A DScriptInterpreterPython.cpp754 As<PythonDictionary>(main_dict.GetItem(m_dictionary_name))); in GetSessionDictionary()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h59 auto callable_or_err = class_dict.GetItem(method_name); in CheckAbstractMethodImplementation()