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

Declarations

tools/lldb/include/lldb/lldb-forward.h
  211 class StructuredDataImpl;

References

tools/lldb/include/lldb/API/SBStructuredData.h
   25   SBStructuredData(lldb_private::StructuredDataImpl *impl);
tools/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
   29                              StructuredDataImpl *args_data);
   66   StructuredDataImpl *m_args_ptr; // We own this, but the implementation
tools/lldb/include/lldb/Core/StructuredDataImpl.h
   30   StructuredDataImpl(const StructuredDataImpl &rhs) = default;
   40   StructuredDataImpl &operator=(const StructuredDataImpl &rhs) = default;
   40   StructuredDataImpl &operator=(const StructuredDataImpl &rhs) = default;
tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
  216                            StructuredDataImpl *args_data,
  252                                    StructuredDataImpl *args_data,
tools/lldb/include/lldb/Target/ThreadPlanPython.h
   35                    StructuredDataImpl *args_data);
   61   StructuredDataImpl *m_args_data; // We own this, but the implementation
tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h
   36 inline void stringify_append(llvm::raw_string_ostream &ss, const T *t) {
  201   template <typename T> T *GetObjectForIndex(unsigned idx) {
  249       typename std::conditional<std::is_fundamental<T>::value,
  535   template <typename T> unsigned GetIndexForObject(T *t) {
  563   template <typename T> void Serialize(T *t) {
  564     if (std::is_fundamental<T>::value) {
  575   template <typename T> void Serialize(T &t) {
  576     if (std::is_fundamental<T>::value) {
  577       m_stream.write(reinterpret_cast<const char *>(&t), sizeof(T));
tools/lldb/include/lldb/lldb-forward.h
  427 typedef std::unique_ptr<lldb_private::StructuredDataImpl> StructuredDataImplUP;
tools/lldb/source/API/SBStructuredData.cpp
   27 SBStructuredData::SBStructuredData() : m_impl_up(new StructuredDataImpl()) {
   32     : m_impl_up(new StructuredDataImpl(*rhs.m_impl_up.get())) {
   38     : m_impl_up(new StructuredDataImpl(event_sp)) {
   42 SBStructuredData::SBStructuredData(lldb_private::StructuredDataImpl *impl)
tools/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
   32     StructuredDataImpl *args_data)
   80   StructuredDataImpl *args_data_impl = new StructuredDataImpl();
   80   StructuredDataImpl *args_data_impl = new StructuredDataImpl();
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
   79     StructuredDataImpl *args_impl);
  102     StructuredDataImpl *args_data,
  112     lldb_private::StructuredDataImpl *args, lldb::BreakpointSP &bkpt_sp);
 1842     const char *class_name, StructuredDataImpl *args_data,
 1947     const char *class_name, StructuredDataImpl *args_data,
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
   40         m_extra_args_up(new StructuredDataImpl()) {
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
   81                            StructuredDataImpl *args_data,
  101                                    StructuredDataImpl *args_data,
tools/lldb/source/Target/Target.cpp
  607   StructuredDataImpl *extra_args_impl = new StructuredDataImpl();
  607   StructuredDataImpl *extra_args_impl = new StructuredDataImpl();
tools/lldb/source/Target/Thread.cpp
 1490   StructuredDataImpl *extra_args_impl = nullptr; 
 1492     extra_args_impl = new StructuredDataImpl();
tools/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp
   66     StructuredDataImpl *args_impl) {
   99     StructuredDataImpl *args_data,
  113     lldb_private::StructuredDataImpl *args, lldb::BreakpointSP &bkpt_sp) {
usr/include/c++/7.4.0/bits/unique_ptr.h
   68         default_delete(const default_delete<_Up>&) noexcept { }
   72       operator()(_Tp* __ptr) const
   74 	static_assert(!is_void<_Tp>::value,
   76 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  161 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  163       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  166       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  167       using element_type  = _Tp;
  252 	unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
  297           __safe_conversion_up<_Up, _Ep>,
  301 	operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  595 		   is_null_pointer<_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
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>
 1983     { typedef _Up     type; };