Searched refs:DUMP_MULTI_LINE_LITERAL_BLOCK (Results 1 – 5 of 5) sorted by relevance
/plugin/combo/vendor/symfony/yaml/ |
H A D | Dumper.php | 71 if (Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value) && false !== strpos($value, "\n") && false === strpos($value, "\r")) { 100 if (Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value->getValue()) && false !== strpos($value->getValue(), "\n") && false === strpos($value->getValue(), "\r\n")) { 147 if (Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value->getValue()) && false !== strpos($value->getValue(), "\n") && false === strpos($value->getValue(), "\r\n")) {
|
H A D | Yaml.php | 32 public const DUMP_MULTI_LINE_LITERAL_BLOCK = 128; define in Symfony\\Component\\Yaml\\Yaml
|
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/ |
H A D | DumperTest.php | 388 …nes_as_literal_block.yml'), $this->dumper->dump($data, 2, 0, Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK)); 399 …_space_in_first_line.yml'), $this->dumper->dump($data, 2, 0, Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK)); 404 …"a\\r\\nb\\nc\"\n", $this->dumper->dump(["a\r\nb\nc"], 2, 0, Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK));
|
/plugin/findologicxmlexport/vendor/symfony/yaml/ |
H A D | Yaml.php | 32 const DUMP_MULTI_LINE_LITERAL_BLOCK = 128; define in Symfony\\Component\\Yaml\\Yaml
|
H A D | Dumper.php | 65 …if ($inline >= 1 && Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value) && false !=…
|