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

Declarations

tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
   68 class PythonDictionary;

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
79565     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
79565     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
79612     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
79612     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
79660     if (!PythonDictionary::Check(py_dict))
79663     PythonDictionary dict(PyRefType::Borrowed, py_dict);
79715     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
79715     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
79750     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
79750     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
79785     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
79785     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
79885     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
79885     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80200     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80200     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80271     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80271     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80304     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80304     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80369     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80369     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80397     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80397     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80425     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80425     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80453     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80453     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80481     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80481     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80510     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
80510     auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
include/llvm/Support/AlignOf.h
   30   T t;
   39 template <typename T> union SizerImpl<T> { char arr[sizeof(T)]; };
   50       llvm::detail::SizerImpl<T, Ts...>)];
include/llvm/Support/Error.h
  437   static const bool isRef = std::is_reference<T>::value;
  439   using wrap = std::reference_wrapper<typename std::remove_reference<T>::type>;
  444   using storage_type = typename std::conditional<isRef, wrap, T>::type;
  445   using value_type = T;
  448   using reference = typename std::remove_reference<T>::type &;
  449   using const_reference = const typename std::remove_reference<T>::type &;
  450   using pointer = typename std::remove_reference<T>::type *;
  451   using const_pointer = const typename std::remove_reference<T>::type *;
  474   Expected(OtherT &&Val,
  475            typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  475            typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  483     new (getStorage()) storage_type(std::forward<OtherT>(Val));
  492   Expected(Expected<OtherT> &&Other,
  493            typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  493            typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  594   template <class OtherT> void moveConstruct(Expected<OtherT> &&Other) {
tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
  102   if (PythonDictionary::Check(m_py_obj))
  143                                         const PythonDictionary &dict) {
  652     *this = Take<PythonDictionary>(PyDict_New());
  792 PythonDictionary PythonModule::GetDictionary() const {
  795   return Retain<PythonDictionary>(PyModule_GetDict(m_py_obj));
 1523   PythonDictionary globals(PyInitialValue::Empty);
 1542                          const PythonDictionary &globals,
 1543                          const PythonDictionary &locals) {
 1573                            const PythonDictionary &globals,
 1574                            const PythonDictionary &locals) {
tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
  128 template <typename T> T Take(PyObject *obj) {
  131   T thing(PyRefType::Owned, obj);
  146 template <typename T> T Retain(PyObject *obj) {
  149   T thing(PyRefType::Borrowed, obj);
  278                                                 const PythonDictionary &dict);
  282                                      const PythonDictionary &dict) {
  288   template <typename T> T ResolveName(llvm::StringRef name) const {
  289     return ResolveName(name).AsType<T>();
  304   template <typename T> T AsType() const {
  305     if (!T::Check(m_py_obj))
  388 template <typename T> llvm::Expected<T> As(llvm::Expected<PythonObject> &&obj) {
  391   if (!T::Check(obj.get().get()))
  415     T::Convert(type, py_obj);
  416     if (T::Check(py_obj))
  558 class PythonDictionary : public TypedPythonObject<PythonDictionary> {
  611   PythonDictionary GetDictionary() const;
  655   PythonObject operator()(const Arg &arg, Args... args) {
  727 template <typename T> T unwrapIgnoringErrors(llvm::Expected<T> expected) {
  727 template <typename T> T unwrapIgnoringErrors(llvm::Expected<T> expected) {
  735                                               const PythonDictionary &globals,
  736                                               const PythonDictionary &locals);
  739                                                 const PythonDictionary &globals,
  740                                                 const PythonDictionary &locals);
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
  623     PythonDictionary &sys_module_dict = GetSysModuleDictionary();
  656   PythonDictionary &sys_module_dict = GetSysModuleDictionary();
  719   PythonDictionary &sys_module_dict = GetSysModuleDictionary();
  759 PythonDictionary &ScriptInterpreterPythonImpl::GetSessionDictionary() {
  767   PythonDictionary main_dict(PyRefType::Borrowed,
  773       As<PythonDictionary>(main_dict.GetItem(m_dictionary_name)));
  777 PythonDictionary &ScriptInterpreterPythonImpl::GetSysModuleDictionary() {
  797   auto dict = PythonModule::MainModule()
  798       .ResolveName<PythonDictionary>(m_dictionary_name);
  836   PythonDictionary module_dict(PyRefType::Borrowed,
  962       PythonDictionary &session_dict = GetSessionDictionary();
 1074   PythonDictionary globals = main_module.GetDictionary();
 1076   PythonDictionary locals = GetSessionDictionary();
 1079         As<PythonDictionary>(globals.GetAttribute(m_dictionary_name)));
 1186   PythonDictionary globals = main_module.GetDictionary();
 1188   PythonDictionary locals = GetSessionDictionary();
 1191         As<PythonDictionary>(globals.GetAttribute(m_dictionary_name)));
 1634     PythonDictionary result_dict(PyRefType::Borrowed, py_return.get());
 1835     PythonDictionary result_dict(PyRefType::Borrowed, py_return.get());
 2054   PythonDictionary py_dict =
 2055       unwrapIgnoringErrors(As<PythonDictionary>(Take<PythonObject>(setting)));
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
  378   python::PythonDictionary &GetSessionDictionary();
  380   python::PythonDictionary &GetSysModuleDictionary();
  395   python::PythonDictionary m_session_dict;
  396   python::PythonDictionary m_sys_module_dict;
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
   71   PythonDictionary dict(PyInitialValue::Empty);
   74   dict = Take<PythonDictionary>(new_dict);
   77   dict = Take<PythonDictionary>(PyDict_New());
  154   PythonDictionary dict(PyInitialValue::Empty);
  477   PythonDictionary dict(PyRefType::Owned, py_dict);
  515   PythonDictionary dict(PyInitialValue::Empty);
  541   PythonDictionary dict(PyInitialValue::Empty);
  607   PythonDictionary python_dict(PyInitialValue::Empty);
  631   PythonDictionary globals(PyInitialValue::Empty);
  836   PythonDictionary globals(PyInitialValue::Empty);
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
   98     move(_Tp&& __t) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  762     typename add_rvalue_reference<_Tp>::type declval() noexcept;
 1526 	static void __test_aux(_To1);
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1545     : public __is_convertible_helper<_From, _To>::type
 1545     : public __is_convertible_helper<_From, _To>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1659     { typedef _Tp&&   type; };
 1664     : public __add_rvalue_reference_helper<_Tp>
 2171     { typedef _Iffalse type; };