Home
last modified time | relevance | path

Searched refs:buffer (Results 151 – 175 of 302) sorted by path

12345678910>>...13

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/TextUI/
H A DTestRunner.php693 * @param string $buffer
695 protected function write($buffer) argument
698 $buffer = htmlspecialchars($buffer);
702 $this->printer->write($buffer);
704 print $buffer;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DFilesystem.php19 protected static $buffer = []; variable in PHPUnit_Util_Filesystem
H A DPHP.php254 $buffer = '';
257 $buffer .= ' -d ' . $setting;
260 return $buffer;
H A DPrinter.php95 * @param string $buffer
97 public function write($buffer) argument
100 fwrite($this->out, $buffer);
107 $buffer = htmlspecialchars($buffer, ENT_SUBSTITUTE);
110 print $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));
H A DJUnit.php429 $buffer = $test->toString() . PHP_EOL;
431 $buffer = '';
434 $buffer .= PHPUnit_Framework_TestFailure::exceptionToString($e) . PHP_EOL .
439 PHPUnit_Util_XML::prepareString($buffer)
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
H A DNamePrettifier.php68 $buffer = '';
71 return $buffer;
87 return $buffer;
103 $buffer .= ' ' . strtolower($name[$i]);
108 $buffer .= ' ';
116 $buffer .= $name[$i];
120 return $buffer;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D1149.phpt2 GH-1149: Test swallows output buffer when run in a separate process
/plugin/findologicxmlexport/vendor/sebastian/diff/src/
H A DDiffer.php128 $buffer = $this->header;
131 $buffer = $this->getDiffBufferElementNew($diff, $buffer, $start);
138 $buffer = $this->getDiffBufferElementNew($diff, $buffer, $i);
140 $buffer = $this->getDiffBufferElement($diff, $buffer, $i);
144 return $buffer;
151 * @param string $buffer
159 $buffer .= '+' . $diff[$diffIndex][0] . "\n";
161 $buffer .= '-' . $diff[$diffIndex][0] . "\n";
166 return $buffer;
173 * @param string $buffer
[all …]
/plugin/findologicxmlexport/vendor/sebastian/resource-operations/build/
H A Dgenerate.php26 $buffer = <<<EOT variable
51 $buffer .= sprintf(" '%s',\n", $function);
54 $buffer .= <<< EOT
61 file_put_contents(__DIR__ . '/../src/ResourceOperations.php', $buffer);
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dflush.rst7 The ``flush`` tag tells Twig to flush the output buffer:
/plugin/findologicxmlexport/vendor/twig/twig/ext/twig/
H A Dtwig.c543 char *buffer; in TWIG_RUNTIME_ERROR() local
560 vspprintf(&buffer, 0, message, args); in TWIG_RUNTIME_ERROR()
575 ZVAL_STRING(zmessage, buffer, 1); in TWIG_RUNTIME_ERROR()
593 efree(buffer); in TWIG_RUNTIME_ERROR()
/plugin/flowplay/flowplayer/
H A DREADME.txt13 specify the length of the buffer in seconds when streaming FLV. Fixed a
26 - Displays a "BUFFERING..." text when filling the video buffer.
88 - Does not buffer unnessessarily if looping through one clip again and again
135 - Changed the default buffer to 10 seconds
139 …- Fixed buffering indicator, did not show the buffer lenght correctly when not using a streaming s…
H A Djavascript.txt85 Starts loading the clip into the buffer memory. Does not start
94 Gets the percentage of buffer memory currently filled with data.
/plugin/flowplay2/flowplayer/
H A DREADME.txt63 - New rotating buffer animation
154 background instead) before the buffer is filled an the playback starts.
156 before the buffer has been filled and the playback starts.
181 specify the length of the buffer in seconds when streaming FLV. Fixed a
194 - Displays a "BUFFERING..." text when filling the video buffer.
260 - Does not buffer unnessessarily if looping through one clip again and again
307 - Changed the default buffer to 10 seconds
311 …- Fixed buffering indicator, did not show the buffer lenght correctly when not using a streaming s…
H A Djavascript.txt61 Starts loading the clip into the buffer memory. Does not start
70 Gets the percentage of buffer memory currently filled with data.
191 Called when the buffer is full and the playback for the specified clip can start.
195 Called when the buffer is flushed for a clip.
/plugin/flowplayer/player/
H A DREADME.txt40 - Fixed #490, controlbar background, buffer bar and progress bar colors were all reset to white
89 - #395 apply buffer animation status to VOD streams only.
91 - #390 correct seek back to a valid time on invalid seeking while seeking in the buffer.
96 …lid seek times, make it step back 1 second from the invalid seek time to seek the buffer correctly.
131 - does not show the buffer animation any more when the player receives the onBufferEmpty message fr…
/plugin/gcalendar/inc/
H A Dgcal_read.php104 $buffer = trim(fgets($handle, 4096));
108 if(preg_match($pattern, $buffer, $subpattern)) {
118 if(preg_match($pattern, $buffer, $subpattern)) {
119 $buffer = $subpattern[1];
124 $start_time = fetch_time($buffer);
127 if($buffer{0}=="-") {
128 $buffer = trim(substr($buffer,1)); # remove dash
129 $end_date = fetch_date($buffer,$default_date);
132 $end_time = fetch_time($buffer);
139 $entry = $buffer;
[all …]
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DBinaryReader.php28 private $buffer; variable in geoPHP\\Adapter\\BinaryReader
34 * Opens a memory buffer with the given input
41 // $this->buffer = fopen($input, 'r+');
43 $this->buffer = fopen('php://memory', 'x+');
44 fwrite($this->buffer, (string) $input);
45 fseek($this->buffer, 0);
50 * Closes the memory buffer
54 fclose($this->buffer);
74 * Reads a signed 8-bit integer from the buffer
79 $char = fread($this->buffer,
[all...]
/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DGeometry.php596 public function buffer($distance) function in geoPHP\\Geometry\\Geometry
600 return geoPHP::geosToGeometry($this->getGeos()->buffer($distance));
/plugin/googlesearch/
H A Dnusoap.php1761 $buffer .= '<table>';
1763 $buffer .= "
1767 $buffer .= '</table>';
1770 $buffer .= '<table>';
1772 $buffer .= "
1776 $buffer .= '</table>';
1784 return $buffer;
2415 * @param string $buffer
2421 function decodeChunked($buffer, $lb){ argument
2428 $chunkend = strpos($buffer, $lb);
[all …]
/plugin/highlightjs/highlight/
H A Dhighlight.js128 return escape(buffer);
152 result += escape(buffer.substr(last_index, buffer.length - last_index));
171 mode.buffer = '';
174 mode.buffer = '';
177 mode.buffer = lexem;
185 result += processBuffer(current_mode.buffer + buffer, current_mode);
191 result += processBuffer(current_mode.buffer + buffer, current_mode);
201 result += processBuffer(current_mode.buffer + buffer, current_mode) + markup;
203 … result += processBuffer(current_mode.buffer + buffer, current_mode) + markup + escape(lexem);
205 result += processBuffer(current_mode.buffer + buffer + lexem, current_mode) + markup;
[all …]
H A Dhighlight.pack.js1buffer=""}else{if(O.eB){c+=n(r)+N;O.buffer=""}else{c+=N;O.buffer=r}}D[D.length]=O}function F(R,N,S…
/plugin/html2pdf/html2pdf/html2ps/fpdf/
H A Dfpdf.php946 var $buffer; //buffer holding in-memory PDF variable in FPDF
1539 $this->buffer='';
2543 echo $this->buffer;
2557 echo $this->buffer;
2564 fwrite($f,$this->buffer,strlen($this->buffer));
2569 return $this->buffer;
2656 $this->offsets[1] = strlen($this->buffer);
2852 $this->offsets[2]=strlen($this->buffer);
2966 $o=strlen($this->buffer);
3032 $this->offsets[$num]=strlen($this->buffer);
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dpdf.fpdf.php102 $handler->offsets[$this->get_object_id()] = strlen($handler->buffer);
1042 var $buffer; //buffer holding in-memory PDF variable in FPDF
1147 $this->offsets[$object_number] = strlen($this->buffer);
1635 $this->buffer='';
2124 fwrite($f,$this->buffer,strlen($this->buffer));
2168 $this->offsets[$page->get_object_id()] = strlen($this->buffer);
2198 $this->offsets[1] = strlen($this->buffer);
2411 $this->offsets[2]=strlen($this->buffer);
2515 $o=strlen($this->buffer);
2554 $this->offsets[$num]=strlen($this->buffer);
[all …]

12345678910>>...13