Searched defs:StringStream (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dheadlesscodemirror.js14 function StringStream(string) { class
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/
H A Dexterns.js423 CodeMirror.StringStream = function(line)
428 CodeMirror.StringStream.prototype = {
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb64 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 class in class:ANTLR3.that
390 # creates a new StringStream object where +data+ is the string data to stream.
423 # creates a new StringStream objec
[all...]
/external/chromium_org/third_party/WebKit/Source/core/streams/
H A DReadableStreamTest.cpp31 typedef ReadableStreamImpl<ReadableStreamChunkTypeTraits<String> > StringStream; typedef in namespace:blink::__anon11153
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* strea
[all...]
/external/chromium_org/v8/src/
H A Dstring-stream.h63 friend class StringStream;
78 class StringStream FINAL {
80 explicit StringStream(StringAllocator* allocator): function in class:v8::internal::FINAL
153 DISALLOW_IMPLICIT_CONSTRUCTORS(StringStream);
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py590 # mumbojumbo. A plain "StringStream" looks better to me, which should be
592 StringStream = ANTLRStringStream variable
/external/chromium_org/third_party/webrtc/base/
H A Dstream.cc1171 // StringStream - Reads/Writes to an external std::string
1174 StringStream::StringStream(std::string& str) function in class:rtc::StringStream
1178 StringStream::StringStream(const std::string& str) function in class:rtc::StringStream
1182 StreamState StringStream::GetState() const {
1186 StreamResult StringStream::Read(void* buffer, size_t buffer_len,
1198 StreamResult StringStream::Write(const void* data, size_t data_len,
1213 void StringStream::Close() {
1216 bool StringStream
[all...]
H A Dstream.h715 // StringStream - Reads/Writes to an external std::string
718 class StringStream : public StreamInterface { class in namespace:rtc
720 explicit StringStream(std::string& str);
721 explicit StringStream(const std::string& str);

Completed in 287 milliseconds