Home
last modified time | relevance | path

Searched refs:writer (Results 76 – 100 of 231) sorted by last modified time

12345678910

/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Property/
H A DSupportedCalendarData.php41 * @param Writer $writer
44 function xmlSerialize(Writer $writer) { argument
46 $writer->startElement('{' . Plugin::NS_CALDAV . '}calendar-data');
47 $writer->writeAttributes([
51 $writer->endElement(); // calendar-data
52 $writer->startElement('{' . Plugin::NS_CALDAV . '}calendar-data');
53 $writer->writeAttributes([
56 $writer->endElement(); // calendar-data
/plugin/davcal/vendor/sabre/xml/lib/Element/
H A DBase.php54 * @param Writer $writer
57 function xmlSerialize(Xml\Writer $writer) { argument
59 $writer->write($this->value);
H A DCdata.php55 * @param Writer $writer
58 function xmlSerialize(Xml\Writer $writer) { argument
60 $writer->writeCData($this->value);
H A DElements.php70 * @param Writer $writer
73 function xmlSerialize(Xml\Writer $writer) { argument
76 $writer->writeElement($val);
H A DKeyValue.php71 * @param Writer $writer
74 function xmlSerialize(Xml\Writer $writer) { argument
76 $writer->write($this->value);
H A DUri.php58 * @param Writer $writer
61 function xmlSerialize(Xml\Writer $writer) { argument
63 $writer->text(
65 $writer->contextUri,
H A DXmlFragment.php55 * @param Writer $writer
58 function xmlSerialize(Writer $writer) { argument
83 $writer->startElement(
90 $writer->writeAttribute($reader->localName, $reader->value);
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DREADME.md86 …s usable with Monolog via the [Slim-Monolog](https://github.com/Flynsarmy/Slim-Monolog) log writer.
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js10578 writer
10588 writer.append(
10613 writer
10619 writer
11035 writer
11045 writer
11056 writer
11062 b.serializeTo(writer);
11066 writer
11074 writer.appendNewLine();
[all …]
/plugin/passpolicy/
H A D10k-common-passwords.txt2702 writer
H A Dwords.txt4064 writer
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Djstl-1.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt javax ...
H A Dservlet-api.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/ ...
H A Dcommons-io-2.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
H A Dcommons-lang3-3.5.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
H A Dehcache-3.8.1.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE META-INF/maven/ META ...
H A Dcommons-fileupload-1.3.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
H A Dgson-2.7.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D7.7.js.map1 …thout',\n 'with-title',\n 'word',\n 'work',\n 'write',\n 'writer',\n 'xml',\n …
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Element/
H A DResponse.php117 * @param Writer $writer
120 function xmlSerialize(Writer $writer) { argument
123 …$writer->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusC…
125 …$writer->writeElement('{DAV:}href', $writer->contextUri . \Sabre\HTTP\encodePath($this->getHref())…
136 $writer->startElement('{DAV:}propstat');
137 $writer->writeElement('{DAV:}prop', $properties);
138 …$writer->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusC…
139 $writer->endElement(); // {DAV:}propstat
151 $writer->writeElement('{DAV:}propstat', [
H A DSharee.php118 * @param Writer $writer
121 function xmlSerialize(Writer $writer) { argument
124 $writer->write([
131 $writer->writeElement('{DAV:}invite-noresponse');
134 $writer->writeElement('{DAV:}invite-accepted');
137 $writer->writeElement('{DAV:}invite-declined');
140 $writer->writeElement('{DAV:}invite-invalid');
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DInvite.php59 * @param Writer $writer
62 function xmlSerialize(Writer $writer) { argument
65 $writer->writeElement('{DAV:}sharee', $sharee);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Response/
H A DMultiStatus.php85 * @param Writer $writer
88 function xmlSerialize(Writer $writer) { argument
91 $writer->writeElement('{DAV:}response', $response);
94 $writer->writeElement('{DAV:}sync-token', $syncToken);
/plugin/webdav/vendor/sabre/vobject/lib/Property/
H A DFloatValue.php111 protected function xmlSerializeValue(Xml\Writer $writer) argument
120 $writer->writeElement('latitude', $value[0]);
121 $writer->writeElement('longitude', $value[1]);
123 parent::xmlSerializeValue($writer);
/plugin/webdav/vendor/sabre/xml/
H A DREADME.md6 The sabre/xml library is a specialized XML reader and writer.

12345678910