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

  /external/chromium_org/courgette/
streams.h 28 class SourceStream;
34 // A SourceStream allows a region of memory to be scanned by a sequence of Read
36 class SourceStream {
38 SourceStream() : start_(NULL), end_(NULL), current_(NULL) {}
40 // Initializes the SourceStream to yield the bytes at |pointer|. The caller
49 // Initializes the SourceStream to yield the bytes in |region|. The caller
54 // Initializes the SourceStream to yield the bytes in |string|. The caller
59 // Initializes the SourceStream to yield the bytes written to |sink|. |sink|
88 bool ShareSubstream(size_t offset, size_t length, SourceStream* substream);
93 bool ShareSubstream(size_t length, SourceStream* substream)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptStreamer.cpp 83 // SourceStream implements the streaming interface towards V8. The main
87 class SourceStream : public v8::ScriptCompiler::ExternalSourceStream {
88 WTF_MAKE_NONCOPYABLE(SourceStream);
90 SourceStream(ScriptStreamer* streamer)
96 virtual ~SourceStream() { }
138 // point we will release the references to SourceStream.
255 // still be ongoing. Tell SourceStream to try to cancel it whenever it gets
328 , m_stream(new SourceStream(this))

Completed in 100 milliseconds