HomeSort by relevance Sort by last modified time
    Searched defs:Stream (Results 251 - 275 of 403) sorted by null

<<11121314151617

  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/PDB/Native/
DbiStream.h 1 //===- DbiStream.h - PDB Dbi Stream (Stream 3) Access -----------*- C++ -*-===//
41 DbiStream(PDBFile &File, std::unique_ptr<msf::MappedBlockStream> Stream);
73 /// If the given stream type is present, returns its stream index. If it is
95 std::unique_ptr<msf::MappedBlockStream> Stream;
GlobalsStream.h 50 /// into the PDB symbol stream.
72 explicit GlobalsStream(std::unique_ptr<msf::MappedBlockStream> Stream);
79 std::unique_ptr<msf::MappedBlockStream> Stream;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
BinaryStreamReader.h 1 //===- BinaryStreamReader.h - Reads objects from a binary stream *- C++ -*-===//
36 explicit BinaryStreamReader(BinaryStream &Stream);
42 : Stream(Other.Stream), Offset(Other.Offset) {}
45 Stream = Other.Stream;
54 /// Updates the stream's offset to point after the newly read data.
60 /// Read \p Size bytes from the underlying stream at the current offset and
62 /// depends on the implementation of the underlying stream. Updates the
63 /// stream's offset to point after the newly read data
    [all...]
  /external/webrtc/webrtc/call/
