Home
last modified time | relevance | path

Searched refs:stream (Results 226 – 250 of 459) sorted by path

12345678910>>...19

/plugin/dirtylittlehelper/script/
H A Dmermaid.min.js1stream:function(n){return t&&e===n?t:t=Cl(r,i,a,o)(e=n)},extent:function(s){return arguments.lengt… function
H A Dmermaid.min.js.map1stream.js","webpack://mermaid/./node_modules/d3-geo/src/area.js","webpack://mermaid/./node_modules…
/plugin/dropfiles/
H A Dyarn.lock241 block-stream@*:
505 combined-stream@^1.0.5, combined-stream@~1.0.5:
519 concat-stream@^1.6.0:
672 delayed-stream@~1.0.0:
946 is-stream "^1.1.0"
1144 get-stream@^3.0.0:
1502 is-stream@^1.1.0:
1826 mute-stream@0.0.7:
2312 …-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-s…
2580 stream-http@^2.3.1:
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DCHANGELOG.md13 * Checking allowed stream wrappers in CssManager
19 * Allowed image stream whitelist to be customised (#1005, thanks @jakejackson)
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DForm.php1354 $this->writer->stream($info['data']);
1363 $this->writer->stream($pal);
1602 $this->writer->stream($p);
1608 $this->writer->stream($p);
1613 // First output appearance stream for check box on
1630 $this->writer->stream($p);
1633 // output appearance stream for check box off (only if not using ZapfDingbats)
1638 $this->writer->stream($p);
H A DFpdiTrait.php301 $this->writePdfType($pageData['stream']);
378 $stream = $value->getStream();
379 $stream = $this->protection->rc4($this->protection->objectKey($this->currentObjectNumber), $stream);
381 $dictionary->value['Length'] = PdfNumeric::create(\strlen($stream));
382 $value = PdfStream::create($dictionary, $stream);
H A DOtlDump.php409 function splice($stream, $offset, $value) argument
411 return substr($stream, 0, $offset) . $value . substr($stream, $offset + strlen($value));
414 function _set_ushort($stream, $offset, $value) argument
418 return $this->splice($stream, $offset, $up);
421 function _set_short($stream, $offset, $val) argument
430 return $this->splice($stream, $offset, $up);
H A DTTFontFile.php490 function splice($stream, $offset, $value) argument
492 return substr($stream, 0, $offset) . $value . substr($stream, $offset + strlen($value));
495 function _set_ushort($stream, $offset, $value) argument
499 return $this->splice($stream, $offset, $up);
502 function _set_short($stream, $offset, $val) argument
511 return $this->splice($stream, $offset, $up);
524 // if fread is used to read from a compressed / buffered stream (e.g. phar://...)
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DBackgroundWriter.php219 $this->writer->stream($s);
352 $this->writer->write('/Length ' . strlen($grad['stream']));
354 $this->writer->stream($grad['stream']);
406 $this->writer->stream($grad['stream_trans']);
435 $this->writer->stream($p);
H A DBaseWriter.php62 public function stream($s)
68 $this->write('stream');
63 public function stream($s) global() function in Mpdf\\Writer\\BaseWriter
H A DFontWriter.php104 $this->writer->stream($font);
262 $this->writer->stream($toUni);
271 $this->writer->stream($fontstream);
355 $this->writer->stream($toUni);
386 // obj ID of a stream containing a TrueType font program
423 $this->writer->stream($cidtogidmap);
433 $this->writer->stream($fontstream);
H A DFormWriter.php48 $this->writer->stream($data);
H A DImageWriter.php97 $this->writer->stream($info['data']);
107 $this->writer->stream($icc);
113 $this->writer->stream($pal);
H A DMetadataWriter.php147 $this->writer->stream($m);
257 $this->writer->stream($s);
267 // for each file, we create the spec object + the stream object
314 $this->writer->stream($filestream);
720 $this->writer->stream($filestream);
H A DPageWriter.php261 $this->writer->stream($p);
/plugin/dw2pdf/vendor/setasign/fpdi/
H A DREADME.md81 - Native support for reading PDFs from strings or stream-resources
/plugin/dw2pdf/vendor/setasign/fpdi/src/
H A DFpdiTrait.php95 * stream reader instances which were created internally.
205 * @param string|resource|StreamReader $file Path to the file or a stream resource or a StreamReader instance.
332 // try to use the existing content stream
338 // just copy the stream reference if it is only a single stream
346 $stream = $contents;
348 $stream = PdfType::resolve($contents->value[0], $reader->getParser());
351 $filter = PdfDictionary::get($stream->value, 'Filter');
355 $length = PdfType::resolve(PdfDictionary::get($stream->value, 'Length'), $reader->getParser());
357 $stream
[all...]
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/CrossReference/
H A DCrossReference.php239 $stream = PdfStream::ensure($initValue->value);
249 $type = PdfDictionary::get($stream->value, 'Type');
257 $this->checkForEncryption($stream->value);
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/
H A DStreamReader.php13 * A stream reader class
20 * Creates a stream reader instance by a string value.
36 * Creates a stream reader instance by a filename.
48 * Defines whether the stream should be closed when the stream reader instance is deconstructed or not.
55 * The stream resource.
59 protected $stream; variable in setasign\\Fpdi\\PdfParser\\StreamReader
62 * The byte-offset position in the stream.
83 * The total length of the stream.
99 * @param resource $stream
102 __construct($stream, $closeStream = false) global() argument
[all...]
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Type/
H A DPdfStream.php24 * Class representing a PDF stream object
31 * Parses a stream from a stream reader.
59 'Unable to parse stream data. No newline after the stream keyword found.',
74 // let's only save the byte-offset and read the stream only when needed
75 $v->stream = $reader->getPosition() + $reader->getOffset();
84 * @param string $stream
87 public static function create(PdfDictionary $dictionary, $stream) argument
91 $v->stream
103 ensure($stream) global() argument
113 protected $stream; global() variable in setasign\\Fpdi\\PdfParser\\Type\\PdfStream
[all...]
/plugin/dw2pdf/vendor/setasign/fpdi/src/Tcpdf/
H A DFpdi.php158 $this->writePdfType($pageData['stream']);
251 $stream = $value->getStream();
252 $stream = $this->_encrypt_data($this->currentObjectNumber, $stream);
254 $dictionary->value['Length'] = PdfNumeric::create(\strlen($stream));
255 $value = PdfStream::create($dictionary, $stream);
/plugin/elasticsearch/
H A Dcomposer.lock117 "stream"
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DREADME.md425 // The connection class requires 'body' to be a file stream handle
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DIndicesNamespace.asciidoc189 $params['name'] = (string) The name of the data stream
202 $params['name'] = (list) A comma-separated list of data stream names; use `_all` or empty string to perform the operation on all data streams
637 $params['name'] = (string) The name of the data stream
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DCHANGELOG.rst20 returns the entire remainder of the stream. If you want to limit the maximum
21 amount of data read from the stream, use the
26 ``eof()`` method when the stream is consumed.
38 ``drain`` option is provided, the stream can also act as if it is a blocking
39 stream.
45 * Added ``flush`` to stream wrapper.
55 underlying stream write buffers.
56 * Added ``FnStream`` to easily decorate stream behavior with callables.
57 * ``Utils::hash`` now throws an exception when the stream cannot seek to 0.
62 * Stream metadata is grabbed from the underlying stream eac
[all...]

12345678910>>...19