Home
last modified time | relevance | path

Searched refs:parse (Results 201 – 225 of 952) sorted by path

12345678910>>...39

/plugin/davcal/vendor/sabre/vobject/
H A DREADME.md4 The VObject library allows you to easily parse and manipulate [iCalendar](https://tools.ietf.org/ht…
/plugin/davcal/vendor/sabre/vobject/bin/
H A Drrulebench.php18 $bench->parse->start();
23 $bench->parse->stop();
/plugin/davcal/vendor/sabre/vobject/lib/Component/
H A DVFreeBusy.php47 $busyStart = VObject\DateTimeParser::parse($busyStart);
48 $busyEnd = VObject\DateTimeParser::parse($busyEnd);
/plugin/davcal/vendor/sabre/vobject/lib/
H A DDateTimeParser.php181 static public function parse($date, $referenceTz = null) { function in Sabre\\VObject\\DateTimeParser
H A DReader.php44 $result = $parser->parse($data, $options);
67 $result = $parser->parse($data, $options);
/plugin/davcal/vendor/sabre/vobject/lib/ITip/
H A DBroker.php748 $dt = DateTimeParser::parse($instance['id'], $eventInfo['timezone']);
760 $dt = DateTimeParser::parse($instance['id'], $eventInfo['timezone']);
/plugin/davcal/vendor/sabre/vobject/lib/Parser/
H A DJson.php48 public function parse($input = null, $options = null) { function in Sabre\\VObject\\Parser\\Json
H A DMimeDir.php52 public function parse($input = null, $options = null) { function in Sabre\\VObject\\Parser\\MimeDir
H A DParser.php67 abstract public function parse($input = null, $options = null); function in Sabre\\VObject\\Parser\\Parser
/plugin/davcal/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php172 $dts[] = DateTimeParser::parse($part, $timeZone);
/plugin/davcal/vendor/sabre/vobject/lib/Recur/
H A DRDateIterator.php95 DateTimeParser::parse(
H A DRRuleIterator.php641 $this->until = DateTimeParser::parse($value, $this->startDate->getTimezone());
/plugin/davcal/vendor/sabre/vobject/lib/Splitter/
H A DVCard.php65 $object = $this->parser->parse();
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DDateTimeParserTest.php27 $this->assertEquals($expected, DateTimeParser::parse('P1W'));
108 $dateTime = DateTimeParser::parse('20100316');
124 $dateTime = DateTimeParser::parse('45001231');
140 $dateTime = DateTimeParser::parse('45001231T235959');
/plugin/davcal/vendor/sabre/vobject/tests/VObject/ITip/
H A DBrokerAttendeeReplyTest.php70 $result = $this->parse($oldMessage, $newMessage, $expected);
215 $result = $this->parse($oldMessage, $newMessage, $expected);
353 $result = $this->parse($oldMessage, $newMessage, $expected);
388 $result = $this->parse($oldMessage, $newMessage, $expected);
449 $result = $this->parse($oldMessage, $newMessage, $expected);
483 $result = $this->parse($oldMessage, $newMessage, $expected);
556 $result = $this->parse($oldMessage, $newMessage, $expected);
627 $result = $this->parse($oldMessage, $newMessage, $expected);
698 $result = $this->parse($oldMessage, $newMessage, $expected);
762 $result = $this->parse($oldMessage, $newMessage, $expected);
[all …]
H A DBrokerDeleteEventTest.php84 $result = $this->parse($oldMessage, $newMessage, $expected, 'mailto:strunk@example.org');
138 $result = $this->parse($oldMessage, $newMessage, $expected, 'mailto:one@example.org');
167 $result = $this->parse($oldMessage, $newMessage, $expected, 'mailto:one@example.org');
174 $this->parse(null, null, array(), 'mailto:one@example.org');
189 $this->parse($oldMessage, null, array(), 'mailto:one@example.org');
H A DBrokerNewEventTest.php18 $result = $this->parse($message);
32 $result = $this->parse($message);
79 $result = $this->parse($message, $expected);
105 $this->parse($message, array());
130 $this->parse($message, array());
252 $result = $this->parse($message, $expected);
374 $result = $this->parse($message, $expected);
427 $result = $this->parse($message, array());
460 $result = $this->parse($message, array());
475 $this->parse($message, array());
[all …]
H A DBrokerTester.php16 …function parse($oldMessage, $newMessage, $expected = array(), $currentUser = 'mailto:one@example.o… function in Sabre\\VObject\\ITip\\BrokerTester
H A DBrokerUpdateEventTest.php132 $this->parse($oldMessage, $newMessage, $expected, 'mailto:strunk@example.org');
194 $this->parse($oldMessage, $newMessage, $expected, 'mailto:strunk@example.org');
252 $this->parse($oldMessage, $newMessage, $expected, 'mailto:strunk@example.org');
284 $this->parse($oldMessage, $newMessage, $expected, 'mailto:strunk@example.org');
352 $this->parse($oldMessage, $newMessage, $expected, 'mailto:strunk@example.org');
486 $this->parse($oldMessage, $newMessage, $expected, 'mailto:strunk@example.org');
554 $this->parse($oldMessage, $newMessage, $expected, 'mailto:strunk@example.org');
622 $this->parse($oldMessage, $newMessage, $expected, 'mailto:strunk@example.org');
716 $result = $this->parse($oldMessage, $newMessage, $expected, 'mailto:strunk@example.org');
807 $this->parse($oldMessage, $newMessage, $expected, 'mailto:strunk@example.org');
H A DEvolutionTest.php1737 $this->parse(null, $ics, $expected, 'mailto:martin@fruux.com');
2647 $this->parse($old, $new, array(), 'mailto:a1@example.org');
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Parser/
H A DJsonTest.php159 $vobj = $parser->parse();
312 $vobj = $parser->parse();
392 $json->parse(json_encode($input), 0);
H A DMimeDirTest.php17 $mimeDir->parse(fopen(__FILE__,'a'));
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/
H A DFloatTest.php14 $result = $mimeDir->parse($input);
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DLanguageTagTest.php14 $result = $mimeDir->parse($input);
32 $result = $mimeDir->parse($input);
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Recur/
H A DRRuleIteratorTest.php12 $this->parse(
35 $this->parse(
53 $this->parse(
76 $this->parse(
99 $this->parse(
122 $this->parse(
138 $this->parse(
156 $this->parse(
177 $this->parse(
192 $this->parse(
[all …]

12345678910>>...39