| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/ |
| D | lldb-forward.h | 277 typedef std::shared_ptr<lldb_private::ABI> ABISP; 278 typedef std::shared_ptr<lldb_private::Baton> BatonSP; 279 typedef std::shared_ptr<lldb_private::Block> BlockSP; 280 typedef std::shared_ptr<lldb_private::Breakpoint> BreakpointSP; 282 typedef std::shared_ptr<lldb_private::BreakpointSite> BreakpointSiteSP; 284 typedef std::shared_ptr<lldb_private::BreakpointLocation> BreakpointLocationSP; 286 typedef std::shared_ptr<lldb_private::BreakpointResolver> BreakpointResolverSP; 287 typedef std::shared_ptr<lldb_private::Broadcaster> BroadcasterSP; 288 typedef std::shared_ptr<lldb_private::ClangExpressionVariable> ClangExpressionVariableSP; 289 typedef std::shared_ptr<lldb_private::CommandObject> CommandObjectSP; [all …]
|
| /freebsd-10-stable/contrib/libc++/include/ |
| D | memory | 358 class shared_ptr 364 constexpr shared_ptr() noexcept; 365 template<class Y> explicit shared_ptr(Y* p); 366 template<class Y, class D> shared_ptr(Y* p, D d); 367 template<class Y, class D, class A> shared_ptr(Y* p, D d, A a); 368 template <class D> shared_ptr(nullptr_t p, D d); 369 template <class D, class A> shared_ptr(nullptr_t p, D d, A a); 370 template<class Y> shared_ptr(const shared_ptr<Y>& r, T *p) noexcept; 371 shared_ptr(const shared_ptr& r) noexcept; 372 template<class Y> shared_ptr(const shared_ptr<Y>& r) noexcept; [all …]
|
| D | condition_variable | 125 shared_ptr<mutex> __mut_; 190 shared_ptr<mutex> __mut = __mut_; 212 shared_ptr<mutex> __mut = __mut_;
|
| /freebsd-10-stable/contrib/libstdc++/include/tr1/ |
| D | boost_shared_ptr.h | 461 class shared_ptr; variable 972 class shared_ptr 976 shared_ptr() in shared_ptr() function 981 shared_ptr(_Tp1* __p) in shared_ptr() function 985 shared_ptr(_Tp1* __p, _Deleter __d) in shared_ptr() function 989 shared_ptr(const shared_ptr<_Tp1>& __r) in shared_ptr() function 994 shared_ptr(const weak_ptr<_Tp1>& __r) in shared_ptr() function 999 shared_ptr(std::auto_ptr<_Tp1>& __r) in shared_ptr() function 1003 shared_ptr(const shared_ptr<_Tp1>& __r, __static_cast_tag) in shared_ptr() function 1007 shared_ptr(const shared_ptr<_Tp1>& __r, __const_cast_tag) in shared_ptr() function [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| D | DWARFDebugLine.h | 72 typedef std::shared_ptr<Prologue> shared_ptr; typedef 135 typedef std::shared_ptr<LineTable> shared_ptr; typedef 153 Prologue::shared_ptr prologue; 171 State (Prologue::shared_ptr& prologue_sp, 185 Prologue::shared_ptr prologue; 212 LineTable::shared_ptr GetLineTable(const dw_offset_t offset) const; 215 typedef std::map<dw_offset_t, LineTable::shared_ptr> LineTableMap;
|
| D | DWARFDebugLine.cpp | 39 LineTable::shared_ptr line_table_sp(new LineTable); in Parse() 72 DWARFDebugLine::LineTable::shared_ptr 75 DWARFDebugLine::LineTable::shared_ptr line_table_shared_ptr; in GetLineTable() 585 Prologue::shared_ptr prologue(new Prologue()); in ParseStatementTable() 1203 DWARFDebugLine::State::State(Prologue::shared_ptr& p, Log *l, DWARFDebugLine::State::Callback cb, v… in State()
|
| D | DWARFDebugInfo.h | 24 typedef std::shared_ptr<DWARFCompileUnit> DWARFCompileUnitSP;
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ |
| D | ObjectContainerBSDArchive.h | 127 typedef std::shared_ptr<Archive> shared_ptr; typedef 128 typedef std::multimap<lldb_private::FileSpec, shared_ptr> Map; 136 static Archive::shared_ptr 142 static Archive::shared_ptr 224 SetArchive (Archive::shared_ptr &archive_sp); 226 Archive::shared_ptr m_archive_sp;
|
| D | ObjectContainerBSDArchive.cpp | 199 ObjectContainerBSDArchive::Archive::shared_ptr 203 shared_ptr archive_sp; in FindCachedArchive() 241 ObjectContainerBSDArchive::Archive::shared_ptr 251 shared_ptr archive_sp(new Archive (arch, time, file_offset, data)); in ParseAndCacheArchiveForFile() 345 Archive::shared_ptr archive_sp (Archive::FindCachedArchive (*file, in CreateInstance() 372 Archive::shared_ptr archive_sp (Archive::FindCachedArchive (*file, in CreateInstance() 422 ObjectContainerBSDArchive::SetArchive (Archive::shared_ptr &archive_sp) in SetArchive() 543 …Archive::shared_ptr archive_sp (Archive::FindCachedArchive (file, ArchSpec(), file_mod_time, file_… in GetModuleSpecifications()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ |
| D | TypeFormat.h | 135 typedef std::shared_ptr<TypeFormatImpl> SharedPointer; 229 typedef std::shared_ptr<TypeFormatImpl_Format> SharedPointer; 272 typedef std::shared_ptr<TypeFormatImpl_EnumType> SharedPointer;
|
| D | TypeSynthetic.h | 84 typedef std::shared_ptr<SyntheticChildrenFrontEnd> SharedPointer; 264 typedef std::shared_ptr<SyntheticChildren> SharedPointer; 432 typedef std::shared_ptr<SyntheticChildrenFrontEnd> SharedPointer; 596 typedef std::shared_ptr<SyntheticChildrenFrontEnd> SharedPointer;
|
| D | TypeSummary.h | 333 typedef std::shared_ptr<TypeSummaryImpl> SharedPointer; 463 typedef std::shared_ptr<CXXFunctionSummaryFormat> SharedPointer; 537 typedef std::shared_ptr<ScriptSummaryFormat> SharedPointer;
|
| D | FormatClasses.h | 80 IsMatch (const std::shared_ptr<Formatter>& formatter_sp) const in IsMatch()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ |
| D | UnwindLLDB.h | 81 typedef std::shared_ptr<RegisterContextLLDB> RegisterContextLLDBSP; 126 typedef std::shared_ptr<Cursor> CursorSP;
|
| D | RegisterContextDummy.h | 24 typedef std::shared_ptr<RegisterContextDummy> SharedPtr;
|
| D | RegisterContextHistory.h | 24 typedef std::shared_ptr<RegisterContextHistory> SharedPtr;
|
| D | RegisterContextLLDB.h | 28 typedef std::shared_ptr<RegisterContextLLDB> SharedPtr;
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| D | ClangASTImporter.h | 159 typedef std::shared_ptr<NamespaceMap> NamespaceMapSP; 289 typedef std::shared_ptr<Minion> MinionSP; 312 typedef std::shared_ptr<ASTContextMetadata> ASTContextMetadataSP;
|
| D | DWARFCallFrameInfo.h | 101 typedef std::shared_ptr<CIE> CIESP;
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/API/ |
| D | SBQueue.h | 78 std::shared_ptr<lldb_private::QueueImpl> m_opaque_sp;
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ |
| D | PriorityPointerPair.h | 33 typedef typename std::shared_ptr<T> T_SP;
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Target/ |
| D | Memory.h | 173 typedef std::shared_ptr<AllocatedBlock> AllocatedBlockSP;
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ |
| D | ClangUserExpression.h | 50 typedef std::shared_ptr<ClangUserExpression> ClangUserExpressionSP;
|
| D | Materializer.h | 82 typedef std::shared_ptr<Dematerializer> DematerializerSP;
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/ |
| D | SourceManager.h | 98 typedef std::shared_ptr<File> FileSP;
|