Home | History | Annotate | Download | only in antlr3

Lines Matching defs:StringStream

64 StringStream::
65 Similar to StringIO from the standard Ruby library, StringStream wraps raw
68 A subclass of StringStream, FileStream simply wraps data read from an IO or
282 sequence of tokens. Unlike simple character-based streams, such as StringStream,
340 =begin rdoc ANTLR3::StringStream
342 A StringStream's purpose is to wrap the basic, naked text input of a recognition
345 symbols as it requires. StringStream and its subclasses are they main way to
366 class StringStream
390 # creates a new StringStream object where +data+ is the string data to stream.
423 # creates a new StringStream object where +data+ is the string data to stream.
668 is nearly identical to StringStream and functions as use data located in a file
675 class FileStream < StringStream
686 # see StringStream.new for a list of additional options
734 source_input = ANTLR3::StringStream.new("35 * 4 - 1")