Home
last modified time | relevance | path

Searched refs:buffer (Results 51 – 75 of 302) sorted by relevance

12345678910>>...13

/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DTokenizer.php71 private $buffer; variable in Mustache_Tokenizer
125 $this->buffer .= $char;
165 self::NAME => trim($this->buffer),
202 $this->buffer = '';
207 $this->buffer .= $char;
232 $this->buffer = '';
251 if (strlen($this->buffer) > 0) {
255 self::VALUE => $this->buffer,
257 $this->buffer = '';
/plugin/wysiwyg/fckeditor/_samples/perl/
H A Dsampleposteddata.cgi55 read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});
57 $buffer = $ENV{'QUERY_STRING'};
59 @pairs = split(/&/,$buffer);
H A Dsample03.cgi63 read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});
65 $buffer = $ENV{'QUERY_STRING'};
67 @pairs = split(/&/,$buffer);
H A Dsample04.cgi63 read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});
65 $buffer = $ENV{'QUERY_STRING'};
67 @pairs = split(/&/,$buffer);
H A Dsample02.cgi63 read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});
65 $buffer = $ENV{'QUERY_STRING'};
67 @pairs = split(/&/,$buffer);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DAppendStream.php189 $buffer = '';
213 $buffer .= $result;
214 $remaining = $length - strlen($buffer);
217 $this->pos += strlen($buffer);
219 return $buffer;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php1354 $buffer = &$this->enbuffer;
1398 $buffer['ciphertext'] = substr($key, $start) . $buffer['ciphertext'];
1499 $buffer['xor'] = substr($key, $start) . $buffer['xor'];
1730 $buffer = &$this->debuffer;
1772 $buffer['ciphertext'] = substr($key, $start) . $buffer['ciphertext'];
1872 $buffer['xor'] = substr($key, $start) . $buffer['xor'];
1975 * @param array $buffer
2009 $buffer['ciphertext'] = substr($key, $start) . $buffer['ciphertext'];
2063 * @param array $buffer
2069 if (strlen($buffer['xor'])) {
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/
H A Daurora.js710 _ref.next = buffer;
712 this.last = buffer;
714 this.first = buffer;
868 list.append(buffer);
942 var buffer;
951 while (buffer) {
956 buffer = buffer.next;
3164 return buffer.length;
3168 return buffer;
3363 buffer[i] *= vol;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/
H A DRenderer.php209 $buffer = sprintf(
215 $buffer .= ' <li>(<a href="dashboard.html">Dashboard</a>)</li>' . "\n";
218 return $buffer;
282 $buffer = sprintf(
290 $buffer .= sprintf(
296 return $buffer;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DOverflowHandler.php59 private $buffer = []; variable in Monolog\\Handler\\OverflowHandler
105 $this->buffer[$level][] = $record;
112 foreach ($this->buffer[$level] ?? [] as $buffered) {
116 unset($this->buffer[$level]);
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Exception/
H A DInvalidCharacterException.php27 /** @var string $buffer string buffer */
33 * @param string $buffer
37 public function __construct(string $buffer, int $offset, Status $status) { argument
38 $this->_buffer = $buffer;
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Type/
H A DPdfHexString.php32 * @var string $buffer
36 $buffer = $streamReader->getBuffer(false);
37 $pos = \strpos($buffer, '>', $bufferOffset);
48 $result = \substr($buffer, $bufferOffset, $pos - $bufferOffset);
H A DPdfString.php32 $buffer = $streamReader->getBuffer(false);
33 for ($length = \strlen($buffer); $openBrackets !== 0 && $pos < $length; $pos++) {
34 switch ($buffer[$pos]) {
47 $result = \substr($buffer, $startPos, $openBrackets + $pos - $startPos - 1);
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/Status/
H A DSelector.php48 * Try to get token in buffer at offset position.
50 * @param string $buffer
54 public function getToken(string $buffer, int $offset): ?Scanner\Token { argument
55 if ($token = $this->matchCharacters($buffer, $offset, $this->_tokenChars)) {
58 if ($token = $this->matchPatterns($buffer, $offset, $this->_tokenPatterns)) {
/plugin/xtern/
H A Dadmin.php169 $buffer = fgets($handle);
171 if(preg_match("#<\/code>#",$buffer)) {
177 if(preg_match("#\<\/file>#",$buffer)) {
182 if(preg_match("#^\s*\<code.*?>#",$buffer)) {
186 if(preg_match("#^\s*\<file.*?>#",$buffer)) {
190 if(preg_match("#\<nowiki>#",$buffer)) {
191 if(preg_match('#\<nowiki>.*?https?:\/\/.*?\<\/nowiki\>#', $buffer)) {
195 if(preg_match("#\[?(https?://\S+)\]?#",$buffer,$matches)) {
197 preg_match_all("#https?://\S+#",$buffer,$submatches);
/plugin/webdav/_test/lib/
H A DDAVServerTest.php35 * @param string $buffer
37 public function ob_start_callback($buffer) argument
39 $this->output_buffer .= $buffer;
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Driver/
H A DXdebug.php105 $buffer = file_get_contents($file);
106 $lines = substr_count($buffer, "\n");
108 if (substr($buffer, -1) !== "\n") {
/plugin/dw2pdf/vendor/setasign/fpdi/src/
H A DFpdfTplTrait.php202 // initiate buffer with current state of FPDF
203 $buffer = "2 J\n"
207 $buffer .= \sprintf("BT /F%d %.2F Tf ET\n", $this->CurrentFont['i'], $this->FontSizePt);
211 $buffer .= $this->DrawColor . "\n";
214 $buffer .= $this->FillColor . "\n";
224 'buffer' => $buffer,
425 $buffer = \gzcompress($template['buffer']);
428 $buffer
[all...]
/plugin/jcapture/lib/
H A Dhttpcore-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jdraw/lib/
H A Dhttpcore-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/bibtex4dw/lib/
H A Dbibtexparser.php280 $buffer = '';
287 if (!$this->_checkAt($buffer)) {
288 $this->_generateWarning('WARNING_MISSING_END_BRACE', '', $buffer);
318 $this->_prepareSqlStatement($buffer);
320 $this->_storeEntryInClass($buffer);
322 $buffer = '';
326 $buffer .= $char;
336 $entrydata = $this->_parseEntry($buffer);
341 $buffer = '';
396 $buffer
[all...]
/plugin/diagramsnet/lib/js/diagramly/
H A DmxFreehand.js29 var buffer = []; // Contains the last positions of the mouse cursor
302 buffer = [];
349 buffer.push(pt);
351 while (buffer.length > bufferSize)
353 buffer.shift();
360 var len = buffer.length;
372 pt = buffer[i];
400 for (var offset = 2; offset < buffer.length; offset += 2)
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DBucket.php94 * @param string $buffer Stream buffer.
96 public function __construct(&$brigade, $is = self::IS_A_BRIGADE, $buffer = '') argument
103 $this->setBucket(stream_bucket_new($brigade, $buffer));
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DJSON.php242 * @param string $buffer
244 public function write($buffer) argument
246 array_walk_recursive($buffer, function (&$input) {
252 parent::write(json_encode($buffer, JSON_PRETTY_PRINT));
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dhttpcore-4.4.9.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...

12345678910>>...13