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

  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
namespacetest.cpp 46 typedef RAPIDJSON_NAMESPACE::StringStream StringStream;
50 StringStream s(json);
  /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/v8/src/
string-stream.h 84 friend class StringStream;
99 class StringStream final {
102 StringStream(StringAllocator* allocator,
178 DISALLOW_IMPLICIT_CONSTRUCTORS(StringStream);
  /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/webrtc/webrtc/base/
stream.h 594 // StringStream - Reads/Writes to an external std::string
597 class StringStream : public StreamInterface {
599 explicit StringStream(std::string* str);
600 explicit StringStream(const std::string& str);
stream.cc 962 // StringStream - Reads/Writes to an external std::string
965 StringStream::StringStream(std::string* str)
969 StringStream::StringStream(const std::string& str)
973 StreamState StringStream::GetState() const {
977 StreamResult StringStream::Read(void* buffer, size_t buffer_len,
989 StreamResult StringStream::Write(const void* data, size_t data_len,
1004 void StringStream::Close() {
1007 bool StringStream::SetPosition(size_t position)
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
rapidjson.h 552 Stream that can be copied fast should specialize this, like StreamTraits<StringStream>.
565 // StringStream
595 typedef GenericStringStream<UTF8<> > StringStream;

Completed in 1266 milliseconds