Lines Matching refs:SBFileSpecList

24 SBFileSpecList::SBFileSpecList() : m_opaque_up(new FileSpecList()) {  in SBFileSpecList()  function in SBFileSpecList
25 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBFileSpecList); in SBFileSpecList()
28 SBFileSpecList::SBFileSpecList(const SBFileSpecList &rhs) : m_opaque_up() { in SBFileSpecList() function in SBFileSpecList
29 LLDB_RECORD_CONSTRUCTOR(SBFileSpecList, (const lldb::SBFileSpecList &), rhs); in SBFileSpecList()
35 SBFileSpecList::~SBFileSpecList() = default;
37 const SBFileSpecList &SBFileSpecList::operator=(const SBFileSpecList &rhs) { in operator =()
38 LLDB_RECORD_METHOD(const lldb::SBFileSpecList &, in operator =()
39 SBFileSpecList, operator=,(const lldb::SBFileSpecList &), in operator =()
47 uint32_t SBFileSpecList::GetSize() const { in GetSize()
48 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBFileSpecList, GetSize); in GetSize()
53 void SBFileSpecList::Append(const SBFileSpec &sb_file) { in Append()
54 LLDB_RECORD_METHOD(void, SBFileSpecList, Append, (const lldb::SBFileSpec &), in Append()
60 bool SBFileSpecList::AppendIfUnique(const SBFileSpec &sb_file) { in AppendIfUnique()
61 LLDB_RECORD_METHOD(bool, SBFileSpecList, AppendIfUnique, in AppendIfUnique()
67 void SBFileSpecList::Clear() { in Clear()
68 LLDB_RECORD_METHOD_NO_ARGS(void, SBFileSpecList, Clear); in Clear()
73 uint32_t SBFileSpecList::FindFileIndex(uint32_t idx, const SBFileSpec &sb_file, in FindFileIndex()
75 LLDB_RECORD_METHOD(uint32_t, SBFileSpecList, FindFileIndex, in FindFileIndex()
82 const SBFileSpec SBFileSpecList::GetFileSpecAtIndex(uint32_t idx) const { in GetFileSpecAtIndex()
83 LLDB_RECORD_METHOD_CONST(const lldb::SBFileSpec, SBFileSpecList, in GetFileSpecAtIndex()
91 const lldb_private::FileSpecList *SBFileSpecList::operator->() const { in operator ->()
95 const lldb_private::FileSpecList *SBFileSpecList::get() const { in get()
99 const lldb_private::FileSpecList &SBFileSpecList::operator*() const { in operator *()
103 const lldb_private::FileSpecList &SBFileSpecList::ref() const { in ref()
107 bool SBFileSpecList::GetDescription(SBStream &description) const { in GetDescription()
108 LLDB_RECORD_METHOD_CONST(bool, SBFileSpecList, GetDescription, in GetDescription()
131 void RegisterMethods<SBFileSpecList>(Registry &R) { in RegisterMethods()
132 LLDB_REGISTER_CONSTRUCTOR(SBFileSpecList, ()); in RegisterMethods()
133 LLDB_REGISTER_CONSTRUCTOR(SBFileSpecList, (const lldb::SBFileSpecList &)); in RegisterMethods()
135 const lldb::SBFileSpecList &, in RegisterMethods()
136 SBFileSpecList, operator=,(const lldb::SBFileSpecList &)); in RegisterMethods()
137 LLDB_REGISTER_METHOD_CONST(uint32_t, SBFileSpecList, GetSize, ()); in RegisterMethods()
138 LLDB_REGISTER_METHOD(void, SBFileSpecList, Append, in RegisterMethods()
140 LLDB_REGISTER_METHOD(bool, SBFileSpecList, AppendIfUnique, in RegisterMethods()
142 LLDB_REGISTER_METHOD(void, SBFileSpecList, Clear, ()); in RegisterMethods()
143 LLDB_REGISTER_METHOD(uint32_t, SBFileSpecList, FindFileIndex, in RegisterMethods()
145 LLDB_REGISTER_METHOD_CONST(const lldb::SBFileSpec, SBFileSpecList, in RegisterMethods()
147 LLDB_REGISTER_METHOD_CONST(bool, SBFileSpecList, GetDescription, in RegisterMethods()