/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/ |
H A D | DumperTest.php | 77 $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 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);
|
H A 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/ |
H A 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/ |
H A 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).':' : '-', '', $blockIndentationIndicator, $blockChompingIndicator); 98 $output .= sprintf('%s%s !%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', $value->getTag()); 114 $output .= ' '.$this->dump($value->getValue(), $inline - 1, 0, $flags)."\n"; 117 $output .= $this->dump($value->getValue(), $inline - 1, $dumpAsMap ? $indent + $this->indentation : $indent + 2, $flags); 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( [all...] |
H A D | Yaml.php | 17 * Yaml offers convenience methods to load and dump YAML. 86 * The dump method, when supplied with an array, will do its best 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);
|
/plugin/findologicxmlexport/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); 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 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);
|
H A 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));
|
H A 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/ |
H A D | dump.test | 2 "dump" function 6 {{ dump('foo') }} 7 {{ dump('foo', 'bar') }}
|
H A D | dump_array.test | 2 "dump" function, xdebug is not loaded or xdebug <2.2-dev is loaded 6 {{ dump() }}
|
/plugin/odt/ODT/css/ |
H A 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/ |
H A D | plugin.info.txt | 1 base dump 7 desc A plugin to dump the callstack for debugging purpose
|
/plugin/sketchcanvas/script/ |
H A D | js-yaml.min.js |
|
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Integration/ |
H A D | Documentation.php | 117 ->given($dump = new LUT\Visitor\Dump()) 118 ->when($result = $dump->visit($ast))
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/Dumper/ |
H A D | HtmlDumper.php | 30 public function dump(Profile $profile) function in Twig\\Profiler\\Dumper\\HtmlDumper 32 return '<pre>'.parent::dump($profile).'</pre>';
|
/plugin/c3chart/assets/ |
H A D | js-yaml.min.js | 2 …dump=function(){if(0===t.length)return 2===e.quotingType?'""':"''";if(!e.noCompatMode&&(-1!==Te.in… function
|
/plugin/achart/assets/ |
H A D | js-yaml.min.js | 2 …dump=function(){if(0===t.length)return 2===e.quotingType?'""':"''";if(!e.noCompatMode&&(-1!==Te.in… function
|
/plugin/amcharts/assets/ |
H A D | js-yaml.min.js | 2 …dump=r.dump,t.exports.safeDump=r.safeDump,t.exports.YAMLException=e("./js-yaml/exception"),t.expor…
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/ |
H A D | GlobAsset.php | 61 public function dump(FilterInterface $additionalFilter = null) function in Assetic\\Asset\\GlobAsset 67 return parent::dump($additionalFilter);
|
/plugin/findologicxmlexport/vendor/hoa/math/Bin/ |
H A D | Calc.php | 92 $dump = new Compiler\Visitor\Dump(); 165 echo $dump->visit($compiler->parse($handle)), "\n";
|
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/ |
H A 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/ |
H A 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();
|