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.cpp137 ValueObjectSP GetItem(size_t idx);
228 ValueObjectSP AbstractListFrontEnd::GetItem(size_t idx) { in GetItem() function in AbstractListFrontEnd
271 ValueObjectSP current_sp = GetItem(idx); in GetChildAtIndex()
377 ValueObjectSP current_sp = GetItem(idx); in GetChildAtIndex()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp691 auto item = GetItem(key); in GetItemForKey()
700 PythonDictionary::GetItem(const PythonObject &key) const { in GetItem() function in PythonDictionary
711 Expected<PythonObject> PythonDictionary::GetItem(const Twine &key) const { in GetItem() function in PythonDictionary
1432 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.cpp736 As<PythonDictionary>(main_dict.GetItem(m_dictionary_name))); in GetSessionDictionary()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h77 auto callable_or_err = class_dict.GetItem(method_name); in CheckAbstractMethodImplementation()