Home
last modified time | relevance | path

Searched refs:getNextEmbedBlock (Results 1 – 2 of 2) sorted by relevance

/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DParser.php183 …ata[] = $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, true) …
187 … $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, true), $flags)
196 …$block .= "\n".$this->getNextEmbedBlock($this->getCurrentLineIndentation() + \strlen($values['lead…
263 $value = $this->getNextEmbedBlock();
323 … $value = $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(), $flags);
509 private function getNextEmbedBlock(int $indentation = null, bool $inSequence = false): ?string function in Symfony\\Component\\Yaml\\Parser
/plugin/combo/vendor/symfony/yaml/
H A DParser.php184 $sequenceYaml .= "\n".$this->getNextEmbedBlock($sequenceIndentation, true);
188 $data[] = $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, true) ?? '', $flags);
192 $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, true), $flags)
205 $block .= "\n".$this->getNextEmbedBlock($this->getCurrentLineIndentation() + \strlen($values['leadspaces']) + 1);
272 $value = $this->getNextEmbedBlock();
332 $value = $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(), $flags);
580 private function getNextEmbedBlock(int $indentation = null, bool $inSequence = false): string function in Symfony\\Component\\Yaml\\Parser