HomeSort by relevance Sort by last modified time
    Searched defs:StringStream (Results 1 - 5 of 5) sorted by null

  /external/v8/src/
string-stream.h 98 friend class StringStream;
113 class StringStream {
115 explicit StringStream(StringAllocator* allocator):
123 ~StringStream() {
186 DISALLOW_IMPLICIT_CONSTRUCTORS(StringStream);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 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
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
streams.py 590 # mumbojumbo. A plain "StringStream" looks better to me, which should be
592 StringStream = ANTLRStringStream
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
stream.cc 928 // StringStream - Reads/Writes to an external std::string
931 StringStream::StringStream(std::string& str)
936 StringStream::StringStream(const std::string& str)
941 StreamState StringStream::GetState() const {
945 StreamResult StringStream::Read(void* buffer, size_t buffer_len,
957 StreamResult StringStream::Write(const void* data, size_t data_len,
972 void StringStream::Close() {
975 bool StringStream::SetPosition(size_t position)
    [all...]
stream.h 615 // StringStream - Reads/Writes to an external std::string
618 class StringStream : public StreamInterface {
620 explicit StringStream(std::string& str);
621 explicit StringStream(const std::string& str);

Completed in 103 milliseconds