Home
last modified time | relevance | path

Searched refs:input (Results 451 – 475 of 1436) sorted by path

1...<<11121314151617181920>>...58

/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DVCardConverterTest.php9 $input = <<<IN
52 $input = <<<IN
90 $input = <<<IN
129 $input = <<<IN
169 $input = <<<IN
210 $input = <<<IN
256 $input = <<<IN
419 $input,
423 $input
474 $input,
[all …]
/plugin/davcal/vendor/sabre/xml/lib/
H A DService.php80 * @param string|resource $input
86 function parse($input, $contextUri = null, &$rootElementName = null) { argument
88 if (is_resource($input)) {
91 $input = stream_get_contents($input);
95 $r->xml($input);
115 * @param string|resource $input
119 function expect($rootElementName, $input, $contextUri = null) { argument
121 if (is_resource($input)) {
124 $input = stream_get_contents($input);
128 $r->xml($input);
/plugin/davcal/vendor/sabre/xml/tests/Sabre/Xml/Element/
H A DCDataTest.php15 $input = <<<BLA
26 $reader->xml($input);
H A DElementsTest.php12 $input = <<<BLA
36 $reader->xml($input);
H A DKeyValueTest.php12 $input = <<<BLA
35 $reader->xml($input);
91 $input = <<<BLA
109 $reader->xml($input);
184 $input = <<<BLA
194 $reader->xml($input);
H A DUriTest.php12 $input = <<<BLA
24 $reader->xml($input);
H A DXmlFragmentTest.php13 function testDeserialize($input, $expected) { argument
15 $input = <<<BLA
18 <fragment>$input</fragment>
26 $reader->xml($input);
113 function testSerialize($expectedFallback, $input, $expected = null) { argument
128 '{http://sabredav.org/ns}fragment' => new XmlFragment($input),
/plugin/davcal/vendor/sabre/xml/tests/Sabre/Xml/
H A DReaderTest.php9 $input = <<<BLA
14 $reader->xml($input);
24 $input = <<<BLA
39 $input = <<<BLA
51 $input = <<<BLA
99 $input = <<<BLA
131 $input = <<<BLA
163 $input = <<<BLA
200 $input = <<<BLA
240 $input = <<<BLA
[all …]
/plugin/davcard/vendor/sabre/vobject/
H A DChangeLog.md585 * Added: Basic validation and repair methods for broken input data.
/plugin/davcard/vendor/sabre/vobject/lib/
H A DCli.php259 while($input = $this->readInput()) {
261 $returnCode = $this->$command($input);
H A DVCardConverter.php32 public function convert(Component\VCard $input, $targetVersion) { argument
34 $inputVersion = $input->getDocumentType();
36 return clone $input;
52 foreach($input->children as $property) {
54 $this->convertProperty($input, $output, $property, $targetVersion);
71 …protected function convertProperty(Component\VCard $input, Component\VCard $output, Property $prop… argument
208 $label = $input->{$property->group . '.X-ABLABEL'};
/plugin/davcard/vendor/sabre/vobject/lib/Parser/
H A DJson.php27 protected $input; variable in Sabre\\VObject\\Parser\\Json
50 if (!is_null($input)) {
51 $this->setInput($input);
53 if (is_null($this->input)) {
61 switch($this->input[0]) {
75 if (isset($this->input[2])) foreach($this->input[2] as $comp) {
80 $this->input = null;
185 $input = stream_get_contents($input);
187 if (is_string($input)) {
188 $input = json_decode($input);
[all …]
H A DMimeDir.php33 protected $input; variable in Sabre\\VObject\\Parser\\MimeDir
55 if (!is_null($input)) {
57 $this->setInput($input);
72 * @param resource|string $input
81 if (is_string($input)) {
84 fwrite($stream, $input);
86 $this->input = $stream;
88 $this->input = $input;
477 * @param string $input
557 * @param string $input
[all …]
H A DParser.php43 * @param mixed $input
47 public function __construct($input = null, $options = 0) { argument
49 if (!is_null($input)) {
50 $this->setInput($input);
63 * @param mixed $input
67 abstract public function parse($input = null, $options = null); argument
72 * @param mixed $input
75 abstract public function setInput($input); argument
/plugin/davcard/vendor/sabre/vobject/lib/Property/ICalendar/
H A DCalAddress.php53 $input = $this->getValue();
54 if (!strpos($input, ':')) {
55 return $input;
57 list($schema, $everythingElse) = explode(':', $input, 2);
/plugin/davcard/vendor/sabre/vobject/lib/Recur/
H A DEventIterator.php87 * @param Component|array $input
92 public function __construct($input, $uid = null, DateTimeZone $timeZone = null) { argument
99 if (is_array($input)) {
100 $events = $input;
101 } elseif ($input instanceof VEvent) {
103 $events = array($input);
110 if (!isset($input->VEVENT)) {
113 $events = $input->getByUID($uid);
/plugin/davcard/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php44 * @param resource $input
47 public function __construct($input, $options = 0) { argument
49 $data = VObject\Reader::read($input, $options);
H A DSplitterInterface.php25 * @param resource $input
27 public function __construct($input); argument
H A DVCard.php30 protected $input; variable in Sabre\\VObject\\Splitter\\VCard
44 * @param resource $input
47 public function __construct($input, $options = 0) { argument
49 $this->input = $input;
50 $this->parser = new MimeDir($input, $options);
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Component/
H A DVAlarmTest.php154 $input = <<<BLA
172 $vobj = Reader::read($input);
H A DVCalendarTest.php43 $output = $input;
227 $input = <<<ICS
550 $input = <<<ICS
558 $input,
568 $input = <<<ICS
579 $input,
589 $input = <<<ICS
607 $input,
617 $input = <<<ICS
636 $input,
[all …]
H A DVCardTest.php12 function testValidate($input, $expectedWarnings, $expectedRepairedOutput) { argument
14 $vcard = VObject\Reader::read($input);
271 function assertValidateResult($input, $expectedLevel, $expectedMessage = null) { argument
274 foreach($input as $warning) {
279 …$this->assertEquals(0, count($input), 'No validation messages were expected. We got: ' . implode('…
281 …$this->assertEquals(1, count($input), 'We expected exactly 1 validation message, We got: ' . implo…
283 $this->assertEquals($expectedMessage, $input[0]['message']);
284 $this->assertEquals($expectedLevel, $input[0]['level']);
H A DVFreeBusyTest.php12 $input = <<<BLA
25 $obj = VObject\Reader::read($input);
43 $input = <<<HI
54 $obj = Reader::read($input);
H A DVJournalTest.php21 $input = <<<HI
32 $obj = Reader::read($input);
46 $input = <<<HI
59 $obj = Reader::read($input);
H A DVTimeZoneTest.php12 $input = <<<HI
22 $obj = Reader::read($input);
36 $input = <<<HI
46 $obj = Reader::read($input);

1...<<11121314151617181920>>...58