HomeSort by relevance Sort by last modified time
    Searched defs:Stream (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/arduino/hardware/arduino/cores/arduino/
Stream.h 2 Stream.h - base class for character-based streams.
26 class Stream : public Print
  /external/chromium_org/chrome/test/ext_auto/auto_provider/
server.js 7 // Stream encapsulates read/write operations over socket.
8 function Stream(delegate, socketId) {
13 Stream.prototype = {
80 this.handler_.readRequest_(new Stream(this.handler_,
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
Stream.cpp 32 #include "core/fileapi/Stream.h"
40 Stream::Stream(const String& mediaType)
46 // Create a new internal URL for a stream and register it with the provided
52 void Stream::addData(const char* data, size_t len)
60 void Stream::finalize()
65 Stream::~Stream()
Stream.h 42 class Stream : public ScriptWrappable, public RefCounted<Stream> {
44 static PassRefPtr<Stream> create(const String& mediaType)
46 return adoptRef(new Stream(mediaType));
49 virtual ~Stream();
51 // Returns the internal URL referring to this stream.
53 // Returns the media type of this stream.
56 // Appends data to this stream.
58 // Mark this stream finalized so that a reader of this stream is notifie
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Stream.pm 1 package ANTLR::Runtime::Stream;
  /external/chromium_org/third_party/npapi/npspy/
analyze_streams.py 22 class Stream:
58 s = Stream(line)
67 for stream in streams:
68 if stream.address == address:
69 if stream.size != start:
70 print 'error: starting at wrong place for write ' + stream.url + ' ' + str(stream.size) + ' ' + str(start)
71 stream.size += size
76 print "couldn't find stream to match NPP_Write " + line
83 for stream in streams:
    [all...]
  /hardware/libhardware/modules/camera/
Stream.cpp 23 #define LOG_TAG "Stream"
30 #include "Stream.h"
34 Stream::Stream(int id, camera3_stream_t *s)
52 Stream::~Stream()
59 void Stream::setUsage(uint32_t usage)
70 void Stream::setMaxBuffers(uint32_t max_buffers)
81 int Stream::getType()
86 bool Stream::isInputType(
    [all...]
Stream.h 25 // Stream represents a single input or output stream for a camera device.
26 class Stream {
28 Stream(int id, camera3_stream_t *s);
29 ~Stream();
31 // validate that astream's parameters match this stream's parameters
45 // This stream is being reused. Used in stream configuration passes
52 // The camera device id this stream belongs to
54 // Handle to framework's stream, used as a cookie for buffer
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
ctor2.cpp 22 struct Stream : public virtual VBase, public StreamBase
24 Stream() {}
25 virtual ~Stream() {}
28 struct DerivedStream : public Stream
  /ndk/tests/device/test-stlport_static-exception/jni/
ctor2.cpp 22 struct Stream : public virtual VBase, public StreamBase
24 Stream() {}
25 virtual ~Stream() {}
28 struct DerivedStream : public Stream
  /external/chromium_org/content/browser/streams/
stream.cc 5 #include "content/browser/streams/stream.h"
23 Stream::Stream(StreamRegistry* registry,
42 writer_->RegisterCallback(base::Bind(&Stream::OnSpaceAvailable,
44 reader_->RegisterCallback(base::Bind(&Stream::OnDataAvailable,
50 Stream::~Stream() {
53 bool Stream::SetReadObserver(StreamReadObserver* observer) {
60 void Stream::RemoveReadObserver(StreamReadObserver* observer) {
65 void Stream::RemoveWriteObserver(StreamWriteObserver* observer)
    [all...]
stream.h 27 // A stream that sends data from an arbitrary source to an internal URL
31 // reader to consume part of the stream, then pass it along to another client
32 // to continue processing the stream.
33 class CONTENT_EXPORT Stream : public base::RefCountedThreadSafe<Stream> {
41 // Creates a stream.
46 Stream(StreamRegistry* registry,
50 // Sets the reader of this stream. Returns true on success, or false if there
60 // Adds the data in |buffer| to the stream. Takes ownership of |buffer|.
62 // Adds data of |size| at |data| to the stream. This method creates a cop
    [all...]
  /external/chromium_org/net/disk_cache/flash/
log_store_entry.cc 106 Stream& stream = streams_[index]; local
111 DCHECK(!offset || offset == stream.size);
112 if (stream.write_buffer.size() < new_size)
113 stream.write_buffer.resize(new_size);
116 stream.size = new_size;
165 LogStoreEntry::Stream::Stream() : offset(0), size(0) {
168 LogStoreEntry::Stream::~Stream() {
    [all...]
log_store_entry.h 41 struct Stream {
42 Stream();
43 ~Stream();
55 Stream streams_[kFlashLogStoreEntryNumStreams];
  /device/generic/goldfish/camera/fake-pipeline2/
Base.h 46 struct Stream {
58 // -1 if the reprocessing stream is independent
  /external/clang/test/Sema/
parentheses.cpp 32 class Stream {
35 Stream &operator<<(int);
36 Stream &operator<<(const char*);
37 Stream &operator>>(int);
38 Stream &operator>>(const char*);
41 void f(Stream& s, bool b) {
98 Stream() << b + c;
99 Stream() >> b + c; // expected-warning {{operator '>>' has lower precedence than '+'; '+' will be evaluated first}} \
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.h 21 CMyComPtr<IInStream> Stream;
36 RINOK(s.Stream->Seek(0, STREAM_SEEK_CUR, &s.LocalPos));
55 int _streamIndex; // required stream
62 CMyComPtr<ISequentialOutStream> Stream;
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
Encoder.java 12 java.io.OutputStream Stream;
21 public void SetStream(java.io.OutputStream stream)
23 Stream = stream;
28 Stream = null;
48 Stream.flush();
60 Stream.write(temp + LowHi);
Decoder.java 15 java.io.InputStream Stream;
17 public final void SetStream(java.io.InputStream stream)
19 Stream = stream;
24 Stream = null;
32 Code = (Code << 8) | Stream.read();
47 Code = (Code << 8) | Stream.read();
64 Code = (Code << 8) | Stream.read();
76 Code = (Code << 8) | Stream.read();
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
stream.py 42 from mod_pywebsocket._stream_hybi import Stream
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
stream.py 42 from mod_pywebsocket._stream_hybi import Stream
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioData.java 53 Stream
65 * @return The data type, either <code>Buffer</code> or <code>Stream</code>.
  /libcore/crypto/src/main/java/org/conscrypt/
Logger.java 30 public static class Stream extends PrintStream {
34 public Stream(String name) {
100 public static Stream getStream(String name) {
103 return new Stream(name);
  /external/lzma/CPP/7zip/Archive/7z/
7zOut.h 129 CMyComPtr<IOutStream> Stream;
134 HRESULT Create(ISequentialOutStream *stream, bool endMarker);
  /external/lzma/CPP/7zip/Common/
CWrappers.h 20 ISequentialInStream *Stream;
22 CSeqInStreamWrap(ISequentialInStream *stream);
28 IInStream *Stream;
30 CSeekInStreamWrap(IInStream *stream);
36 ISequentialOutStream *Stream;
39 CSeqOutStreamWrap(ISequentialOutStream *stream);
51 ISequentialInStream *Stream;
84 ISequentialOutStream *Stream;

Completed in 787 milliseconds

1 2 3