Home
last modified time | relevance | path

Searched refs:input (Results 376 – 400 of 1436) sorted by last modified time

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

/plugin/davcal/vendor/sabre/http/
H A DREADME.md17 * `php://input` or `$HTTP_RAW_POST_DATA`.
447 * php://input, but unfortunately we need to special case it.
/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DURLUtilTest.php120 foreach ($strings as $input => $expected) {
122 $output = URLUtil::splitPath($input);
123 …$this->assertEquals($expected, $output, 'The expected output for \'' . $input . '\' was incorrect'…
/plugin/davcal/vendor/sabre/uri/tests/
H A DSplitTest.php31 foreach($strings as $input => $expected) {
33 $output = split($input);
34 …$this->assertEquals($expected, $output, 'The expected output for \'' . $input . '\' was incorrect'…
/plugin/davcal/vendor/sabre/vobject/
H A DChangeLog.md545 * Added: Basic validation and repair methods for broken input data.
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/
H A DBooleanTest.php11 …$input = "BEGIN:VCARD\r\nX-AWESOME;VALUE=BOOLEAN:TRUE\r\nX-SUCKS;VALUE=BOOLEAN:FALSE\r\nEND:VCARD\…
13 $vcard = VObject\Reader::read($input);
18 $this->assertEquals($input, $vcard->serialize());
H A DFloatTest.php11 $input = "BEGIN:VCARD\r\nVERSION:4.0\r\nX-FLOAT;VALUE=FLOAT:0.234;1.245\r\nEND:VCARD\r\n";
12 $mimeDir = new VObject\Parser\MimeDir($input);
14 $result = $mimeDir->parse($input);
24 $input,
/plugin/davcal/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/davcal/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
H A DCalAddressTest.php10 function testGetNormalizedValue($expected, $input) { argument
13 $property = $vobj->add('ATTENDEE', $input);
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php745 * @param string $input
749 protected function negotiateVCard($input, &$mimeType = null) { argument
752 $input,
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DDateAndOrTimeTest.php14 function testGetJsonValue($input, $output) { argument
17 $prop = $vcard->createProperty('BDAY', $input);
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/davcal/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
H A DIncorrectExpandTest.php16 $input = <<<ICS
34 $vcal = Reader::read($input);
H A DIssue48Test.php13 $input = <<<ICS
30 $vcal = Reader::read($input);
H A DIssue50Test.php13 $input = <<<ICS
104 $vcal = Reader::read($input);
H A DMissingOverriddenTest.php13 $input = <<<ICS
33 $vcal = Reader::read($input);
H A DNoInstancesTest.php15 $input = <<<ICS
33 $vcal = Reader::read($input);
H A DOverrideFirstEventTest.php12 $input = <<<ICS
29 $vcal = Reader::read($input);
80 $input = <<<ICS
92 $vcal = Reader::read($input);
/plugin/davcal/vendor/sabre/vobject/lib/Parser/
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/davcal/vendor/sabre/vobject/tests/VObject/
H A DTestCase.php23 $getObj = function($input) use ($self) {
25 if (is_resource($input)) {
26 $input = stream_get_contents($input);
28 if (is_string($input)) {
29 $input = Reader::read($input);
31 if (!$input instanceof Component) {
34 unset($input->PRODID);
35 return $input;
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/dav/bin/
H A Dbuild.php126 $input = json_decode(file_get_contents(__DIR__ . '/../composer.json'), true);
128 "require" => $input['require'],
/plugin/davcal/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);

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