Home
last modified time | relevance | path

Searched refs:writer (Results 201 – 225 of 231) sorted by last modified time

12345678910

/plugin/icalevents/vendor/sabre/xml/lib/
H A DXmlSerializable.php31 * @param Writer $writer
34 function xmlSerialize(Writer $writer); argument
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/Element/
H A DEater.php32 function xmlSerialize(Xml\Writer $writer) { argument
34 $writer->startElement('{http://sabredav.org/ns}elem1');
35 $writer->write('hiiii!');
36 $writer->endElement();
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/
H A DWriterTest.php7 protected $writer; variable in Sabre\\Xml\\WriterTest
11 $this->writer = new Writer();
12 $this->writer->namespaceMap = [
311 $this->writer->namespaceMap['http://sabredav.org/ns'] = '';
335 $this->assertEquals($output, $this->writer->outputMemory());
352 $this->assertEquals($output, $this->writer->outputMemory());
361 $this->writer->write(new \StdClass());
367 $this->writer->startElement("foo");
368 $this->writer->endElement();
384 $writer->text('deferred writer');
[all …]
/plugin/ditaa/ditaa/
H A Dditaa.jar ... () public void writeTo (java.io.Writer) throws java.io.IOException public void appendTo ...
/plugin/pgn4web/pgn4web/
H A Dpgn-standard.txt2325 writer. Each operand is a SAN move; they appear in ASCII order.
2332 writer. Each operand is a SAN move; they appear in ASCII order.
2523 move is judged by the EPD writer to represent the best move available to the
2537 playable from the position. This sequence is judged by the EPD writer to
/plugin/tuxquote/
H A Dquotes.txt1205 Abstain from beans. <BR> -- Plutarch (46-120), Greek priest and writer
1222 Buy land, they're not making it any more. <BR> -- Mark Twain (1835-1910), U.S. writer
1448 Kittens can happen to anyone. <BR> -- Paul Gallico, (1897-1976), U.S. writer
1730 A drink a day keeps the shrink away. <BR> -- Edward Abbey, 1927-1989, U.S. writer
1836 …sful writer is important; in France all writers are important; in England no writer is important, …
1906 My favorite animal is steak. <BR> -- Fran Lebowitz (1950--), U.S. writer
1932 A true friend stabs you in the front. <BR> -- Oscar Wilde (1854-1900), Irish writer
2191 Life is a zoo in a jungle. <BR> -- Peter De Vries, (1910--), U.S. writer
2288 I think, therefore I'm single. <BR> -- Liz Winstead, U.S. comedy TV writer
2336 All phone calls are obscene. <BR> -- Karen Elizabeth Gordon, U.S. writer
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A DChangeLog1722 * writer.class.php: fixed bug 1225284 - Mystic error messages in
1725 * writer.class.php: fixed bug 1234175 - Mystic error message if
1730 * writer.class.php: feature request 1220465 - PDF now can be
1733 * writer.class.php: feature request 1230338 - PDFLIB dynamic
1778 * writer.class.php: new - basic PDFLIB rendering support
1791 * writer.class.php: fixed bug 1221776 - script dies with mystic
/plugin/jcapture/lib/
H A Dtransform-3.0.2.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Dapache-mime4j-0.6.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/showif/
H A Dsyntax.php.alternative.version114 // switch back to the old call writer
/plugin/bible/bible_douayRheims/
H A DEzechiel.txt159 …d: and there was one man in the midst of them clothed with linen, with a writer's inkhorn at his r…
160 …e house: and he called to the man that was clothed with linen, and had a writer's inkhorn at his l…
/plugin/solr/
H A DAddDocument.php14 protected $writer; variable in Solr_AddDocument
17 $this->writer = $writer;
21 $this->writer->startDocument();
22 $this->writer->startElement('add');
29 $this->writer->endElement();
33 $writer = $this->writer;
34 $writer->startElement("doc");
45 $writer->endElement();
49 return $this->writer;
55 $this->writer->text($content);
[all …]
H A Dindex_all.php102 $writer = new XmlWriter();
103 $writer->openMemory();
104 $doc = new Solr_AddDocument($writer);
108 $xmldoc = $writer->outputMemory();
H A DPageinfo.php15 protected $writer; variable in Solr_Pageinfo
H A Daction.php96 $writer = new XmlWriter();
97 $writer->openMemory();
99 $doc = new Solr_AddDocument($writer);
106 $result = $helper->solr_query('update', 'commit=true', 'POST', $writer->outputMemory());
/plugin/jdraw/lib/
H A Dapache-mime4j-0.6.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/zip/pear/File/Archive/Reader/
H A DAr.php315 $writer = new File_Archive_Writer_Ar(null,
319 return $writer;
352 $writer = $this->makeWriterRemove();
353 if (PEAR::isError($writer)) {
354 return $writer;
358 $writer->newFile($filename, $stat);
359 $writer->writeData($data);
360 return $writer;
H A DGzip.php259 $writer = new File_Archive_Writer_Gzip(null, $innerWriter);
264 $writer->writeData($data);
271 return $writer;
H A DTar.php283 $writer = new File_Archive_Writer_Tar(null,
287 return $writer;
320 $writer = $this->makeWriterRemove();
321 if (PEAR::isError($writer)) {
322 return $writer;
327 $writer->newFile($filename, $stat);
328 $writer->writeData($data);
329 return $writer;
H A DZip.php334 $writer = new File_Archive_Writer_Zip(null,
337 if (PEAR::isError($writer)) {
338 return $writer;
346 return $writer;
377 $writer = $this->makeWriterRemove();
378 if (PEAR::isError($writer)) {
379 return $writer;
384 $writer->newFile($filename, $stat);
385 $writer->writeData($newData);
386 return $writer;
[all …]
H A DCache.php231 $writer = $this->source->makeAppendWriter();
232 if (!PEAR::isError($writer)) {
236 return $writer;
243 $writer = $this->source->makeWriterRemoveFiles($pred);
244 if (!PEAR::isError($writer)) {
247 return $writer;
254 $writer = $this->source->makeWriterRemoveBlocks($blocks, $seek);
255 if (!PEAR::isError($writer)) {
258 return $writer;
H A DDirectory.php164 $writer = new File_Archive_Writer_Files($this->directory);
166 return $writer;
191 $writer = $lastSource->makeWriterRemoveBlocks($blocks, $seek);
192 if (!PEAR::isError($writer)) {
193 $writer->basePath = $this->directory;
197 return $writer;
209 $writer = new File_Archive_Writer_Files($this->directory);
211 $writer = $this->source->makeAppendWriter($seek);
216 return $writer;
H A DBzip2.php238 $writer = new File_Archive_Writer_Bzip2(null, $innerWriter);
243 $writer->writeData($data);
250 return $writer;
H A DRelay.php104 $writer = $this->source->makeAppendWriter();
105 if (!PEAR::isError($writer)) {
108 return $writer;
115 $writer = $this->source->makeWriterRemoveFiles($pred);
116 if (!PEAR::isError($writer)) {
119 return $writer;
126 $writer = $this->source->makeWriterRemoveBlocks($blocks, $seek);
127 if (!PEAR::isError($writer)) {
130 return $writer;
/plugin/zip/pear/File/
H A DArchive.php1047 $writer->addWriter($a);
1048 $writer->addWriter($b);
1049 return $writer;
1109 unset($writer); $writer =& $next;
1116 unset($writer); $writer =& $next;
1124 unset($writer); $writer =& $next;
1132 unset($writer); $writer =& $next;
1140 unset($writer); $writer =& $next;
1152 return $writer;
1346 return $writer;
[all …]

12345678910