| /plugin/findologicxmlexport/vendor/symfony/yaml/Tests/ |
| D | DumperTest.php | 77 $this->assertEquals($expected, $dumper->dump($this->array, 4, 0)); 99 …$this->assertSame($expected, $this->parser->parse($this->dumper->dump($expected, 10)), $test['test… 110 …$this->assertEquals($expected, $this->dumper->dump($this->array, -10), '->dump() takes an inline l… 111 …$this->assertEquals($expected, $this->dumper->dump($this->array, 0), '->dump() takes an inline lev… 121 …$this->assertEquals($expected, $this->dumper->dump($this->array, 1), '->dump() takes an inline lev… 136 …$this->assertEquals($expected, $this->dumper->dump($this->array, 2), '->dump() takes an inline lev… 155 …$this->assertEquals($expected, $this->dumper->dump($this->array, 3), '->dump() takes an inline lev… 176 …$this->assertEquals($expected, $this->dumper->dump($this->array, 4), '->dump() takes an inline lev… 177 …$this->assertEquals($expected, $this->dumper->dump($this->array, 10), '->dump() takes an inline le… 182 $dump = $this->dumper->dump(['foo' => new A(), 'bar' => 1], 0, 0, Yaml::DUMP_OBJECT); [all …]
|
| D | YamlTest.php | 22 $yml = Yaml::dump($data); 33 Yaml::dump(['lorem' => 'ipsum', 'dolor' => 'sit'], 2, 0); 42 Yaml::dump(['lorem' => 'ipsum', 'dolor' => 'sit'], 2, -4);
|
| D | InlineTest.php | 89 …$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]);
|
| /plugin/wst/syntax/ |
| D | template.php | 60 $dump = trim(substr($match, 6, -2)); // remove curly brackets and "wst:" keyword 61 …$dump = preg_replace_callback('/\{\{(((?!(\{\{|\}\})).*?|(?R))*)\}\}/', function($match) {return s… 62 $dump = explode('|', $dump); // split template name and arguments 63 $template_name = $dump[0]; 64 array_splice($dump, 0, 1); // leave only arguments (if any) 65 if ($dump) { 67 foreach ($dump as $key => $value) {
|
| /plugin/findologicxmlexport/vendor/twig/twig/doc/functions/ |
| D | dump.rst | 1 ``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
|
| /plugin/combo/vendor/symfony/yaml/ |
| H A D | Dumper.php | 49 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); 84 …$output .= sprintf('%s%s%s |%s%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', '',… 98 …$output .= sprintf('%s%s !%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', $value-… 114 $output .= ' '.$this->dump($value->getValue(), $inline - 1, 0, $flags)."\n"; 117 …$output .= $this->dump($value->getValue(), $inline - 1, $dumpAsMap ? $indent + $this->indentation … 133 $dumpAsMap ? Inline::dump($key, $flags).':' : '-', 135 … $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags) 161 return $output.' '.$this->dump($value->getValue(), $inline - 1, 0, $flags)."\n"; 164 return $output."\n".$this->dump($value->getValue(), $inline - 1, $indent, $flags);
|
| H A D | Yaml.php | 94 public static function dump($input, int $inline = 2, int $indent = 4, int $flags = 0): string function in Symfony\\Component\\Yaml\\Yaml 98 return $yaml->dump($input, $inline, 0, $flags);
|
| H A D | Inline.php | 117 public static function dump($value, int $flags = 0): string function in Symfony\\Component\\Yaml\\Inline 132 return '!'.$value->getTag().' '.self::dump($value->getValue(), $flags); 136 return '!php/object '.self::dump(serialize($value)); 143 … $output[] = sprintf('%s: %s', self::dump($key, $flags), self::dump($val, $flags)); 237 $output[] = self::dump($val, $flags); 246 $output[] = sprintf('%s: %s', self::dump($key, $flags), self::dump($val, $flags));
|
| /plugin/findologicxmlexport/vendor/symfony/yaml/ |
| D | Dumper.php | 49 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)
|
| D | Yaml.php | 95 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);
|
| D | Inline.php | 124 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));
|
| D | CHANGELOG.md | 26 * 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…
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/ |
| D | dump.test | 2 "dump" function 6 {{ dump('foo') }} 7 {{ dump('foo', 'bar') }}
|
| D | dump_array.test | 2 "dump" function, xdebug is not loaded or xdebug <2.2-dev is loaded 6 {{ dump() }}
|
| /plugin/odt/ODT/css/ |
| D | cssdocument.php | 410 $dump = ''; 411 $dump .= 'RootLevel: '.$this->rootLevel.', RootIndex: '.$this->rootIndex."\n"; 414 $dump .= str_repeat(' ', $element ['level'] * 2); 416 $dump .= '<'.$element ['element']; 417 $dump .= ' '.$element ['attributes'].'>'; 419 $dump .= '</'.$element ['element'].'>'; 421 $dump .= ' (Level: '.$element ['level'].')'; 422 $dump .= "\n"; 424 return $dump;
|
| /plugin/dump/ |
| D | plugin.info.txt | 1 base dump 7 desc A plugin to dump the callstack for debugging purpose
|
| /plugin/c3chart/assets/ |
| D | js-yaml.min.js | 2 …dump=function(){if(0===t.length)return 2===e.quotingType?'""':"''";if(!e.noCompatMode&&(-1!==Te.in… method
|
| /plugin/achart/assets/ |
| D | js-yaml.min.js | 2 …dump=function(){if(0===t.length)return 2===e.quotingType?'""':"''";if(!e.noCompatMode&&(-1!==Te.in… property
|
| /plugin/findologicxmlexport/vendor/hoa/compiler/Test/Integration/ |
| D | Documentation.php | 117 ->given($dump = new LUT\Visitor\Dump()) 118 ->when($result = $dump->visit($ast))
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/Dumper/ |
| D | HtmlDumper.php | 30 public function dump(Profile $profile) function in Twig\\Profiler\\Dumper\\HtmlDumper 32 return '<pre>'.parent::dump($profile).'</pre>';
|
| /plugin/amcharts/assets/ |
| D | js-yaml.min.js | 2 …dump=r.dump,t.exports.safeDump=r.safeDump,t.exports.YAMLException=e("./js-yaml/exception"),t.expor…
|
| /plugin/findologicxmlexport/vendor/hoa/math/Bin/ |
| D | Calc.php | 92 $dump = new Compiler\Visitor\Dump(); 165 echo $dump->visit($compiler->parse($handle)), "\n";
|
| /plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/ |
| D | GlobAsset.php | 61 public function dump(FilterInterface $additionalFilter = null) function in Assetic\\Asset\\GlobAsset 67 return parent::dump($additionalFilter);
|
| /plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/ |
| D | BrowserConsoleHandler.php | 176 $context = static::dump('Context', $record['context']); 177 $extra = static::dump('Extra', $record['extra']); 249 private static function dump(string $title, array $dict): array function in Monolog\\Handler\\BrowserConsoleHandler
|
| /plugin/jplayer/vendor/kriswallsmith/assetic/ |
| D | README.md | 18 echo $js->dump(); 60 echo $css->dump(); 71 echo $leaf->dump(); 191 echo $css->dump(); 205 You can dump all the assets an AssetManager holds to files in a directory. This will probably be be… 249 echo $css->dump(); 272 $js->dump(); 273 $js->dump(); 274 $js->dump();
|