Home
last modified time | relevance | path

Searched refs:dump (Results 26 – 50 of 99) sorted by path

1234

/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Integration/
H A DDocumentation.php117 ->given($dump = new LUT\Visitor\Dump())
118 ->when($result = $dump->visit($ast))
/plugin/findologicxmlexport/vendor/hoa/math/Bin/
H A DCalc.php92 $dump = new Compiler\Visitor\Dump();
165 echo $dump->visit($compiler->parse($handle)), "\n";
/plugin/findologicxmlexport/vendor/hoa/math/
H A DREADME.md99 $dump = new Hoa\Compiler\Visitor\Dump();
100 echo $dump->visit($ast);
/plugin/findologicxmlexport/vendor/hoa/regex/
H A DREADME.md85 $dump = new Hoa\Compiler\Visitor\Dump();
86 echo $dump->visit($ast);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DTAP.php106 $yaml->dump($diagnostic, 2, 2)
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DCHANGELOG.md26 * being able to pass boolean options to the `Yaml::parse()`, `Yaml::dump()`,
27 `Parser::parse()`, and `Dumper::dump()` methods to configure the behavior of
99 Yaml::dump([], 0, 0, Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE);
121 * Added support to dump `stdClass` and `ArrayAccess` objects as YAML mappings
151 …Yaml::dump(['foo' => new A(), 'bar' => 1], 0, 0, Yaml::DUMP_EXCEPTION_ON_INVALID_TYPE | Yaml::DUMP…
H A DDumper.php49 public function dump($input, int $inline = 0, int $indent = 0, int $flags = 0): string function in Symfony\\Component\\Yaml\\Dumper
60 $output .= $prefix.Inline::dump($input, $flags);
69 …$output .= sprintf("%s%s%s |%s\n", $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', '',…
88 $dumpAsMap ? Inline::dump($key, $flags).':' : '-',
90 … $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags)
H A DInline.php124 public static function dump($value, int $flags = 0): string function in Symfony\\Component\\Yaml\\Inline
137 return '!'.$value->getTag().' '.self::dump($value->getValue(), $flags);
141 return '!php/object '.self::dump(serialize($value));
148 … $output[] = sprintf('%s: %s', self::dump($key, $flags), self::dump($val, $flags));
244 $output[] = self::dump($val, $flags);
253 $output[] = sprintf('%s: %s', self::dump($key, $flags), self::dump($val, $flags));
H A DYaml.php95 public static function dump($input, int $inline = 2, int $indent = 4, int $flags = 0): string function in Symfony\\Component\\Yaml\\Yaml
99 return $yaml->dump($input, $inline, 0, $flags);
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DDumperTest.php77 $this->assertEquals($expected, $dumper->dump($this->array, 4, 0));
182 $dump = $this->dumper->dump(['foo' => new A(), 'bar' => 1], 0, 0, Yaml::DUMP_OBJECT);
189 $dump = $this->dumper->dump(['foo' => new A(), 'bar' => 1]);
207 $this->assertEquals($expected, $this->dumper->dump($input));
240 $this->assertSame($expected, $this->dumper->dump(['data' => $binaryData]));
246 $this->assertSame('!!binary ZsM/cg==', $this->dumper->dump("f\xc3\x3fr"));
254 $yaml = $this->dumper->dump($object, 0, 0, Yaml::DUMP_OBJECT_AS_MAP);
294 $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP);
313 $yaml = $this->dumper->dump($outer, 0, 0, Yaml::DUMP_OBJECT_AS_MAP);
325 $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP);
[all …]
H A DInlineTest.php89 …$this->assertEquals($yaml, Inline::dump($value), sprintf('::dump() converts a PHP structure to an …
91 … $this->assertSame($value, Inline::parse(Inline::dump($value), $parseFlags), 'check consistency');
107 $this->assertEquals('1.2', Inline::dump(1.2));
118 $this->assertSame($value, Inline::parse(Inline::dump($value)));
588 $this->assertSame($expected, Inline::dump($dateTime));
659 $yamlString = Inline::dump(['longStringWithQuotes' => $longStringWithQuotes]);
H A DParserTest.php1830 $yamlString = Yaml::dump($trickyVal);
H A DYamlTest.php22 $yml = Yaml::dump($data);
33 Yaml::dump(['lorem' => 'ipsum', 'dolor' => 'sit'], 2, 0);
42 Yaml::dump(['lorem' => 'ipsum', 'dolor' => 'sit'], 2, -4);
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG567 * fixed "is_safe" value for the "dump" function when "html_errors" is not defined in php.ini
661 * added a dump function to help debugging templates
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dapi.rst528 echo $dumper->dump($profile);
533 You can also dump the data in a `Blackfire.io <https://blackfire.io/>`_
537 file_put_contents('/path/to/profile.prof', $dumper->dump($profile));
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Ddump.rst1 ``dump``
5 The ``dump`` function was added in Twig 1.5.
7 The ``dump`` function dumps information about a template variable. This is
13 {{ dump(user) }}
17 The ``dump`` function is not available by default. You must add the
27 Even when enabled, the ``dump`` function won't display anything if the
37 {{ dump(user) }}
50 {{ dump(user, categories) }}
57 {{ dump() }}
66 * ``context``: The context to dump
H A Dindex.rst12 dump
/plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/Dumper/
H A DBaseDumper.php23 public function dump(Profile $profile) function in Twig\\Profiler\\Dumper\\BaseDumper
H A DBlackfireDumper.php23 public function dump(Profile $profile) function in Twig\\Profiler\\Dumper\\BlackfireDumper
H A DHtmlDumper.php30 public function dump(Profile $profile) function in Twig\\Profiler\\Dumper\\HtmlDumper
32 return '<pre>'.parent::dump($profile).'</pre>';
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Ddump.test2 "dump" function
6 {{ dump('foo') }}
7 {{ dump('foo', 'bar') }}
H A Ddump_array.test2 "dump" function, xdebug is not loaded or xdebug <2.2-dev is loaded
6 {{ dump() }}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/sandbox/
H A Darray.test9 {{ dump([a][0]) }}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/
H A DBlackfireTest.php32 , $dumper->dump($this->getProfile()));
H A DHtmlTest.php30 , $dumper->dump($this->getProfile()));

1234