Home
last modified time | relevance | path

Searched refs:parse (Results 1 – 25 of 1159) sorted by relevance

12345678910>>...47

/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Recur/
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 …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Recur/
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 …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Recur/
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 …]
/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 …]
/plugin/sequencediagram/bower_components/js-sequence-diagrams/test/
Dgrammar-tests.js94 var d = Diagram.parse('A->B: Message');
99 var d = Diagram.parse('A-->B: Message');
104 var d = Diagram.parse('A->>B: Message');
109 var d = Diagram.parse('A-->>B: Message');
114 equal(Diagram.parse('Title: title').title, 'title', 'Title');
115 equal(Diagram.parse('Title: line1\\nline2').title, 'line1\nline2', 'Multiline Title');
119 equal(Diagram.parse('Title: 中国').title, '中国', 'Unicode Title');
120 assertEmptyDocument(Diagram.parse('# 中国'));
121 assertSingleActor(Diagram.parse('Participant 中国'), '中国');
122 assertSingleActor(Diagram.parse('Participant 中国 as alias'), 'alias', '中国');
[all …]
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
DParserTest.php42 $this->assertEquals($expected, var_export($this->parser->parse($yaml), true), $comment);
67 $content = $this->parser->parse($yaml);
85 $this->assertEquals('foo', $this->parser->parse($yaml));
400 $this->assertSame($expected, $this->parser->parse($yaml));
421 $this->assertSame($expected, $this->parser->parse($yaml));
430 …$this->assertEquals(['foo' => new B(), 'bar' => 1], $this->parser->parse($input, Yaml::PARSE_OBJEC…
439 …$this->assertEquals(['foo' => null, 'bar' => 1], $this->parser->parse($input), '->parse() does not…
449 $this->assertEquals($expected, $this->parser->parse($yaml, $flags));
525 $this->parser->parse($yaml, Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE);
536 $this->assertSame($expected, $this->parser->parse($yaml));
[all …]
DInlineTest.php32 …$this->assertSame($value, Inline::parse($yaml, $flags), sprintf('::parse() converts an inline YAML…
40 $actual = Inline::parse($yaml, $flags);
50 $actual = Inline::parse($yaml, Yaml::PARSE_CONSTANT);
72 Inline::parse('!php/const WRONG_CONSTANT', Yaml::PARSE_CONSTANT);
81 Inline::parse('!php/const PHP_INT_MAX', Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE);
91 … $this->assertSame($value, Inline::parse(Inline::dump($value), $parseFlags), 'check consistency');
118 $this->assertSame($value, Inline::parse(Inline::dump($value)));
127 Inline::parse('"Foo\Var"');
135 Inline::parse('"Foo\\"');
144 Inline::parse($value);
[all …]
/plugin/asciidocjs/node_modules/minimist/test/
Ddash.js3 var parse = require('../'); variable
8 t.deepEqual(parse(['-n', '-']), { n: '-', _: [] });
9 t.deepEqual(parse(['--nnn', '-']), { nnn: '-', _: [] });
10 t.deepEqual(parse(['-']), { _: ['-'] });
11 t.deepEqual(parse(['-f-']), { f: '-', _: [] });
13 parse(['-b', '-'], { boolean: 'b' }),
17 parse(['-s', '-'], { string: 's' }),
24 t.deepEqual(parse(['-a', '--', 'b']), { a: true, _: ['b'] });
25 t.deepEqual(parse(['--a', '--', 'b']), { a: true, _: ['b'] });
31 parse(['--name', 'John', 'before', '--', 'after'], { '--': true }),
[all …]
Dparse.js3 var parse = require('../'); variable
8 parse(['--no-moo']),
13 parse(['-v', 'a', '-v', 'b', '-v', 'c']),
22 parse([
48 var argv = parse(['-t', 'moo'], { boolean: 't' });
55 var argv = parse(['--verbose', 'false', 'moo', '-t', 'true'], {
72 var args = parse(['-s', 'X\nX']);
79 args = parse(['--s=X\nX']);
85 var s = parse(['-s', '0001234'], { string: 's' }).s;
89 var x = parse(['-x', '56'], { string: 'x' }).x;
[all …]
Dshort.js3 var parse = require('../'); variable
8 t.deepEqual(parse(['-n123']), { n: 123, _: [] });
10 parse(['-123', '456']),
17 parse(['-b']),
22 parse(['foo', 'bar', 'baz']),
27 parse(['-cats']),
32 parse(['-cats', 'meow']),
37 parse(['-h', 'localhost']),
42 parse(['-h', 'localhost', '-p', '555']),
51 parse(['-h', 'localhost', '-fp', '555', 'script.js']),
[all …]
Dbool.js3 var parse = require('../'); variable
7 var argv = parse(['moo'], {
25 var argv = parse(['-x', '-z', 'one', 'two', 'three'], {
44 var aliasedArgv = parse(aliased, {
48 var propertyArgv = parse(regular, {
70 var aliasedArgv = parse(aliased, opts);
71 var propertyArgv = parse(regular, opts);
90 var aliasedArgv = parse(aliased, opts);
91 var propertyArgv = parse(regular, opts);
92 var altPropertyArgv = parse(alt, opts);
[all …]
Dunknown.js3 var parse = require('../'); variable
19 parse(aliased, opts);
20 parse(regular, opts);
32 var argv = parse(['--honk', '--tacos=good', 'cow', '-p', '55'], {
57 parse(aliased, opts);
58 parse(regular, opts);
77 parse(aliased, opts);
78 parse(regular, opts);
96 var argv = parse(aliased, opts);
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/ITip/
DBrokerAttendeeReplyTest.php71 $this->parse($oldMessage, $newMessage, $expected);
221 $this->parse($oldMessage, $newMessage, $expected);
364 $this->parse($oldMessage, $newMessage, $expected);
399 $this->parse($oldMessage, $newMessage, $expected);
461 $this->parse($oldMessage, $newMessage, $expected);
495 $this->parse($oldMessage, $newMessage, $expected);
569 $this->parse($oldMessage, $newMessage, $expected);
641 $this->parse($oldMessage, $newMessage, $expected);
713 $this->parse($oldMessage, $newMessage, $expected);
778 $this->parse($oldMessage, $newMessage, $expected);
[all …]
DBrokerNewEventTest.php19 $result = $this->parse(null, $message, []);
33 $result = $this->parse(null, $message, []);
82 $this->parse(null, $message, $expected, 'mailto:strunk@example.org');
107 $this->parse(null, $message, [], 'mailto:strunk@example.org');
131 $this->parse(null, $message, [], 'mailto:strunk@example.org');
259 $this->parse(null, $message, $expected, 'mailto:strunk@example.org');
387 $this->parse(null, $message, $expected, 'mailto:strunk@example.org');
408 $this->parse(null, $message, [], 'mailto:strunk@example.org');
442 $this->parse(null, $message, [], 'mailto:strunk@example.org');
476 $this->parse(null, $message, [], 'mailto:strunk@example.org');
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/ITip/
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 …]
DBrokerNewEventTest.php19 $result = $this->parse($message);
33 $result = $this->parse($message);
82 $result = $this->parse($message, $expected);
108 $this->parse($message, array());
133 $this->parse($message, array());
261 $result = $this->parse($message, $expected);
389 $result = $this->parse($message, $expected);
411 $result = $this->parse($message, $expected);
445 $result = $this->parse($message, array());
480 $result = $this->parse($message, array());
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/ITip/
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 …]
DBrokerNewEventTest.php19 $result = $this->parse($message);
33 $result = $this->parse($message);
82 $result = $this->parse($message, $expected);
108 $this->parse($message, array());
133 $this->parse($message, array());
261 $result = $this->parse($message, $expected);
389 $result = $this->parse($message, $expected);
411 $result = $this->parse($message, $expected);
445 $result = $this->parse($message, array());
480 $result = $this->parse($message, array());
[all …]
/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 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);
395 $result = $this->parse($message, $expected);
427 $result = $this->parse($message, array());
460 $result = $this->parse($message, array());
[all …]
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Integration/Llk/
DDocumentation.php69 ->when($result = $compiler->parse('"foo"', null, false))
74 ->when($result = $compiler->parse('\'foo"', null, false))
79 ->when($result = $compiler->parse('"foo\'', null, false))
84 ->when($result = $compiler->parse('\'foo\'', null, false))
106 ->when($result = $compiler->parse('"foo"', null, false))
111 ->when($result = $compiler->parse('\'foo\'', null, false))
117 $compiler->parse('\'foo"', null, false);
122 $compiler->parse('"foo\'', null, false);
142 ->when($result = $compiler->parse('aa', null, false))
147 ->when($result = $compiler->parse('abba', null, false))
[all …]
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/
DReaderTest.php64 $output = $reader->parse();
109 $output = $reader->parse();
141 $output = $reader->parse();
176 $output = $reader->parse();
213 $reader->parse();
237 $output = $reader->parse();
277 $output = $reader->parse();
319 $output = $reader->parse();
352 $output = $reader->parse();
379 $reader->parse();
[all …]
/plugin/html2pdf/html2pdf/html2ps/unittest/
Dtest.css.content.string.php5 $content =& ValueContent::parse('"Sample\
15 $content =& ValueContent::parse('"Sample\
26 $content =& ValueContent::parse('"Sample\00000A Content"');
35 $content =& ValueContent::parse('"Sample\00000A Content"');
44 $content =& ValueContent::parse('"Sample\00000ALine"');
53 $content =& ValueContent::parse('"Sample\00000AContent"');
62 $content =& ValueContent::parse('"Sample\A Content"');
71 $content =& ValueContent::parse('"Sample\A Content"');
80 $content =& ValueContent::parse('"Sample\ALine"');
89 $content =& ValueContent::parse('"Sample\4Content"');
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Xml/Request/
H A DCalendarQueryReportTest.php27 $result = $this->parse($xml);
61 $this->parse($xml);
108 $result = $this->parse($xml);
238 $this->parse($xml);
262 $this->parse($xml);
286 $this->parse($xml);
310 $this->parse($xml);
336 $this->parse($xml);
364 $this->parse($xml);
/plugin/asciidocjs/node_modules/jake/test/unit/
Dparseargs.js63 res = p.parse(z('--tasks=foo --jakefile=asdf'));
69 res = p.parse(z('--tasks foo --jakefile=asdf'));
75 res = p.parse(z('--tasks --jakefile=asdf'));
81 res = p.parse(z('-T'));
86 res = p.parse(z('-T -f'));
92 res = p.parse(z('-T zoobie -f foo/bar/baz'));
98 res = p.parse(z('-f zoobie -t howdy'));
105 res = p.parse(z('-f zoobie howdy -t'));
112 res = p.parse(z('-f zoobie -t foo=bar'));
120 res = p.parse(z('-f zoobie -t howdy foo=bar'));
[all …]

12345678910>>...47