Home
last modified time | relevance | path

Searched refs:writer (Results 101 – 125 of 231) sorted by relevance

12345678910

/plugin/webdav/vendor/sabre/xml/lib/Element/
H A DCdata.php55 * @param Writer $writer
58 function xmlSerialize(Xml\Writer $writer) { argument
60 $writer->writeCData($this->value);
H A DBase.php54 * @param Writer $writer
57 function xmlSerialize(Xml\Writer $writer) { argument
59 $writer->write($this->value);
H A DKeyValue.php72 * @param Writer $writer
75 function xmlSerialize(Xml\Writer $writer) { argument
77 $writer->write($this->value);
H A DElements.php72 * @param Writer $writer
75 function xmlSerialize(Xml\Writer $writer) { argument
77 Serializer\enum($writer, $this->value);
/plugin/icalevents/vendor/sabre/xml/lib/Element/
H A DCdata.php55 * @param Writer $writer
58 function xmlSerialize(Xml\Writer $writer) { argument
60 $writer->writeCData($this->value);
H A DBase.php54 * @param Writer $writer
57 function xmlSerialize(Xml\Writer $writer) { argument
59 $writer->write($this->value);
H A DKeyValue.php72 * @param Writer $writer
75 function xmlSerialize(Xml\Writer $writer) { argument
77 $writer->write($this->value);
H A DElements.php72 * @param Writer $writer
75 function xmlSerialize(Xml\Writer $writer) { argument
77 Serializer\enum($writer, $this->value);
/plugin/davcal/vendor/sabre/xml/lib/Element/
H A DCdata.php55 * @param Writer $writer
58 function xmlSerialize(Xml\Writer $writer) { argument
60 $writer->writeCData($this->value);
H A DBase.php54 * @param Writer $writer
57 function xmlSerialize(Xml\Writer $writer) { argument
59 $writer->write($this->value);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DHref.php92 * @param Writer $writer
95 function xmlSerialize(Writer $writer) { argument
98 $href = Uri\resolve($writer->contextUri, $href);
99 $writer->writeElement('{DAV:}href', $href);
H A DInvite.php59 * @param Writer $writer
62 function xmlSerialize(Writer $writer) { argument
65 $writer->writeElement('{DAV:}sharee', $sharee);
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Property/
H A DScheduleCalendarTransp.php80 * @param Writer $writer
83 function xmlSerialize(Writer $writer) { argument
87 $writer->writeElement('{' . Plugin::NS_CALDAV . '}transparent');
90 $writer->writeElement('{' . Plugin::NS_CALDAV . '}opaque');
H A DSupportedCollationSet.php40 * @param Writer $writer
43 function xmlSerialize(Writer $writer) { argument
52 $writer->writeElement('{' . Plugin::NS_CALDAV . '}supported-collation', $collation);
H A DEmailAddressSet.php67 * @param Writer $writer
70 function xmlSerialize(Writer $writer) { argument
74 $writer->writeElement('{http://calendarserver.org/ns/}email-address', $email);
/plugin/webdav/vendor/sabre/vobject/lib/Property/
H A DText.php282 protected function xmlSerializeValue(Xml\Writer $writer) argument
286 $map = function ($items) use ($values, $writer) {
288 $writer->writeElement(
301 $writer->writeElement('code', $values[0]);
302 $writer->writeElement('description', $values[1]);
305 $writer->writeElement('data', $values[2]);
346 parent::xmlSerializeValue($writer);
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Property/
H A DSupportedCollationSet.php40 * @param Writer $writer
43 function xmlSerialize(Writer $writer) { argument
52 $writer->writeElement('{' . Plugin::NS_CALDAV . '}supported-collation', $collation);
H A DEmailAddressSet.php67 * @param Writer $writer
70 function xmlSerialize(Writer $writer) { argument
74 $writer->writeElement('{http://calendarserver.org/ns/}email-address', $email);
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DHref.php101 * @param Writer $writer
104 function xmlSerialize(Writer $writer) { argument
108 $href = $writer->contextUri . $href;
110 $writer->writeElement('{DAV:}href', $href);
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/Element/
H A DCDataTest.php34 $writer = new Writer();
35 $writer->namespaceMap = [
45 $output = $writer->outputMemory();
H A DElementsTest.php98 $writer = new Writer();
99 $writer->namespaceMap = [
109 $output = $writer->outputMemory();
/plugin/davcal/vendor/sabre/xml/tests/Sabre/Xml/Element/
H A DCDataTest.php34 $writer = new Writer();
35 $writer->namespaceMap = [
45 $output = $writer->outputMemory();
H A DElementsTest.php98 $writer = new Writer();
99 $writer->namespaceMap = [
109 $output = $writer->outputMemory();
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
H A DText.php301 protected function xmlSerializeValue(Xml\Writer $writer) { argument
305 $map = function($items) use ($values, $writer) {
307 $writer->writeElement(
321 $writer->writeElement('code', $values[0]);
322 $writer->writeElement('description', $values[1]);
325 $writer->writeElement('data', $values[2]);
366 parent::xmlSerializeValue($writer);
/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;

12345678910