Searched refs:parseScalar (Results 1 – 2 of 2) sorted by relevance
| /template/strap/vendor/symfony/yaml/ |
| H A D | Inline.php | 89 $result = self::parseScalar($value, $flags, null, $i, true, $references); 268 …public static function parseScalar(string $scalar, int $flags = 0, array $delimiters = null, int &… function in Symfony\\Component\\Yaml\\Inline 375 …$value = self::parseScalar($sequence, $flags, [',', ']'], $i, null === $tag, $references, $isQuote… 441 $key = self::parseScalar($mapping, $flags, [':', ' '], $i, false); 448 $key .= ' '.self::parseScalar($mapping, $flags, [':'], $i, false); 522 …$value = self::parseScalar($mapping, $flags, [',', '}', "\n"], $i, null === $tag, $references, $is… 617 return unserialize(self::parseScalar(substr($scalar, 12))); 634 … if (\defined($const = self::parseScalar(substr($scalar, 11), 0, null, $i, false))) { 763 $parsedBinaryData = self::parseScalar(preg_replace('/\s/', '', $scalar));
|
| H A D | Parser.php | 227 $key = Inline::parseScalar($values['key']);
|