Home
last modified time | relevance | path

Searched refs:write (Results 26 – 50 of 1185) sorted by relevance

12345678910>>...48

/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DAsseticNode.php62 … ->write("if (isset(\$context['assetic']['debug']) && \$context['assetic']['debug']) {\n")
70 ->write("} else {\n")
78 ->write("}\n")
87 ->write('unset($context[')
105 $compiler->write("// check variable conditions\n");
109 ->write("if (!isset(\$context['assetic']['vars']['$var'])) {\n")
111 …->write("throw new \RuntimeException(sprintf('The asset \"".$name."\" expected variable \"".$var."…
113 ->write("}\n")
121 ->write("// asset \"$name\"\n")
122 ->write('$context[')
/plugin/html2pdf/html2pdf/html2ps/
H A Dps.image.encoder.simple.inc.php63 …$psdata->write("/row-{$id}-{$row} { /image-{$id}-data { row-{$id}-{$row_next} } def ({$ps_image_da…
72 …$psdata->write("/row-{$id}-{$row} { /image-{$id}-data { row-{$id}-1 } def ({$ps_image_data}) } de…
75 $psdata->write("/image-{$id}-data { row-{$id}-1 } def\n");
76 $psdata->write("/image-{$id}-init { } def\n");
155 …$psdata->write("/row-{$id}-{$row} { /image-{$id}-data { row-{$id}-{$row_next} } def ({$ps_image_da…
159 $psdata->write("/image-{$id}-data { row-{$id}-1 } def\n");
160 $psdata->write("/mask-{$id}-data { mrow-{$id}-1 } def\n");
161 $psdata->write("/image-{$id}-init { } def\n");
212 …$psdata->write("/row-{$id}-{$row} { /image-{$id}-data { row-{$id}-{$row_next} } def ({$ps_image_da…
215 $psdata->write("/image-{$id}-data { row-{$id}-1 } def\n");
[all …]
/plugin/jplayer/vendor/symfony/process/Tests/
H A DPipeStdinInStdoutStdErrStreamSelect.php18 $write = [\STDOUT, \STDERR]; variable
25 while ($read || $write) {
27 $w = $write;
45 $write = array_diff($write, [\STDOUT]); variable
56 $write = array_diff($write, [\STDERR]); variable
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DColorWriter.php35 $this->writer->write('[/Separation /' . str_replace(' ', '#20', $name));
36 $this->writer->write('/DeviceCMYK <<');
37 $this->writer->write('/Range [0 1 0 1 0 1 0 1] /C0 [0 0 0 0] ');
38 $this->writer->write(sprintf('/C1 [%.3F %.3F %.3F %.3F] ', $color['c'] / 100, $color['m'] / 100, $color['y'] / 100, $color['k'] / 100));
39 $this->writer->write('/FunctionType 2 /Domain [0 1] /N 1>>]');
40 $this->writer->write('endobj');
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/ResultPrinter/
H A DText.php23 $this->write($this->currentTestClassPrettified . "\n");
35 $this->write(' [x] ');
37 $this->write(' [ ] ');
40 $this->write($name . "\n");
50 $this->write("\n");
H A DHTML.php83 $this->write($this->pageHeader);
93 $this->write(
110 $this->write(
127 $this->write($this->classFooter);
135 $this->write($this->pageFooter);
/plugin/findologicxmlexport/vendor/hoa/file/
H A DReadWrite.php252 public function write($string, $length) function in Hoa\\File\\ReadWrite
275 return $this->write($string, strlen($string));
286 return $this->write((string) $char[0], 1);
297 return $this->write((string) (bool) $boolean, 1);
310 return $this->write($integer, strlen($integer));
323 return $this->write($float, strlen($float));
336 return $this->write($array, strlen($array));
348 return $this->write($line . "\n", strlen($line) + 1);
353 return $this->write(substr($line, 0, $n), $n);
364 return $this->write($string, strlen($string));
/plugin/findologicxmlexport/vendor/hoa/file/Link/
H A DReadWrite.php253 public function write($string, $length) function in Hoa\\File\\Link\\ReadWrite
276 return $this->write($string, strlen($string));
287 return $this->write((string) $char[0], 1);
298 return $this->write((string) (bool) $boolean, 1);
311 return $this->write($integer, strlen($integer));
324 return $this->write($float, strlen($float));
337 return $this->write($array, strlen($array));
349 return $this->write($line . "\n", strlen($line) + 1);
354 return $this->write(substr($line, 0, $n), $n);
365 return $this->write($string, strlen($string));
/plugin/findologicxmlexport/vendor/hoa/file/Temporary/
H A DReadWrite.php253 public function write($string, $length) function in Hoa\\File\\Temporary\\ReadWrite
276 return $this->write($string, strlen($string));
287 return $this->write((string) $char[0], 1);
298 return $this->write((string) (bool) $boolean, 1);
311 return $this->write($integer, strlen($integer));
324 return $this->write($float, strlen($float));
337 return $this->write($array, strlen($array));
349 return $this->write($line . "\n", strlen($line) + 1);
354 return $this->write(substr($line, 0, $n), $n);
365 return $this->write($string, strlen($string));
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DDroppingStreamTest.php14 $this->assertEquals(3, $drop->write('hel'));
15 $this->assertFalse($drop->write('lo'));
19 $drop->write('12345678910');
24 $drop->write('hello');
25 $this->assertFalse($drop->write('test'));
/plugin/swiftmail/Swift/Message/
H A DMime.php291 $this->cache->write("append", $this->LE . "--" . $this->boundary . $this->LE);
293 while (false !== $bytes = $part_stream->read()) $this->cache->write("append", $bytes);
295 $this->cache->write("append", $this->LE . "--" . $this->boundary . "--" . $this->LE);
317 $this->cache->write("body", $bytes);
329 $this->cache->write("body", $bytes);
341 $this->cache->write("body", $bytes);
345 $this->cache->write("body", $this->getData());
353 $this->cache->write("body", $bytes);
365 $this->cache->write("body", $bytes);
487 $this->cache->write("headers", $this->headers->build());
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/TextUI/
H A DResultPrinter.php208 $this->write("\n--\n\n");
211 $this->write(
250 $this->write(
265 $this->write((string) $e);
358 $this->write("\n");
366 $this->write("\n");
518 $this->write(
559 $this->write($progress);
570 $this->write(
589 $this->write("\n");
[all …]
H A DTestRunner.php265 $this->printer->write(
389 $this->printer->write("\n");
528 $this->printer->write(
546 $this->printer->write(
564 $this->printer->write(
590 $this->printer->write(
623 $outputStream->write(
629 $this->printer->write(
695 protected function write($buffer) function in PHPUnit_TextUI_TestRunner
1129 $this->write("\n");
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DTAP.php42 $this->write("TAP version 13\n");
103 $this->write(
132 $this->write(
152 $this->write(
183 $this->write(sprintf("1..%d\n", $this->testNumber));
207 $this->write(
226 $this->write(
253 $this->write(
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DIncludeNode.php41 ->write("try {\n")
57 ->write("} catch (LoaderError \$e) {\n")
59 ->write("// ignore missing template\n")
61 ->write("}\n\n")
69 ->write('$this->loadTemplate(')
H A DIfNode.php41 ->write('} elseif (')
45 ->write('if (')
60 ->write("} else {\n")
68 ->write("}\n");
/plugin/diagramsnet/lib/js/
H A Dclear.js3 function write(text) function
10 write(text);
14 write('Clearing Cache...');
44 write('Error: ' + e.message);
/plugin/davcard/action/
H A Dajax.php56 $write = true;
67 $write = false;
75 … if($write && ($this->hlp->addContactEntryToAddressbookForPage($id, $user, $params) === true))
82 if(!$write)
111 …if($write && ($this->hlp->editContactEntryToAddressbookForPage($id, $user, $params['uri'], $params…
118 if(!$write)
126 …if($write && ($this->hlp->deleteContactEntryToAddressbookForPage($id, $user, $params['uri']) === t…
133 if(!$write)
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Fonts/
H A DFontCache.php49 public function write($filename, $data) function in Mpdf\\Fonts\\FontCache
51 return $this->cache->write($filename, $data);
56 return $this->cache->write($filename, $data);
61 return $this->cache->write($filename, json_encode($data));
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DDroppingStream.php24 public function write($string) function in GuzzleHttp\\Stream\\DroppingStream
35 return $this->stream->write($string);
38 $this->stream->write(substr($string, 0, $diff));
/plugin/davcal/action/
H A Dajax.php37 $write = false;
56 $write = true;
78 if($write)
112 if($write)
134 if($write)
159 $data['settings']['readonly'] = !$write;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataflow/
H A DParallelInstruction.php163 public function setWrite(WriteInstruction $write) argument
165 $this->write = $write;
172 return $this->write;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DSetHtmlPageFooter.php42 $write = 0;
44 $write = 1;
48 $this->mpdf->SetHTMLHeader($this->mpdf->pageHTMLheaders[$pname], 'O', $write);
59 $this->mpdf->SetHTMLHeader($this->mpdf->pageHTMLheaders[$pname], 'E', $write);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DDroppingStream.php29 public function write($string) function in GuzzleHttp\\Psr7\\DroppingStream
40 return $this->stream->write($string);
43 return $this->stream->write(substr($string, 0, $diff));
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dgson-2.7.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...

12345678910>>...48