reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
  577   llvm::Expected<PythonObject> GetItem(const llvm::Twine &key) const;

References

tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
 1532   auto f = As<PythonCallable>(globals.GetItem("main"));
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
  773       As<PythonDictionary>(main_dict.GetItem(m_dictionary_name)));
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
  722     auto bar_bound = As<PythonCallable>(globals.GetItem("bar_bound"));
  730     auto bar_unbound = As<PythonCallable>(globals.GetItem("bar_unbound"));
  738     auto bar_class = As<PythonCallable>(globals.GetItem("bar_class"));
  745     auto bar_static = As<PythonCallable>(globals.GetItem("bar_static"));
  752     auto obj = As<PythonCallable>(globals.GetItem("obj"));
  844   auto y = As<long long>(globals.GetItem("n"));
  856   auto g = As<std::string>(globals.GetItem("g"));