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

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
headlesscodemirror.js 14 function StringStream(string) {
19 StringStream.prototype = {
73 CodeMirror.StringStream = StringStream;
147 var stream = new CodeMirror.StringStream(lines[i]);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
externs.js 423 CodeMirror.StringStream = function(line)
428 CodeMirror.StringStream.prototype = {
  /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/chromium_org/v8/src/
string-stream.h 63 friend class StringStream;
78 class StringStream FINAL {
80 explicit StringStream(StringAllocator* allocator):
153 DISALLOW_IMPLICIT_CONSTRUCTORS(StringStream);
  /external/chromium_org/third_party/WebKit/Source/core/streams/
ReadableStreamTest.cpp 31 typedef ReadableStreamImpl<ReadableStreamChunkTypeTraits<String> > StringStream;
105 StringStream* construct()
107 StringStream* stream = new StringStream(scriptState()->executionContext(), m_underlyingSource);
120 StringStream* stream = new StringStream(scriptState()->executionContext(), m_underlyingSource);
137 StringStream* stream = new StringStream(scriptState()->executionContext(), m_underlyingSource);
154 StringStream* stream = construct();
180 StringStream* stream = new StringStream(scriptState()->executionContext(), m_underlyingSource)
    [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_org/third_party/webrtc/base/
stream.cc 1171 // StringStream - Reads/Writes to an external std::string
1174 StringStream::StringStream(std::string& str)
    [all...]
stream.h 715 // StringStream - Reads/Writes to an external std::string
718 class StringStream : public StreamInterface {
720 explicit StringStream(std::string& str);
721 explicit StringStream(const std::string& str);

Completed in 120 milliseconds