Home
last modified time | relevance | path

Searched refs:stream (Results 101 – 125 of 459) sorted by relevance

12345678910>>...19

/plugin/codemirror/dist/modes/
H A Dpuppet.min.js.map1stream","state","current","prev","found_var","eol","next","pending","backUp","continueString","tok…
H A Dasciiarmor.min.js.map1stream","nonWS","match","skipToEnd","defineMode","token","state","m","sol","type","result","eatWhi…
H A Dpowershell.min.js.map1stream","state","parent","returnStack","shouldReturnFrom","tokenize","pop","eatSpace","eat","brack…
H A Dsieve.min.js.map1stream","state","ch","next","eat","tokenize","tokenCComment","skipToEnd","tokenString","_indent","…
H A Dasterisk.min.js.map1stream","state","cur","ch","next","blockComment","match","skipTo","skipToEnd","eat","eatWhile","cu…
H A Dsmarty.min.js.map1stream","state","parser","tokenize","doesNotCount","pos","string","length","test","charAt","tokenT…
H A Ddiff.min.js.map1stream","tw_pos","string","search","sol","skipToEnd","charAt","replace","token_name","peek","pos",…
H A Dvelocity.min.js.map1stream","state","f","tokenize","tokenBase","beforeParams","ch","next","inString","inParams","lastT…
H A Dsoy.min.js.map1stream","state","untilRegExp","sol","indent","eat","oldString","string","match","exec","substr","p…
H A Dtiki.min.js.map1stream","state","eol","match","tokenize","inText","next","inLine","chain","parser","sol","ch","eat…
H A Dgfm.min.js.map1stream","combineTokens","match","skipToEnd","sol","peek","next","before","pos","eatWhile","differe…
H A Dmathematica.min.js.map1stream","state","ch","next","tokenize","tokenString","eat","commentLevel","tokenComment","backUp",…
H A Dtcl.min.js.map1stream","state","f","tokenize","tokenBase","beforeParams","ch","next","inParams","tokenString","te…
H A Ddjango.min.js.map1stream","state","match","tokenize","inVariable","inTag","inComment","next","inString","delimiter",…
H A Dprotobuf.min.js.map1stream","eatSpace","match","skipToEnd","next","defineMode","token","fold","defineMIME"],"mappings"…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/NodeVisitor/
H A DOptimizerTest.php22 $stream = $env->parse($env->tokenize(new Source('{{ block("foo") }}', 'index')));
24 $node = $stream->getNode('body')->getNode(0);
34 …$stream = $env->parse($env->tokenize(new Source('{% extends "foo" %}{% block content %}{{ parent()…
36 $node = $stream->getNode('blocks')->getNode('content')->getNode(0)->getNode('body');
49 $stream = $env->parse($env->tokenize(new Source('{{ block(name|lower) }}', 'index')));
51 $node = $stream->getNode('body')->getNode(0)->getNode(1);
64 $stream = $env->parse($env->tokenize(new Source($template, 'index')));
67 …$this->assertTrue($this->checkForConfiguration($stream, $target, $withLoop), sprintf('variable %s …
/plugin/authfacebook/lib/PseudoRandomString/
H A DUrandomPseudoRandomStringGenerator.php65 $stream = fopen('/dev/urandom', 'rb');
66 if (!is_resource($stream)) {
74 stream_set_read_buffer($stream, 0);
77 $binaryString = fread($stream, $length);
78 fclose($stream);
/plugin/fksnewsfeed/
H A Dscript.js10 const fetchNews = (stream, offset, length, callback) => {
21 stream,
34 document.querySelectorAll('.news-stream').forEach((stream) => {
36 const newsContainer = stream.querySelector('.stream');
39 const loadBar = stream.querySelector('.load-bar');
40 const moreButton = stream.querySelector('.more-news');
/plugin/authfacebook/lib/FileUpload/
H A DFacebookFile.php53 protected $stream; variable in Facebook\\FileUpload\\FacebookFile
91 $this->stream = fopen($this->path, 'r');
93 if (!$this->stream) {
103 if (is_resource($this->stream)) {
104 fclose($this->stream);
115 return stream_get_contents($this->stream, $this->maxLength, $this->offset);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DParserTraceListener.php23 $stream = $this->parser->getTokenStream();
24 $token = $stream !== null ? $stream->LT(1) : null;
44 $stream = $this->parser->getTokenStream();
45 $token = $stream !== null ? $stream->LT(1) : null;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A Dfunctions.php187 * @param StreamInterface $stream Stream to read
197 function copy_to_string(StreamInterface $stream, $maxLen = -1) argument
199 return Utils::copyToString($stream, $maxLen);
226 * @param StreamInterface $stream Stream to calculate the hash for
236 function hash(StreamInterface $stream, $algo, $rawOutput = false) argument
238 return Utils::hash($stream, $algo, $rawOutput);
244 * @param StreamInterface $stream Stream to read from
251 function readline(StreamInterface $stream, $maxLength = null) argument
253 return Utils::readLine($stream, $maxLength);
/plugin/authgooglesheets/vendor/symfony/polyfill-php72/
H A DPhp72.php102 public static function sapi_windows_vt100_support($stream, $enable = null) argument
104 if (!\is_resource($stream)) {
105 …_windows_vt100_support() expects parameter 1 to be resource, '.\gettype($stream).' given', \E_USER…
110 $meta = stream_get_meta_data($stream);
119 if (false === $enable || !self::stream_isatty($stream)) {
134 public static function stream_isatty($stream) argument
136 if (!\is_resource($stream)) {
137 …trigger_error('stream_isatty() expects parameter 1 to be resource, '.\gettype($stream).' given', \…
143 $stat = @fstat($stream);
148 return \function_exists('posix_isatty') && @posix_isatty($stream);
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DWithTokenParser.php28 $stream = $this->parser->getStream();
32 if (!$stream->test(Token::BLOCK_END_TYPE)) {
34 $only = $stream->nextIf(Token::NAME_TYPE, 'only');
37 $stream->expect(Token::BLOCK_END_TYPE);
41 $stream->expect(Token::BLOCK_END_TYPE);
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/
H A DServiceTest.php76 $stream = fopen('php://memory', 'r+');
77 fwrite($stream, $xml);
78 rewind($stream);
81 $result = $util->parse($stream, null, $rootElement);
137 $stream = fopen('php://memory', 'r+');
138 fwrite($stream, $xml);
139 rewind($stream);
142 $result = $util->expect('{http://sabre.io/ns}root', $stream);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md13 This package comes with a number of stream implementations and stream
71 $stream->read(1024);
72 echo $stream->tell();
75 $stream->seek(0);
76 echo $stream->tell();
136 the gzip header, converts the provided stream to a PHP stream resource,
138 to a Guzzle stream resource to be used as a Guzzle stream.
178 echo $stream->tell();
251 $this->stream = $stream;
292 PSR-7 stream as a PHP stream resource.
[all …]

12345678910>>...19