| /plugin/findologicxmlexport/vendor/symfony/yaml/ |
| D | Inline.php | 15 use Symfony\Component\Yaml\Exception\ParseException; alias 64 * @throws ParseException 103 …throw new ParseException(sprintf('Unexpected characters near "%s".', substr($value, $i)), self::$p… 264 * @throws ParseException When malformed inline YAML string is parsed 275 …throw new ParseException(sprintf('Unexpected end of line, expected one of "%s".', implode('', $del… 278 …throw new ParseException(sprintf('Unexpected characters (%s).', substr($scalar, $i)), self::$parse… 296 …throw new ParseException(sprintf('Malformed inline YAML string: %s.', $scalar), self::$parsedLineN… 301 …throw new ParseException(sprintf('The reserved indicator "%s" cannot start a plain scalar; you nee… 315 * @throws ParseException When malformed inline YAML string is parsed 320 …throw new ParseException(sprintf('Malformed inline YAML string: %s.', substr($scalar, $i)), self::… [all …]
|
| D | Parser.php | 14 use Symfony\Component\Yaml\Exception\ParseException; alias 48 * @throws ParseException If the file could not be read or the YAML is not valid 53 throw new ParseException(sprintf('File "%s" does not exist.', $filename)); 57 throw new ParseException(sprintf('File "%s" cannot be read.', $filename)); 77 * @throws ParseException If the YAML is not valid 82 …throw new ParseException('The YAML value does not appear to be valid UTF-8.', -1, null, $this->fil… 159 …throw new ParseException('A YAML file cannot contain tabs as indentation.', $this->getRealCurrentL… 167 …throw new ParseException('You cannot define a sequence item when in a mapping', $this->getRealCurr… 178 …throw new ParseException('Complex mappings are not supported.', $this->getRealCurrentLineNb() + 1,… 213 …throw new ParseException('You cannot define a mapping item when in a sequence', $this->currentLine… [all …]
|
| D | Yaml.php | 14 use Symfony\Component\Yaml\Exception\ParseException; alias 50 * @throws ParseException If the file could not be read or the YAML is not valid 73 * @throws ParseException If the YAML is not valid
|
| D | CHANGELOG.md | 14 * complex mappings will throw a `ParseException` 19 * duplicate mapping keys throw a `ParseException` 20 * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS` 22 * `%` at the beginning of an unquoted string throw a `ParseException` 24 `ParseException` 61 deprecated and will throw a `ParseException` in Symfony 4.0. 64 Mapping keys that are no strings will lead to a `ParseException` in Symfony 94 * Omitting the key of a mapping is deprecated and will throw a `ParseException` in Symfony 4.0. 106 when the mapping key is not quoted and will lead to a `ParseException` in 116 deprecated and will lead to a `ParseException` in Symfony 4.0.
|
| D | Unescaper.php | 14 use Symfony\Component\Yaml\Exception\ParseException; alias 117 throw new ParseException(sprintf('Found unknown escape character "%s".', $value));
|
| /plugin/combo/vendor/symfony/yaml/ |
| H A D | Inline.php | 15 use Symfony\Component\Yaml\Exception\ParseException; alias 59 * @throws ParseException 94 …throw new ParseException(sprintf('Unexpected characters near "%s".', substr($value, $i)), self::$p… 266 * @throws ParseException When malformed inline YAML string is parsed 278 …throw new ParseException(sprintf('Unexpected end of line, expected one of "%s".', implode('', $del… 281 …throw new ParseException(sprintf('Unexpected characters (%s).', substr($scalar, $i)), self::$parse… 301 …throw new ParseException(sprintf('Malformed inline YAML string: "%s".', $scalar), self::$parsedLin… 306 …throw new ParseException(sprintf('The reserved indicator "%s" cannot start a plain scalar; you nee… 320 * @throws ParseException When malformed inline YAML string is parsed 325 …throw new ParseException(sprintf('Malformed inline YAML string: "%s".', substr($scalar, $i)), self… [all …]
|
| H A D | Parser.php | 14 use Symfony\Component\Yaml\Exception\ParseException; alias 50 * @throws ParseException If the file could not be read or the YAML is not valid 55 throw new ParseException(sprintf('File "%s" does not exist.', $filename)); 59 throw new ParseException(sprintf('File "%s" cannot be read.', $filename)); 79 * @throws ParseException If the YAML is not valid 84 …throw new ParseException('The YAML value does not appear to be valid UTF-8.', -1, null, $this->fil… 155 …throw new ParseException('A YAML file cannot contain tabs as indentation.', $this->getRealCurrentL… 163 …throw new ParseException('You cannot define a sequence item when in a mapping.', $this->getRealCur… 174 …throw new ParseException('Complex mappings are not supported.', $this->getRealCurrentLineNb() + 1,… 222 …throw new ParseException('You cannot define a mapping item when in a sequence.', $this->currentLin… [all …]
|
| H A D | Yaml.php | 14 use Symfony\Component\Yaml\Exception\ParseException; alias 51 * @throws ParseException If the file could not be read or the YAML is not valid 74 * @throws ParseException If the YAML is not valid
|
| H A D | CHANGELOG.md | 55 …* Using a mapping inside a multi-line string is deprecated and will throw a `ParseException` in 5.… 67 * complex mappings will throw a `ParseException` 72 * duplicate mapping keys throw a `ParseException` 73 * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS` 75 * `%` at the beginning of an unquoted string throw a `ParseException` 77 `ParseException` 114 deprecated and will throw a `ParseException` in Symfony 4.0. 117 Mapping keys that are no strings will lead to a `ParseException` in Symfony 147 * Omitting the key of a mapping is deprecated and will throw a `ParseException` in Symfony 4.0. 159 when the mapping key is not quoted and will lead to a `ParseException` in [all …]
|
| H A D | Unescaper.php | 14 use Symfony\Component\Yaml\Exception\ParseException; alias 111 throw new ParseException(sprintf('Found unknown escape character "%s".', $value));
|
| /plugin/findologicxmlexport/vendor/symfony/yaml/Tests/ |
| D | ParseExceptionTest.php | 15 use Symfony\Component\Yaml\Exception\ParseException; alias 21 $exception = new ParseException('Error message', 42, 'foo: bar', '/var/www/app/config.yml'); 29 $exception = new ParseException('Error message', 42, 'foo: bar', 'äöü.yml');
|
| D | InlineTest.php | 15 use Symfony\Component\Yaml\Exception\ParseException; alias 254 $this->expectException(ParseException::class); 257 …$this->setExpectedException(ParseException::class, sprintf('cannot start a plain scalar; you need … 274 $this->expectException(ParseException::class); 277 …$this->setExpectedException(ParseException::class, sprintf('cannot start a plain scalar; you need … 630 $this->setExpectedExceptionRegExp(ParseException::class, $expectedMessage);
|
| /plugin/webdav/vendor/sabre/vobject/lib/Parser/ |
| D | MimeDir.php | 11 use Sabre\VObject\ParseException; alias 163 throw new ParseException('This parser only supports VCARD and VCALENDAR files'); 182 …throw new ParseException('Invalid MimeDir file. expected: "END:'.$this->root->name.'" got: "END:'.… 199 …throw new ParseException('Invalid MimeDir file. Unexpected component: "'.$line.'" in document type… 217 …throw new ParseException('Invalid MimeDir file. expected: "END:'.$component->name.'" got: "END:'.$… 287 throw new ParseException('Error reading from input stream'); 375 …throw new ParseException('Invalid Mimedir file. Line starting at '.$this->startLine.' did not foll… 417 …throw new ParseException('Invalid Mimedir file. Line starting at '.$this->startLine.' did not foll… 460 throw new ParseException('Unsupported CHARSET: '.$propObj['CHARSET']);
|
| /plugin/icalevents/vendor/sabre/vobject/lib/Parser/ |
| D | MimeDir.php | 10 use Sabre\VObject\ParseException; alias 169 throw new ParseException('This parser only supports VCARD and VCALENDAR files'); 190 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $this->root->name . '" got: "EN… 226 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $component->name . '" got: "END… 299 throw new ParseException('Error reading from input stream'); 391 …throw new ParseException('Invalid Mimedir file. Line starting at ' . $this->startLine . ' did not … 434 …throw new ParseException('Invalid Mimedir file. Line starting at ' . $this->startLine . ' did not … 477 throw new ParseException('Unsupported CHARSET: ' . $propObj['CHARSET']);
|
| /plugin/webdavclient/vendor/sabre/vobject/lib/Parser/ |
| D | MimeDir.php | 6 Sabre\VObject\ParseException, alias 125 throw new ParseException('This parser only supports VCARD and VCALENDAR files'); 146 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $this->root->name . '" got: "EN… 181 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $component->name . '" got: "END… 253 throw new ParseException('Error reading from input stream'); 385 …throw new ParseException('Invalid Mimedir file. Line starting at ' . $this->startLine . ' did not …
|
| /plugin/davcard/vendor/sabre/vobject/lib/Parser/ |
| D | MimeDir.php | 6 Sabre\VObject\ParseException, alias 125 throw new ParseException('This parser only supports VCARD and VCALENDAR files'); 146 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $this->root->name . '" got: "EN… 181 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $component->name . '" got: "END… 253 throw new ParseException('Error reading from input stream'); 385 …throw new ParseException('Invalid Mimedir file. Line starting at ' . $this->startLine . ' did not …
|
| /plugin/davcal/vendor/sabre/vobject/lib/Parser/ |
| H A D | MimeDir.php | 6 Sabre\VObject\ParseException, alias 125 throw new ParseException('This parser only supports VCARD and VCALENDAR files'); 146 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $this->root->name . '" got: "EN… 181 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $component->name . '" got: "END… 253 throw new ParseException('Error reading from input stream'); 385 …throw new ParseException('Invalid Mimedir file. Line starting at ' . $this->startLine . ' did not …
|
| /plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Property/ |
| D | SupportedCalendarComponentSet.php | 7 use Sabre\Xml\ParseException; alias 122 …throw new ParseException('supported-calendar-component-set must have at least one CALDAV:comp elem…
|
| /plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Property/ |
| H A D | SupportedCalendarComponentSet.php | 6 use Sabre\Xml\ParseException; alias 122 …throw new ParseException('supported-calendar-component-set must have at least one CALDAV:comp elem…
|
| /plugin/webdav/vendor/sabre/xml/lib/ |
| D | Service.php | 104 * @throws ParseException 141 * @throws ParseException 163 …throw new ParseException('Expected ' . implode(' or ', (array)$rootElementName) . ' but received '…
|
| /plugin/jdraw/lib/ |
| D | apache-mime4j-0.6.jar | META-INF/MANIFEST.MF
META-INF/HAMMURAP.SF
META-INF/HAMMURAP ... |
| D | jgraphx.jar | META-INF/MANIFEST.MF
META-INF/HAMMURAP.SF
META-INF/HAMMURAP ... |
| /plugin/jcapture/lib/ |
| D | apache-mime4j-0.6.jar | META-INF/MANIFEST.MF
META-INF/HAMMURAP.SF
META-INF/HAMMURAP ... |
| D | httpcore-4.0.1.jar | META-INF/MANIFEST.MF
META-INF/HAMMURAP.SF
META-INF/HAMMURAP ... |
| /plugin/davcal/vendor/sabre/xml/lib/ |
| H A D | Service.php | 83 * @throws ParseException 132 …throw new ParseException('Expected ' . $rootElementName . ' but received ' . $result['name'] . ' a…
|