Lines Matching refs:SBModuleSpecList
102 SBModuleSpecList::SBModuleSpecList() : m_opaque_ap(new ModuleSpecList()) {} in SBModuleSpecList() function in SBModuleSpecList
104 SBModuleSpecList::SBModuleSpecList(const SBModuleSpecList &rhs) in SBModuleSpecList() function in SBModuleSpecList
107 SBModuleSpecList &SBModuleSpecList::operator=(const SBModuleSpecList &rhs) { in operator =()
113 SBModuleSpecList::~SBModuleSpecList() {} in ~SBModuleSpecList()
115 SBModuleSpecList SBModuleSpecList::GetModuleSpecifications(const char *path) { in GetModuleSpecifications()
116 SBModuleSpecList specs; in GetModuleSpecifications()
124 void SBModuleSpecList::Append(const SBModuleSpec &spec) { in Append()
128 void SBModuleSpecList::Append(const SBModuleSpecList &spec_list) { in Append()
132 size_t SBModuleSpecList::GetSize() { return m_opaque_ap->GetSize(); } in GetSize()
134 SBModuleSpec SBModuleSpecList::GetSpecAtIndex(size_t i) { in GetSpecAtIndex()
141 SBModuleSpecList::FindFirstMatchingSpec(const SBModuleSpec &match_spec) { in FindFirstMatchingSpec()
148 SBModuleSpecList
149 SBModuleSpecList::FindMatchingSpecs(const SBModuleSpec &match_spec) { in FindMatchingSpecs()
150 SBModuleSpecList specs; in FindMatchingSpecs()
156 bool SBModuleSpecList::GetDescription(lldb::SBStream &description) { in GetDescription()