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

1 2

  /external/arduino/hardware/arduino/cores/arduino/
Stream.h 2 Stream.h - base class for character-based streams.
26 class Stream : public Print
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Stream.pm 1 package ANTLR::Runtime::Stream;
  /external/clang/test/Sema/
parentheses.cpp 20 class Stream {
23 Stream &operator<<(int);
24 Stream &operator<<(const char*);
27 void f(Stream& s, bool b) {
  /development/tools/emulator/system/camera/fake-pipeline2/
Base.h 46 struct Stream {
58 // -1 if the reprocessing stream is independent
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
stream.py 42 from mod_pywebsocket._stream_hybi import Stream
_stream_hybi.py 173 receive_bytes: a function that reads frame data from a stream or
387 """Holds option values to configure Stream objects."""
392 # Enables deflate-stream extension.
411 class Stream(StreamBase):
430 self._logger.debug('Setup filter for deflate-stream')
842 RST packet. This is because when deflate-stream is enabled, some
mux.py 54 from mod_pywebsocket._stream_hybi import Stream
647 class _LogicalStream(Stream):
648 """Mimics the Stream class. This class interprets multiplexed WebSocket
663 # Physical stream is responsible for masking.
667 Stream.__init__(self, request, stream_options)
753 """Override Stream.send_message."""
772 """Overrides Stream._receive_frame.
774 In addition to call Stream._receive_frame, this method adds the amount
776 We need to do it here because Stream.receive_message() handles
780 opcode, payload, fin, rsv1, rsv2, rsv3 = Stream._receive_frame(self
    [all...]
  /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/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
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);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
StreamingVideoActivity.java 39 * Simple storage class for stream information.
41 static class Stream implements Serializable {
43 * Human-readable name for the stream.
53 * URI of the stream
57 public Stream(String name, String code, String uri) {
67 } else if (o == null || !(o instanceof Stream)) {
70 Stream stream = (Stream) o; local
71 return name.equals(stream.name
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 38 =begin rdoc ANTLR3::Stream
43 recognizers, and then discusses the specific <tt>ANTLR3::Stream</tt> module.
45 == ANTLR Stream Classes
54 ANTLR bundles all of this functionality into a number of Stream classes, each
56 Stream hierarchy is implemented in antlr3/stream.rb, which is loaded by default
61 Here's a brief overview of the various stream classes and their respective
66 String data in a Stream interface for use by ANTLR lexers.
77 managing rewrite "programs" on top of the stream.
80 to recognizers in a sequential fashion. However, the stream object serialize
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/handshake/
hybi.py 60 from mod_pywebsocket.stream import Stream
61 from mod_pywebsocket.stream import StreamOptions
371 return Stream(self._request, stream_options)
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
echo_client.py 77 from mod_pywebsocket.stream import Stream
78 from mod_pywebsocket.stream import StreamHixie75
79 from mod_pywebsocket.stream import StreamOptions
233 # array as a UTF-8 stream and the value given by the string
235 # stream.
866 self._stream = Stream(request, stream_option)
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_mux.py 47 from mod_pywebsocket._stream_hybi import Stream
220 request.ws_stream = Stream(request, options=StreamOptions())
test_msgutil.py 49 from mod_pywebsocket.stream import InvalidUTF8Exception
50 from mod_pywebsocket.stream import Stream
51 from mod_pywebsocket.stream import StreamHixie75
52 from mod_pywebsocket.stream import StreamOptions
100 req.ws_stream = Stream(req, stream_options)
128 req.ws_stream = Stream(req, stream_options)
145 # Tests for Stream
717 Stream.close_connection,
726 Stream.close_connection
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 210 LoadResult readMetaBlock(llvm::BitstreamCursor &Stream);
212 LoadResult readDiagnosticBlock(llvm::BitstreamCursor &Stream,
216 StreamResult readToNextRecordOrBlock(llvm::BitstreamCursor &Stream,
276 llvm::BitstreamCursor Stream;
277 Stream.init(StreamFile);
280 if (Stream.Read(8) != 'D' ||
281 Stream.Read(8) != 'I' ||
282 Stream.Read(8) != 'A' ||
283 Stream.Read(8) != 'G') {
294 StreamResult Res = readToNextRecordOrBlock(Stream, "Top-level",
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginView.cpp 86 class PluginView::Stream : public RefCounted<PluginView::Stream>, NetscapePlugInStreamLoaderClient {
88 static PassRefPtr<Stream> create(PluginView* pluginView, uint64_t streamID, const ResourceRequest& request)
90 return adoptRef(new Stream(pluginView, streamID, request));
92 ~Stream();
100 Stream(PluginView* pluginView, uint64_t streamID, const ResourceRequest& request)
118 // True if the stream was explicitly cancelled by calling cancel().
125 PluginView::Stream::~Stream()
130 void PluginView::Stream::start(
670 RefPtr<Stream> stream = PluginView::Stream::create(this, request->requestID(), request->request()); local
888 RefPtr<Stream> stream = m_streams.get(streamID).get(); local
    [all...]
  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp 89 KeyedVector<unsigned, sp<Stream> > mStreams;
98 struct ATSParser::Stream : public RefBase {
99 Stream(Program *program,
121 virtual ~Stream();
150 DISALLOW_EVIL_CONSTRUCTORS(Stream);
333 ALOGI("uh oh. stream PIDs have changed.");
343 sp<Stream> stream = mStreams.editValueAt(i);
345 ALOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type())
402 sp<Stream> stream = new Stream( local
    [all...]
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 93 : LangOpts(0), DiagOpts(diags), Stream(Buffer), OS(os),
184 llvm::BitstreamWriter Stream;
232 llvm::BitstreamWriter &Stream,
236 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record);
247 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record);
252 llvm::BitstreamWriter &Stream,
260 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record);
312 Stream.EmitRecordWithBlob(Abbrevs.get(RECORD_FILENAME), Record, Name);
322 Stream.EmitRecordWithAbbrev(Abbrevs.get(RECORD_SOURCE_RANGE), Record);
328 Stream.Emit((unsigned)'D', 8)
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 20 // The most important class here is Stream. This represents a YAML stream with
25 // yaml::Stream stream(input, sm);
27 // for (yaml::document_iterator di = stream.begin(), de = stream.end();
64 /// @brief Dump all the tokens in this stream to OS.
76 /// @brief This class represents a YAML stream potentially containing multiple
78 class Stream {
80 Stream(StringRef Input, SourceMgr &)
487 Stream &stream; member in class:llvm::yaml::Document
    [all...]
  /bionic/libc/netbsd/isc/
eventlib_p.h 172 enum { Accept, File, Stream, Timer, Wait, Free, Null } type;
176 struct { evStream *this; } stream; member in union:evEvent_p::__anon639
  /external/clang/include/clang/Serialization/
Module.h 98 llvm::BitstreamCursor Stream;
ASTWriter.h 82 /// output stream, plus those deserialized from a chained PCH.
86 /// stored in the stream, the ID number is shifted by 2 bits to
95 llvm::BitstreamWriter &Stream;
154 /// the output stream, as well as those deserialized from a chained PCH.
190 /// output stream, plus those deserialized from a chained PCH.
194 /// stored in the stream, the ID number is shifted by 2 bits to
211 /// the output stream.
465 ASTWriter(llvm::BitstreamWriter &Stream);
727 llvm::BitstreamWriter Stream;
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 686 OwningPtr<llvm::raw_fd_ostream> Stream;
687 Stream.reset(new llvm::raw_fd_ostream(Filename.c_str(), ErrMsg));
692 return new UbigraphViz(Stream.take(), Dir, Filename);
  /external/llvm/lib/Support/
YAMLParser.cpp 417 /// @brief Generate tokens needed to close out the stream.
486 /// @brief Are we at the start of the stream?
546 OS << "Stream-Start: ";
549 OS << "Stream-End: ";
    [all...]

Completed in 1988 milliseconds

1 2