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

1 2 3 4

  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Stream.pm 1 package ANTLR::Runtime::Stream;
  /frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
Stream.cpp 17 #include "Stream.h"
24 Stream::Stream(const string &/*mappingValue*/,
38 bool Stream::sendToHW(string & /*error*/)
Stream.h 27 class Stream : public CSubsystemObject
32 uint32_t strategy; /**< applicable strategy for this stream. */
33 uint32_t volumeProfile; /**< applicable strategy for this stream. */
37 Stream(const std::string &mappingValue,
52 audio_stream_type_t mId; /**< stream type identifier to link with audio.h. */
  /external/webrtc/webrtc/
stream.h 23 class Stream {
25 // Starts stream activity.
26 // When a stream is active, it can receive, process and deliver packets.
28 // Stops stream activity.
29 // When a stream is stopped, it can't receive, process or deliver packets.
31 // Called to notify that network state has changed, so that the stream can
38 virtual ~Stream() {}
42 class ReceiveStream : public Stream {
51 // A tag class that denotes send stream type.
52 class SendStream : public Stream {};
    [all...]
  /hardware/libhardware/modules/usbcamera/
Stream.cpp 18 #define LOG_TAG "Stream"
30 #include "Stream.h"
34 Stream::Stream(int id, camera3_stream_t *s)
40 Stream::~Stream() {
48 void Stream::setUsage(uint32_t usage) {
55 void Stream::setMaxBuffers(uint32_t max_buffers) {
62 int Stream::getType() {
66 bool Stream::isInputType()
    [all...]
Stream.h 27 // Stream represents a single input or output stream for a camera device.
28 class Stream {
30 Stream(int id, camera3_stream_t *s);
31 ~Stream();
33 // validate that a stream's parameters match this stream's parameters
46 // This stream is being reused. Used in stream configuration passes
50 // The camera device id this stream belongs t
    [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/libbrillo/brillo/streams/
stream.h 20 // Stream is a base class that specific stream storage implementations must
22 // The stream class provides general streaming I/O primitives to read, write and
23 // seek within a stream. It has methods for asynchronous (callback-based) as
25 // The Stream class is abstract and cannot be created by itself.
26 // In order to construct a stream, you must use one of the derived classes'
27 // factory methods which return a stream smart pointer (StreamPtr):
39 // instance to be present on the current thread. Using Stream::ReadAsync(),
40 // Stream::WriteAsync() and similar will call MessageLoop::current() to access
56 // NOTE TO IMPLEMENTERS: When creating new stream types, you must deriv
    [all...]
  /external/libweave/include/weave/
stream.h 48 class Stream : public InputStream, public OutputStream {
50 ~Stream() override {}
  /external/llvm/include/llvm/IR/
DiagnosticPrinter.h 63 raw_ostream &Stream;
66 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) {
82 uint8_t* Stream::getRawBufferAddr() {
86 jobject Stream::getRawBuffer()
    [all...]
Stream.h 24 class Stream {
26 Stream();
27 virtual ~Stream();
44 class MemoryStream : public Stream {
63 class FileStream : public Stream {
74 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...]
  /device/generic/goldfish/camera/fake-pipeline2/
Base.h 47 struct Stream {
59 // -1 if the reprocessing stream is independent
  /external/clang/lib/Frontend/
TestModuleFileExtension.h 34 llvm::BitstreamWriter &Stream) override;
38 llvm::BitstreamCursor Stream;
67 const llvm::BitstreamCursor &Stream) override;
  /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 23 CMyComPtr<IInStream> Stream;
41 RINOK(s.Stream->Seek(0, STREAM_SEEK_CUR, &s.LocalPos));
60 unsigned _streamIndex; // required stream
67 CMyComPtr<ISequentialOutStream> Stream;
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Stream.h 29 * @tparam routing_strategy: Applicable strategy for this stream.
82 routing_strategy mApplicableStrategy; /**< Applicable strategy for this stream. */
84 audio_stream_type_t mVolumeProfile; /**< Volume Profile followed by this stream. */
87 typedef Element<audio_stream_type_t> 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();
  /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/libgdx/gdx/src/com/badlogic/gdx/utils/compression/rangecoder/
Decoder.java 31 java.io.InputStream Stream;
33 public final void SetStream (java.io.InputStream stream) {
34 Stream = stream;
38 Stream = null;
45 Code = (Code << 8) | Stream.read();
57 Code = (Code << 8) | Stream.read();
71 Code = (Code << 8) | Stream.read();
80 Code = (Code << 8) | Stream.read();
  /external/lzma/CPP/7zip/Common/
CWrappers.h 21 ISequentialInStream *Stream;
25 CSeqInStreamWrap(ISequentialInStream *stream) throw();
31 IInStream *Stream;
34 CSeekInStreamWrap(IInStream *stream) throw();
40 ISequentialOutStream *Stream;
44 CSeqOutStreamWrap(ISequentialOutStream *stream) throw();
56 ISequentialInStream *Stream;
89 ISequentialOutStream *Stream;

Completed in 1145 milliseconds

1 2 3 4