Home
last modified time | relevance | path

Searched refs:input (Results 1076 – 1100 of 1436) sorted by last modified time

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

/plugin/davcard/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
H A DIncorrectExpandTest.php17 $input = <<<ICS
35 $vcal = Reader::read($input);
H A DMissingOverriddenTest.php14 $input = <<<ICS
34 $vcal = Reader::read($input);
H A DIssue48Test.php13 $input = <<<ICS
30 $vcal = Reader::read($input);
H A DExpandFloatingTimesTest.php14 $input = <<<ICS
26 $vcal = Reader::read($input);
69 $input = <<<ICS
81 $vcal = Reader::read($input);
H A DIssue50Test.php13 $input = <<<ICS
104 $vcal = Reader::read($input);
/plugin/davcard/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 …]
H A DIssue96Test.php9 $input = <<<VCF
18 $vcard = Reader::read($input, Reader::OPTION_FORGIVING);
H A DDateTimeParserTest.php158 function testVCardDate($input, $output) { argument
162 DateTimeParser::parseVCardDateTime($input)
H A DFreeBusyGeneratorTest.php336 function testGenerator($input, $expected, $timeZone = null) { argument
341 $input,
H A DIssue26Test.php16 $input = <<<ICS
28 $vcal = Reader::read($input);
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;
/plugin/davcard/vendor/sabre/vobject/lib/Splitter/
H A DSplitterInterface.php25 * @param resource $input
27 public function __construct($input); argument
/plugin/davcard/vendor/sabre/vobject/lib/
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'};
H A DCli.php259 while($input = $this->readInput()) {
261 $returnCode = $this->$command($input);
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Component/
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']);
/plugin/davcard/vendor/sabre/vobject/tests/VObject/ITip/
H A DBrokerTester.php44 function process($input, $existingObject = null, $expected = false) { argument
48 $vcal = Reader::read($input);
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Parser/
H A DJsonTest.php12 $input = array(
158 $parser = new Json(json_encode($input));
194 $input,
202 $input = array(
311 $parser = new Json(json_encode($input));
351 $input,
359 $input = array(
369 fwrite($stream, json_encode($input));
383 $input = array(
392 $json->parse(json_encode($input), 0);
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Property/
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,
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());
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
H A DCalAddressTest.php10 function testGetNormalizedValue($expected, $input) { argument
13 $property = $vobj->add('ATTENDEE', $input);
/plugin/davcard/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/davcard/vendor/sabre/vobject/
H A DChangeLog.md585 * Added: Basic validation and repair methods for broken input data.
/plugin/davcard/vendor/sabre/vobject/lib/Parser/
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

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