Home
last modified time | relevance | path

Searched refs:input (Results 1151 – 1175 of 1436) sorted by last modified time

1...<<41424344454647484950>>...58

/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
H A DIssue48Test.php12 $input = <<<ICS
29 $vcal = Reader::read($input);
H A DIssue50Test.php12 $input = <<<ICS
103 $vcal = Reader::read($input);
H A DOverrideFirstEventTest.php14 $input = <<<ICS
32 $vcal = Reader::read($input);
81 $input = <<<ICS
94 $vcal = Reader::read($input);
H A DMissingOverriddenTest.php14 $input = <<<ICS
34 $vcal = Reader::read($input);
H A DNoInstancesTest.php15 $input = <<<ICS
33 $vcal = Reader::read($input);
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DCli.php259 while ($input = $this->readInput()) {
261 $returnCode = $this->$command($input);
H A DPHPUnitAssertions.php38 $getObj = function($input) use ($self) {
40 if (is_resource($input)) {
41 $input = stream_get_contents($input);
43 if (is_string($input)) {
44 $input = Reader::read($input);
46 if (!$input instanceof Component) {
49 unset($input->PRODID);
50 if ($input instanceof Component\VCalendar && (string)$input->CALSCALE === 'GREGORIAN') {
51 unset($input->CALSCALE);
53 return $input;
H A DVCardConverter.php32 function convert(Component\VCard $input, $targetVersion) { argument
34 $inputVersion = $input->getDocumentType();
36 return clone $input;
55 foreach ($input->children() as $property) {
57 $this->convertProperty($input, $output, $property, $targetVersion);
75 …protected function convertProperty(Component\VCard $input, Component\VCard $output, Property $prop… argument
212 $label = $input->{$property->group . '.X-ABLABEL'};
/plugin/icalevents/vendor/sabre/vobject/lib/Splitter/
H A DSplitterInterface.php25 * @param resource $input
27 function __construct($input); argument
H A DICalendar.php43 * @param resource $input
46 function __construct($input, $options = 0) { argument
48 $data = VObject\Reader::read($input, $options);
H A DVCard.php29 protected $input; variable in Sabre\\VObject\\Splitter\\VCard
43 * @param resource $input
46 function __construct($input, $options = 0) { argument
48 $this->input = $input;
49 $this->parser = new MimeDir($input, $options);
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/
H A DDateTimeParserTest.php178 function testVCardDate($input, $output) { argument
182 DateTimeParser::parseVCardDateTime($input)
H A DEmptyValueIssueTest.php14 $input = <<<ICS
23 $vobj = Reader::read($input);
H A DEmptyParameterTest.php9 $input = <<<VCF
19 $vcard = Reader::read($input);
H A DIssue96Test.php9 $input = <<<VCF
18 $vcard = Reader::read($input, Reader::OPTION_FORGIVING);
H A DVCardConverterTest.php11 $input = <<<IN
54 $input = <<<IN
92 $input = <<<IN
131 $input = <<<IN
171 $input = <<<IN
212 $input = <<<IN
258 $input = <<<IN
421 $input,
425 $input
476 $input,
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DLanguageTagTest.php11 $input = "BEGIN:VCARD\r\nVERSION:4.0\r\nLANG:nl\r\nEND:VCARD\r\n";
12 $mimeDir = new VObject\Parser\MimeDir($input);
14 $result = $mimeDir->parse($input);
21 $input,
29 $input = "BEGIN:VCARD\r\nVERSION:4.0\r\nLANG:nl\r\nEND:VCARD\r\n";
30 $mimeDir = new VObject\Parser\MimeDir($input);
32 $result = $mimeDir->parse($input);
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Component/
H A DVCalendarTest.php45 $output = $input;
263 $input = <<<ICS
635 $input = <<<ICS
643 $input,
653 $input = <<<ICS
664 $input,
674 $input = <<<ICS
692 $input,
702 $input = <<<ICS
721 $input,
[all …]
H A DVTodoTest.php71 $input = <<<HI
82 $obj = Reader::read($input);
96 $input = <<<HI
105 $obj = Reader::read($input);
122 $input = <<<HI
135 $obj = Reader::read($input);
151 $input = <<<HI
164 $obj = Reader::read($input);
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/ITip/
H A DBrokerTester.php46 function process($input, $existingObject = null, $expected = false) { argument
50 $vcal = Reader::read($input);
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Parser/
H A DJsonTest.php12 $input = [
159 $parser = new Json(json_encode($input));
194 $input,
202 $input = [
311 $parser = new Json(json_encode($input));
351 $input,
359 $input = [
369 fwrite($stream, json_encode($input));
383 $input = [
392 $json->parse(json_encode($input), 0);
/plugin/icalevents/vendor/sabre/vobject/lib/Parser/
H A DJson.php26 protected $input; variable in Sabre\\VObject\\Parser\\Json
50 if (!is_null($input)) {
51 $this->setInput($input);
61 switch ($this->input[0]) {
75 if (isset($this->input[2])) foreach ($this->input[2] as $comp) {
80 $this->input = null;
185 function setInput($input) { argument
188 $input = stream_get_contents($input);
190 if (is_string($input)) {
191 $input = json_decode($input);
[all …]
H A DMimeDir.php32 protected $input; variable in Sabre\\VObject\\Parser\\MimeDir
81 if (!is_null($input)) {
82 $this->setInput($input);
119 * @param resource|string $input
123 function setInput($input) { argument
129 if (is_string($input)) {
134 $this->input = $stream;
136 $this->input = $input;
543 * @param string $input
624 * @param string $input
[all …]
H A DParser.php43 * @param mixed $input
48 function __construct($input = null, $options = 0) { argument
50 if (!is_null($input)) {
51 $this->setInput($input);
64 * @param mixed $input
69 abstract function parse($input = null, $options = 0); argument
74 * @param mixed $input
78 abstract function setInput($input); argument
H A DXML.php31 protected $input; variable in Sabre\\VObject\\Parser\\XML
52 * @param mixed $input
70 * @param resource|string $input
79 if (!is_null($input)) {
80 $this->setInput($input);
87 if (is_null($this->input)) {
393 function setInput($input) { argument
396 $input = stream_get_contents($input);
399 if (is_string($input)) {
406 $reader->xml($input);
[all …]

1...<<41424344454647484950>>...58