/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceGlobalInits.cpp | 28 void dumpLinkage(Ice::Ostream &Stream, in dumpLinkage() argument 34 Stream << "external"; in dumpLinkage() 37 Stream << "internal"; in dumpLinkage() 80 void FunctionDeclaration::dumpType(Ostream &Stream) const { in dumpType() 83 Stream << Signature; in dumpType() 86 void FunctionDeclaration::dump(Ostream &Stream) const { in dump() 90 Stream << "declare "; in dump() 91 ::dumpLinkage(Stream, Linkage); in dump() 92 ::dumpCallingConv(Stream, CallingConv); in dump() 93 Stream << Signature.getReturnType() << " @" << Name << "("; in dump() [all …]
|
/third_party/zlib/contrib/ada/ |
D | zlib-streams.adb | 19 procedure Close (Stream : in out Stream_Type) is 23 if Stream.Mode = Out_Stream or Stream.Mode = Duplex then 26 Flush (Stream, Finish); 28 Close (Stream.Writer); 31 if Stream.Mode = In_Stream or Stream.Mode = Duplex then 32 Close (Stream.Reader); 33 Free (Stream.Buffer); 42 (Stream : out Stream_Type; 78 Stream.Back := Back; 79 Stream.Mode := Mode; [all …]
|
D | zlib-streams.ads | 21 (Stream : in out Stream_Type; 26 (Stream : in out Stream_Type; 30 (Stream : in out Stream_Type; 37 function Read_Total_In (Stream : in Stream_Type) return Count; 41 function Read_Total_Out (Stream : in Stream_Type) return Count; 45 function Write_Total_In (Stream : in Stream_Type) return Count; 49 function Write_Total_Out (Stream : in Stream_Type) return Count; 54 (Stream : out Stream_Type; 80 function Is_Open (Stream : Stream_Type) return Boolean; 82 procedure Close (Stream : in out Stream_Type);
|
/third_party/ffmpeg/tests/ref/fate/ |
D | concat-demuxer-simple2-lavf-ts | 1 video|1|982|0.010911|-2618|-0.029089|3600|0.040000|24801|564|K_MPEGTS Stream ID 3 video|1|4582|0.050911|982|0.010911|3600|0.040000|16429|25944|__MPEGTS Stream ID 5 video|1|8182|0.090911|4582|0.050911|3600|0.040000|14508|42864|__MPEGTS Stream ID 7 video|1|11782|0.130911|8182|0.090911|3600|0.040000|12622|58092|__MPEGTS Stream ID 9 video|1|15382|0.170911|11782|0.130911|3600|0.040000|13393|71064|__MPEGTS Stream ID 11 video|1|18982|0.210911|15382|0.170911|3600|0.040000|13092|84788|__MPEGTS Stream ID 13 video|1|22582|0.250911|18982|0.210911|3600|0.040000|12755|98700|__MPEGTS Stream ID 15 video|1|26182|0.290911|22582|0.250911|3600|0.040000|12023|111860|__MPEGTS Stream ID 17 audio|0|0|0.000000|0|0.000000|2351|0.026122|208|152844|K_MPEGTS Stream ID 32 video|1|29782|0.330911|26182|0.290911|3600|0.040000|14098|124268|__MPEGTS Stream ID [all …]
|
/third_party/node/deps/npm/node_modules/isstream/ |
D | README.md | 5 **Test if an object is a `Stream`** 9 The missing `Stream.isStream(obj)`: determine if an object is standard Node.js `Stream`. Works for … 15 var Stream = require('stream') 17 isStream(new Stream()) // true 21 isStream(new Stream.Readable()) // true 22 isStream(new Stream.Writable()) // true 23 isStream(new Stream.Duplex()) // true 24 isStream(new Stream.Transform()) // true 25 isStream(new Stream.PassThrough()) // true 36 var Stream = require('stream') [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | MinidumpYAML.h | 27 struct Stream { struct 39 Stream(StreamKind Kind, minidump::StreamType Type) : Kind(Kind), Type(Type) {} in Stream() function 40 virtual ~Stream(); // anchor 49 static std::unique_ptr<Stream> create(minidump::StreamType Type); 52 static Expected<std::unique_ptr<Stream>> 61 template <typename EntryT> struct ListStream : public Stream { 67 : Stream(EntryT::Kind, EntryT::Type), Entries(std::move(Entries)) {} in Stream() function 69 static bool classof(const Stream *S) { return S->Kind == EntryT::Kind; } in classof() 74 static constexpr Stream::StreamKind Kind = Stream::StreamKind::ModuleList; 85 static constexpr Stream::StreamKind Kind = Stream::StreamKind::ThreadList; [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | DiagnosticPrinter.cpp | 23 Stream << C; in operator <<() 28 Stream << C; in operator <<() 33 Stream << C; in operator <<() 38 Stream << Str; in operator <<() 43 Stream << Str; in operator <<() 49 Stream << Str; in operator <<() 54 Stream << N; in operator <<() 58 Stream << N; in operator <<() 64 Stream << N; in operator <<() 69 Stream << N; in operator <<() [all …]
|
/third_party/rust/crates/atty/src/ |
D | lib.rs | 32 pub enum Stream { enum 40 pub fn is(stream: Stream) -> bool { in is() 44 Stream::Stdout => libc::STDOUT_FILENO, in is() 45 Stream::Stderr => libc::STDERR_FILENO, in is() 46 Stream::Stdin => libc::STDIN_FILENO, in is() 53 pub fn is(stream: Stream) -> bool { in is() 57 Stream::Stdout => hermit_abi::STDOUT_FILENO, in is() 58 Stream::Stderr => hermit_abi::STDERR_FILENO, in is() 59 Stream::Stdin => hermit_abi::STDIN_FILENO, in is() 66 pub fn is(stream: Stream) -> bool { in is() [all …]
|
/third_party/node/lib/ |
D | stream.js | 28 const Stream = module.exports = require('internal/streams/legacy').Stream; constant 29 Stream.Readable = require('internal/streams/readable'); 30 Stream.Writable = require('internal/streams/writable'); 31 Stream.Duplex = require('internal/streams/duplex'); 32 Stream.Transform = require('internal/streams/transform'); 33 Stream.PassThrough = require('internal/streams/passthrough'); 34 Stream.pipeline = pipeline; 35 Stream.finished = eos; 38 Stream.Stream = Stream; 40 Stream._isUint8Array = require('internal/util/types').isUint8Array; [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | Stream.cpp | 27 Stream::Stream(Display *display, const AttributeMap &attribs) in Stream() function in egl::Stream 47 Stream::~Stream() in ~Stream() 59 void Stream::setLabel(EGLLabelKHR label) in setLabel() 64 EGLLabelKHR Stream::getLabel() const in getLabel() 69 void Stream::setConsumerLatency(EGLint latency) in setConsumerLatency() 74 EGLint Stream::getConsumerLatency() const in getConsumerLatency() 79 EGLuint64KHR Stream::getProducerFrame() const in getProducerFrame() 84 EGLuint64KHR Stream::getConsumerFrame() const in getConsumerFrame() 89 EGLenum Stream::getState() const in getState() 94 void Stream::setConsumerAcquireTimeout(EGLint timeout) in setConsumerAcquireTimeout() [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Stream.cpp | 27 Stream::Stream(Display *display, const AttributeMap &attribs) in Stream() function in egl::Stream 47 Stream::~Stream() in ~Stream() 59 void Stream::setLabel(EGLLabelKHR label) in setLabel() 64 EGLLabelKHR Stream::getLabel() const in getLabel() 69 void Stream::setConsumerLatency(EGLint latency) in setConsumerLatency() 74 EGLint Stream::getConsumerLatency() const in getConsumerLatency() 79 EGLuint64KHR Stream::getProducerFrame() const in getProducerFrame() 84 EGLuint64KHR Stream::getConsumerFrame() const in getConsumerFrame() 89 EGLenum Stream::getState() const in getState() 94 void Stream::setConsumerAcquireTimeout(EGLint timeout) in setConsumerAcquireTimeout() [all …]
|
/third_party/node/deps/npm/node_modules/are-we-there-yet/node_modules/readable-stream/ |
D | readable.js | 1 var Stream = require('stream'); variable 2 if (process.env.READABLE_STREAM === 'disable' && Stream) { 3 module.exports = Stream; 4 exports = module.exports = Stream.Readable; 5 exports.Readable = Stream.Readable; 6 exports.Writable = Stream.Writable; 7 exports.Duplex = Stream.Duplex; 8 exports.Transform = Stream.Transform; 9 exports.PassThrough = Stream.PassThrough; 10 exports.Stream = Stream; [all …]
|
/third_party/node/deps/npm/node_modules/concat-stream/node_modules/readable-stream/ |
D | readable.js | 1 var Stream = require('stream'); variable 2 if (process.env.READABLE_STREAM === 'disable' && Stream) { 3 module.exports = Stream; 4 exports = module.exports = Stream.Readable; 5 exports.Readable = Stream.Readable; 6 exports.Writable = Stream.Writable; 7 exports.Duplex = Stream.Duplex; 8 exports.Transform = Stream.Transform; 9 exports.PassThrough = Stream.PassThrough; 10 exports.Stream = Stream; [all …]
|
/third_party/node/deps/npm/node_modules/from2/node_modules/readable-stream/ |
D | readable.js | 1 var Stream = require('stream'); variable 2 if (process.env.READABLE_STREAM === 'disable' && Stream) { 3 module.exports = Stream; 4 exports = module.exports = Stream.Readable; 5 exports.Readable = Stream.Readable; 6 exports.Writable = Stream.Writable; 7 exports.Duplex = Stream.Duplex; 8 exports.Transform = Stream.Transform; 9 exports.PassThrough = Stream.PassThrough; 10 exports.Stream = Stream; [all …]
|
/third_party/node/deps/npm/node_modules/flush-write-stream/node_modules/readable-stream/ |
D | readable.js | 1 var Stream = require('stream'); variable 2 if (process.env.READABLE_STREAM === 'disable' && Stream) { 3 module.exports = Stream; 4 exports = module.exports = Stream.Readable; 5 exports.Readable = Stream.Readable; 6 exports.Writable = Stream.Writable; 7 exports.Duplex = Stream.Duplex; 8 exports.Transform = Stream.Transform; 9 exports.PassThrough = Stream.PassThrough; 10 exports.Stream = Stream; [all …]
|
/third_party/node/deps/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/ |
D | readable.js | 1 var Stream = require('stream'); variable 2 if (process.env.READABLE_STREAM === 'disable' && Stream) { 3 module.exports = Stream; 4 exports = module.exports = Stream.Readable; 5 exports.Readable = Stream.Readable; 6 exports.Writable = Stream.Writable; 7 exports.Duplex = Stream.Duplex; 8 exports.Transform = Stream.Transform; 9 exports.PassThrough = Stream.PassThrough; 10 exports.Stream = Stream; [all …]
|
/third_party/node/deps/npm/node_modules/parallel-transform/node_modules/readable-stream/ |
D | readable.js | 1 var Stream = require('stream'); variable 2 if (process.env.READABLE_STREAM === 'disable' && Stream) { 3 module.exports = Stream; 4 exports = module.exports = Stream.Readable; 5 exports.Readable = Stream.Readable; 6 exports.Writable = Stream.Writable; 7 exports.Duplex = Stream.Duplex; 8 exports.Transform = Stream.Transform; 9 exports.PassThrough = Stream.PassThrough; 10 exports.Stream = Stream; [all …]
|
/third_party/node/deps/npm/node_modules/through2/node_modules/readable-stream/ |
D | readable.js | 1 var Stream = require('stream'); variable 2 if (process.env.READABLE_STREAM === 'disable' && Stream) { 3 module.exports = Stream; 4 exports = module.exports = Stream.Readable; 5 exports.Readable = Stream.Readable; 6 exports.Writable = Stream.Writable; 7 exports.Duplex = Stream.Duplex; 8 exports.Transform = Stream.Transform; 9 exports.PassThrough = Stream.PassThrough; 10 exports.Stream = Stream; [all …]
|
/third_party/node/deps/npm/node_modules/stream-iterate/node_modules/readable-stream/ |
D | readable.js | 1 var Stream = require('stream'); variable 2 if (process.env.READABLE_STREAM === 'disable' && Stream) { 3 module.exports = Stream; 4 exports = module.exports = Stream.Readable; 5 exports.Readable = Stream.Readable; 6 exports.Writable = Stream.Writable; 7 exports.Duplex = Stream.Duplex; 8 exports.Transform = Stream.Transform; 9 exports.PassThrough = Stream.PassThrough; 10 exports.Stream = Stream; [all …]
|
/third_party/node/deps/npm/node_modules/duplexify/node_modules/readable-stream/ |
D | readable.js | 1 var Stream = require('stream'); variable 2 if (process.env.READABLE_STREAM === 'disable' && Stream) { 3 module.exports = Stream; 4 exports = module.exports = Stream.Readable; 5 exports.Readable = Stream.Readable; 6 exports.Writable = Stream.Writable; 7 exports.Duplex = Stream.Duplex; 8 exports.Transform = Stream.Transform; 9 exports.PassThrough = Stream.PassThrough; 10 exports.Stream = Stream; [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/ |
D | NaClBitCodes.cpp | 56 void NaClBitCodeAbbrevOp::Print(raw_ostream &Stream) const { in Print() 58 Stream << getValue(); in Print() 61 Stream << getEncodingName(Enc); in Print() 64 Stream << "(" << Val << ")"; in Print() 67 static void PrintExpression(raw_ostream &Stream, in PrintExpression() argument 75 Op.Print(Stream); in PrintExpression() 77 Stream << "("; in PrintExpression() 81 Stream << ","; in PrintExpression() 82 PrintExpression(Stream, Abbrev, Index); in PrintExpression() 84 Stream << ")"; in PrintExpression() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | MinidumpYAML.cpp | 68 Stream::~Stream() = default; 70 Stream::StreamKind Stream::getKind(StreamType Type) { in getKind() 97 std::unique_ptr<Stream> Stream::create(StreamType Type) { in create() 290 static void streamMapping(yaml::IO &IO, RawContentStream &Stream) { in streamMapping() argument 291 IO.mapOptional("Content", Stream.Content); in streamMapping() 292 IO.mapOptional("Size", Stream.Size, Stream.Content.binary_size()); in streamMapping() 295 static StringRef streamValidate(RawContentStream &Stream) { in streamValidate() argument 296 if (Stream.Size.value < Stream.Content.binary_size()) in streamValidate() 307 static void streamMapping(yaml::IO &IO, MemoryInfoListStream &Stream) { in streamMapping() argument 308 IO.mapRequired("Memory Ranges", Stream.Infos); in streamMapping() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | BinaryStreamArray.h | 46 Error operator()(BinaryStreamRef Stream, uint32_t &Len, 98 explicit VarStreamArray(BinaryStreamRef Stream, uint32_t Skew = 0) 99 : Stream(Stream), Skew(Skew) {} in Stream() function 101 VarStreamArray(BinaryStreamRef Stream, const Extractor &E, uint32_t Skew = 0) 102 : Stream(Stream), E(E), Skew(Skew) {} in Stream() function 108 bool valid() const { return Stream.valid(); } in valid() 113 bool empty() const { return Stream.getLength() == 0; } in empty() 120 BinaryStreamRef NewStream = Stream.slice(0, End); in substream() 135 BinaryStreamRef getUnderlyingStream() const { return Stream; } in getUnderlyingStream() 137 Stream = NewStream; [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 131 BitstreamWriter &Stream; member in __anon5fd0b5c50111::BitcodeWriterBase 138 BitcodeWriterBase(BitstreamWriter &Stream, StringTableBuilder &StrtabBuilder) in BitcodeWriterBase() argument 139 : Stream(Stream), StrtabBuilder(StrtabBuilder) {} in BitcodeWriterBase() 148 Stream.EmitRecord(bitc::MODULE_CODE_VERSION, ArrayRef<uint64_t>{2}); in writeModuleVersion() 180 BitstreamWriter &Stream, in ModuleBitcodeWriterBase() argument 183 : BitcodeWriterBase(Stream, StrtabBuilder), M(M), in ModuleBitcodeWriterBase() 266 BitstreamWriter &Stream, bool ShouldPreserveUseListOrder, in ModuleBitcodeWriter() argument 269 : ModuleBitcodeWriterBase(M, StrtabBuilder, Stream, in ModuleBitcodeWriter() 272 BitcodeStartBit(Stream.GetCurrentBitNo()) {} in ModuleBitcodeWriter() 420 IndexBitcodeWriter(BitstreamWriter &Stream, StringTableBuilder &StrtabBuilder, in IndexBitcodeWriter() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/ |
D | BitstreamRemarkParser.cpp | 38 BitstreamCursor &Stream, BitstreamBlockInfo &BlockInfo) in BitstreamMetaParserHelper() argument 39 : Stream(Stream), BlockInfo(BlockInfo) {} in BitstreamMetaParserHelper() 43 BitstreamCursor &Stream = Parser.Stream; in parseRecord() local 48 Expected<unsigned> RecordID = Stream.readRecord(Code, Record, &Blob); in parseRecord() 85 BitstreamCursor &Stream) in BitstreamRemarkParserHelper() argument 86 : Stream(Stream) {} in BitstreamRemarkParserHelper() 90 BitstreamCursor &Stream = Parser.Stream; in parseRecord() local 95 Expected<unsigned> RecordID = Stream.readRecord(Code, Record, &Blob); in parseRecord() 160 BitstreamCursor &Stream = ParserHelper.Stream; in parseBlock() local 161 Expected<BitstreamEntry> Next = Stream.advance(); in parseBlock() [all …]
|