Home
last modified time | relevance | path

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

1...<<111213141516171819

/plugin/webdavclient/vendor/sabre/vobject/
H A DChangeLog.md299 * Fixed: Issue #54. Parsing a stream of multiple vcards separated by more than
425 * Added: MimeDir parser can now continue parsing with the same stream buffer.
/plugin/webdavclient/vendor/sabre/vobject/lib/Parser/
H A DMimeDir.php83 $stream = fopen('php://temp', 'r+');
84 fwrite($stream, $input);
85 rewind($stream);
86 $this->input = $stream;
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Parser/
H A DJsonTest.php368 $stream = fopen('php://memory','r+');
369 fwrite($stream, json_encode($input));
370 rewind($stream);
372 $result = VObject\Reader::readJson($stream,0);
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
H A DReaderTest.php22 $stream = fopen('php://memory', 'r+');
23 fwrite($stream, $data);
24 rewind($stream);
26 $result = Reader::read($stream);
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Splitter/
H A DICalendarTest.php17 $stream = fopen('php://memory','r+');
18 fwrite($stream, $data);
19 rewind($stream);
20 return $stream;
H A DVCardTest.php11 $stream = fopen('php://memory','r+');
12 fwrite($stream, $data);
13 rewind($stream);
14 return $stream;
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js267 var stream;
7644 return this.stream.wrap(stream);
24399 stream = stream.pipe(new PassThrough());
72171 flow(stream);
72540 flow(stream);
72603 return stream[method].apply(stream, arguments);
74408 eos(stream, {
74422 if (isRequest(stream)) return stream.abort();
79680 flow(stream);
79978 flow(stream);
[all …]
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js1171 function NodejsStreamInputAdapter(filename, stream) { argument
1174 this._bindStream(stream);
1184 NodejsStreamInputAdapter.prototype._bindStream = function (stream) { argument
1186 this._stream = stream;
1187 stream.pause();
1188 stream
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs26412 var stream = _Readable();
26414 if(sheet == null || sheet["!ref"] == null) { stream.push(null); return stream; }
26439 return stream;
26448 stream.push(header);
26465 return stream;
26471 if(sheet == null || sheet["!ref"] == null) { stream.push(null); return stream; }
26521 stream.push(row.row);
26527 return stream;
26550 XLSX.stream = __stream;
26569 __stream as stream,
[all …]

1...<<111213141516171819