bitrate_estimator_tests.cc 124 // Encoders will be set separately per stream.
132 // receive_config_.decoders will be set by every stream separately.
144 std::mem_fun(&Stream::StopSending));
159 friend class Stream;
161 class Stream {
163 Stream(BitrateEstimatorTest* test, bool receive_audio)
188 // the AudioReceiveStream. Every receive stream has to correspond to
215 ~Stream() {
259 std::vector<Stream*> streams_;
272 streams_.push_back(new Stream(this, false))
    [all...]
  /hardware/interfaces/audio/core/all-versions/default/include/core/all-versions/default/
Stream.impl.h 34 Stream::Stream(audio_stream_t* stream) : mStream(stream) {}
36 Stream::~Stream() {
41 Result Stream::analyzeStatus(const char* funcName, int status) {
42 return util::analyzeStatus("stream", funcName, status);
47 Result Stream::analyzeStatus(const char* funcName, int status,
49 return util::analyzeStatus("stream", funcName, status, ignoreErrors)
    [all...]
  /art/runtime/
indenter.h 121 std::ostream& Stream() {
  /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/gemmlowp/meta/
base.h 78 class Stream {
  /external/google-breakpad/src/processor/
synth_minidump.h 37 // test_assembler::Sections. The file header, stream directory,
91 // the stream directory; memory ranges should be listed in the
103 // memory list stream.
163 // A stream within a minidump file. 'Add'ing a stream to a minidump
164 // creates an entry for it in the minidump's stream directory.
165 class Stream: public Section {
167 // Create a stream of type TYPE. You can append whatever contents
168 // you like to this stream using the test_assembler::Section methods.
169 Stream(const Dump &dump, uint32_t type) : Section(dump), type_(type) {
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
StreamArray.h 1 //===- StreamArray.h - Array backed by an arbitrary stream ----------------===//
28 /// the underlying stream, and it should fill out the fields of the value type
37 Error operator()(StreamRef Stream, uint32_t &Len, T &Item) const = delete;
41 /// stream. This could be a contiguous sequence of bytes in memory, it could
42 /// be a file on disk, or it could be a PDB stream where bytes are stored as
46 /// re-ordering of stream data to be contiguous before iterating over it. By
86 explicit VarStreamArray(StreamRef Stream) : Stream(Stream) {}
87 VarStreamArray(StreamRef Stream, const Extractor &E) : Stream(Stream), E(E) {
    [all...]
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoder.cs 9 System.IO.Stream Stream;
18 public void SetStream(System.IO.Stream stream)
20 Stream = stream;
25 Stream = null;
30 StartPosition = Stream.Position;
46 Stream.Flush();
51 Stream.Close();
    [all...]
  /external/swiftshader/src/Renderer/
Stream.hpp 52 struct Stream : public StreamResource
54 Stream(Resource *resource = 0, const void *buffer = 0, unsigned int stride = 0)
61 Stream &define(StreamType type, unsigned int count, bool normalized = false)
70 Stream &define(const void *buffer, StreamType type, unsigned int count, bool normalized = false)
80 Stream &defaults()
94 operator bool() const // Returns true if stream contains data
  /external/tensorflow/tensorflow/stream_executor/
stream.h 16 // The Stream is used in conjunction with the StreamExecutor "parent" to
17 // perform actions with a linear stream of dependencies. Dependencies can also
83 // Represents a stream of dependent computations on a GPU device.
85 // The operations within a stream execute linearly and asynchronously until
87 // the execution of the stream.
89 // If any given operation fails when entraining work for the stream, ok() will
90 // indicate that an error has occurred. After initialization, once a stream is
94 class Stream {
96 // Instantiate a stream tied to parent as a platform executor. Work
97 // entrained onto this stream will be launched/managed on tha
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 59 MutableBinaryByteStream Stream;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
38 /// the underlying stream, and it should fill out the fields of the value type
47 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
52 /// stream. This could be a contiguous sequence of bytes in memory, it could
53 /// be a file on disk, or it could be a PDB stream where bytes are stored as
57 /// re-ordering of stream data to be contiguous before iterating over it. By
98 explicit VarStreamArray(BinaryStreamRef Stream) : Stream(Stream) {}
99 VarStreamArray(BinaryStreamRef Stream, const Extractor &E
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 59 MutableBinaryByteStream Stream;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
38 /// the underlying stream, and it should fill out the fields of the value type
47 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
52 /// stream. This could be a contiguous sequence of bytes in memory, it could
53 /// be a file on disk, or it could be a PDB stream where bytes are stored as
57 /// re-ordering of stream data to be contiguous before iterating over it. By
99 explicit VarStreamArray(BinaryStreamRef Stream) : Stream(Stream) {}
101 VarStreamArray(BinaryStreamRef Stream, const Extractor &E
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 59 MutableBinaryByteStream Stream;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
38 /// the underlying stream, and it should fill out the fields of the value type
47 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
52 /// stream. This could be a contiguous sequence of bytes in memory, it could
53 /// be a file on disk, or it could be a PDB stream where bytes are stored as
57 /// re-ordering of stream data to be contiguous before iterating over it. By
99 explicit VarStreamArray(BinaryStreamRef Stream) : Stream(Stream) {}
101 VarStreamArray(BinaryStreamRef Stream, const Extractor &E
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 65 MutableBinaryByteStream Stream;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
38 /// the underlying stream, and it should fill out the fields of the value type
47 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
52 /// stream. This could be a contiguous sequence of bytes in memory, it could
53 /// be a file on disk, or it could be a PDB stream where bytes are stored as
57 /// re-ordering of stream data to be contiguous before iterating over it. By
99 explicit VarStreamArray(BinaryStreamRef Stream) : Stream(Stream) {}
101 VarStreamArray(BinaryStreamRef Stream, const Extractor &E
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 65 MutableBinaryByteStream Stream;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
38 /// the underlying stream, and it should fill out the fields of the value type
47 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
52 /// stream. This could be a contiguous sequence of bytes in memory, it could
53 /// be a file on disk, or it could be a PDB stream where bytes are stored as
57 /// re-ordering of stream data to be contiguous before iterating over it. By
99 explicit VarStreamArray(BinaryStreamRef Stream) : Stream(Stream) {}
101 VarStreamArray(BinaryStreamRef Stream, const Extractor &E
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 65 MutableBinaryByteStream Stream;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
38 /// the underlying stream, and it should fill out the fields of the value type
47 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
52 /// stream. This could be a contiguous sequence of bytes in memory, it could
53 /// be a file on disk, or it could be a PDB stream where bytes are stored as
57 /// re-ordering of stream data to be contiguous before iterating over it. By
99 explicit VarStreamArray(BinaryStreamRef Stream) : Stream(Stream) {}
101 VarStreamArray(BinaryStreamRef Stream, const Extractor &E
    [all...]

Completed in 1470 milliseconds

<<11121314151617