Home | History | Annotate | Download | only in Support

Lines Matching defs:Stream

20 //  The most important class here is Stream. This represents a YAML stream with
25 // yaml::Stream stream(input, sm);
27 // for (yaml::document_iterator di = stream.begin(), de = stream.end();
62 /// \brief Dump all the tokens in this stream to OS.
74 /// \brief This class represents a YAML stream potentially containing multiple
76 class Stream {
79 Stream(StringRef Input, SourceMgr &, bool ShowColors = true,
82 Stream(MemoryBufferRef InputBuffer, SourceMgr &, bool ShowColors = true,
84 ~Stream();
385 /// This parses the YAML stream as increment() is called.
432 /// This parses the YAML stream as increment() is called.
506 /// \brief A YAML Stream is a sequence of Documents. A document contains a root
513 Document(Stream &ParentStream);
532 /// \brief Stream to read tokens from.
533 Stream &stream;
564 /// \brief Iterator abstraction for Documents over a Stream.
583 Stream &S = (*Doc)->stream;