Searched defs:ListStream (Results 1 – 1 of 1) sorted by relevance
62 template <typename EntryT> struct ListStream : public Stream { struct67 explicit ListStream(std::vector<entry_type> Entries = {}) argument68 : Stream(EntryT::Kind, EntryT::Type), Entries(std::move(Entries)) {} in Stream()70 static bool classof(const Stream *S) { return S->Kind == EntryT::Kind; } in classof()123 : ListStream(Entries) {} in ListStream() function