Lines Matching refs:SBFileSpecList
24 SBFileSpecList::SBFileSpecList() : m_opaque_ap(new FileSpecList()) {} in SBFileSpecList() function in SBFileSpecList
26 SBFileSpecList::SBFileSpecList(const SBFileSpecList &rhs) : m_opaque_ap() { in SBFileSpecList() function in SBFileSpecList
40 SBFileSpecList::~SBFileSpecList() {} in ~SBFileSpecList()
42 const SBFileSpecList &SBFileSpecList::operator=(const SBFileSpecList &rhs) { in operator =()
49 uint32_t SBFileSpecList::GetSize() const { return m_opaque_ap->GetSize(); } in GetSize()
51 void SBFileSpecList::Append(const SBFileSpec &sb_file) { in Append()
55 bool SBFileSpecList::AppendIfUnique(const SBFileSpec &sb_file) { in AppendIfUnique()
59 void SBFileSpecList::Clear() { m_opaque_ap->Clear(); } in Clear()
61 uint32_t SBFileSpecList::FindFileIndex(uint32_t idx, const SBFileSpec &sb_file, in FindFileIndex()
66 const SBFileSpec SBFileSpecList::GetFileSpecAtIndex(uint32_t idx) const { in GetFileSpecAtIndex()
72 const lldb_private::FileSpecList *SBFileSpecList::operator->() const { in operator ->()
76 const lldb_private::FileSpecList *SBFileSpecList::get() const { in get()
80 const lldb_private::FileSpecList &SBFileSpecList::operator*() const { in operator *()
84 const lldb_private::FileSpecList &SBFileSpecList::ref() const { in ref()
88 bool SBFileSpecList::GetDescription(SBStream &description) const { in GetDescription()