Lines Matching refs:FileSpecList
20 FileSpecList::FileSpecList() : m_files() {} in FileSpecList() function in FileSpecList
22 FileSpecList::~FileSpecList() = default;
25 void FileSpecList::Append(const FileSpec &file_spec) { in Append()
33 bool FileSpecList::AppendIfUnique(const FileSpec &file_spec) { in AppendIfUnique()
43 void FileSpecList::Clear() { m_files.clear(); } in Clear()
46 void FileSpecList::Dump(Stream *s, const char *separator_cstr) const { in Dump()
60 size_t FileSpecList::FindFileIndex(size_t start_idx, const FileSpec &file_spec, in FindFileIndex()
86 const FileSpec &FileSpecList::GetFileSpecAtIndex(size_t idx) const { in GetFileSpecAtIndex()
93 const FileSpec *FileSpecList::GetFileSpecPointerAtIndex(size_t idx) const { in GetFileSpecPointerAtIndex()
103 size_t FileSpecList::MemorySize() const { in MemorySize()
104 size_t mem_size = sizeof(FileSpecList); in MemorySize()
114 size_t FileSpecList::GetSize() const { return m_files.size(); } in GetSize()
116 size_t FileSpecList::GetFilesMatchingPartialPath(const char *path, in GetFilesMatchingPartialPath()
118 FileSpecList &matches) { in GetFilesMatchingPartialPath()