HomeSort by relevance Sort by last modified time
    Searched defs:Stream (Results 1 - 25 of 68) 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/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Stream.pm 1 package ANTLR::Runtime::Stream;
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
Stream.cpp 32 #include "core/fileapi/Stream.h"
40 Stream::Stream(ExecutionContext* context, const String& mediaType)
47 // Create a new internal URL for a stream and register it with the provided
53 void Stream::addData(const char* data, size_t len)
61 void Stream::finalize()
66 void Stream::abort()
71 Stream::~Stream()
76 void Stream::suspend(
    [all...]
  /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...]
  /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/llvm/include/llvm/IR/
DiagnosticPrinter.h 59 raw_ostream &Stream;
62 DiagnosticPrinterRawOStream(raw_ostream &Stream) : Stream(Stream) {};
  /frameworks/ex/framesequence/jni/
Stream.cpp 17 #define LOG_TAG "Stream"
19 #include "Stream.h"
32 Stream::Stream()
38 Stream::~Stream() {
42 size_t Stream::peek(void* buffer, size_t size) {
60 size_t Stream::read(void* buffer, size_t size) {
Stream.h 24 class Stream {
26 Stream();
27 virtual ~Stream();
41 class MemoryStream : public Stream {
55 class FileStream : public Stream {
66 class JavaInputStream : public Stream {
  /hardware/libhardware/modules/camera/
Stream.cpp 24 #define LOG_TAG "Stream"
30 #include "Stream.h"
34 Stream::Stream(int id, camera3_stream_t *s)
50 Stream::~Stream()
56 void Stream::setUsage(uint32_t usage)
66 void Stream::setMaxBuffers(uint32_t max_buffers)
76 int Stream::getType()
81 bool Stream::isInputType(
    [all...]
Stream.h 26 // Stream represents a single input or output stream for a camera device.
27 class Stream {
29 Stream(int id, camera3_stream_t *s);
30 ~Stream();
32 // validate that astream's parameters match this stream's parameters
49 // This stream is being reused. Used in stream configuration passes
56 // The camera device id this stream belongs to
58 // Handle to framework's stream, used as a cookie for buffer
    [all...]
  /external/chromium_org/content/browser/streams/
stream.cc 5 #include "content/browser/streams/stream.h"
25 Stream::Stream(StreamRegistry* registry,
45 writer_->RegisterCallback(base::Bind(&Stream::OnSpaceAvailable,
47 reader_->RegisterCallback(base::Bind(&Stream::OnDataAvailable,
53 Stream::~Stream() {
56 bool Stream::SetReadObserver(StreamReadObserver* observer) {
63 void Stream::RemoveReadObserver(StreamReadObserver* observer) {
68 void Stream::RemoveWriteObserver(StreamWriteObserver* observer)
    [all...]
stream.h 28 // A stream that sends data from an arbitrary source to an internal URL
32 // reader to consume part of the stream, then pass it along to another client
33 // to continue processing the stream.
34 class CONTENT_EXPORT Stream : public base::RefCountedThreadSafe<Stream> {
43 // Creates a stream.
48 Stream(StreamRegistry* registry,
52 // Sets the reader of this stream. Returns true on success, or false if there
62 // Stops accepting new data, clears all buffer, unregisters this stream from
66 // Adds the data in |buffer| to the stream. Takes ownership of |buffer|
    [all...]
  /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/lldb/include/lldb/Core/
Stream.h 1 //===-- Stream.h ------------------------------------------------*- C++ -*-===//
21 /// @class Stream Stream.h "lldb/Core/Stream.h"
22 /// @brief A stream class that can stream formatted output to a file.
24 class Stream
45 Stream (uint32_t flags,
50 /// Construct a default Stream, not binary, host byte order and
54 Stream ();
    [all...]
  /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
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
StreamingVideoActivity.java 51 * Simple storage class for stream information.
53 static class Stream implements Serializable {
55 * Human-readable name for the stream.
65 * URI of the stream
69 public Stream(String name, String code, String uri) {
79 } else if (o == null || !(o instanceof Stream)) {
82 Stream stream = (Stream) o; local
83 return name.equals(stream.name
    [all...]
  /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 1137 milliseconds

1 2 3